You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6661 lines
414 KiB
Plaintext
6661 lines
414 KiB
Plaintext
2 years ago
|
{
|
||
|
"cells": [
|
||
|
{
|
||
|
"cell_type": "markdown",
|
||
|
"metadata": {},
|
||
|
"source": [
|
||
|
"# Word2Vec Tutorial\n",
|
||
|
"[GENSIM Tutorial](https://radimrehurek.com/gensim/auto_examples/tutorials/run_word2vec.html#visualising-word-embeddings)"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"cell_type": "code",
|
||
|
"execution_count": 1,
|
||
|
"metadata": {},
|
||
|
"outputs": [],
|
||
|
"source": [
|
||
|
"import logging\n",
|
||
|
"logging.basicConfig(format='%(asctime)s : %(levelname)s : %(message)s', level=logging.INFO)\n"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"cell_type": "code",
|
||
|
"execution_count": 2,
|
||
|
"metadata": {},
|
||
|
"outputs": [
|
||
|
{
|
||
|
"name": "stderr",
|
||
|
"output_type": "stream",
|
||
|
"text": [
|
||
|
"2022-05-30 14:30:49,470 : INFO : loading projection weights from C:\\Users\\Francesco/gensim-data\\word2vec-google-news-300\\word2vec-google-news-300.gz\n",
|
||
|
"2022-05-30 14:31:31,470 : INFO : KeyedVectors lifecycle event {'msg': 'loaded (3000000, 300) matrix of type float32 from C:\\\\Users\\\\Francesco/gensim-data\\\\word2vec-google-news-300\\\\word2vec-google-news-300.gz', 'binary': True, 'encoding': 'utf8', 'datetime': '2022-05-30T14:31:31.470006', 'gensim': '4.2.0', 'python': '3.10.2 (tags/v3.10.2:a58ebcc, Jan 17 2022, 14:12:15) [MSC v.1929 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.22000-SP0', 'event': 'load_word2vec_format'}\n"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"source": [
|
||
|
"import gensim.downloader as api\n",
|
||
|
"wv = api.load('word2vec-google-news-300')"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"cell_type": "code",
|
||
|
"execution_count": 4,
|
||
|
"metadata": {},
|
||
|
"outputs": [
|
||
|
{
|
||
|
"name": "stdout",
|
||
|
"output_type": "stream",
|
||
|
"text": [
|
||
|
"word 0 / 3000000 is </s>\n",
|
||
|
"word 1 / 3000000 is in\n",
|
||
|
"word 2 / 3000000 is for\n",
|
||
|
"word 3 / 3000000 is that\n",
|
||
|
"word 4 / 3000000 is is\n",
|
||
|
"word 5 / 3000000 is on\n",
|
||
|
"word 6 / 3000000 is ##\n",
|
||
|
"word 7 / 3000000 is The\n",
|
||
|
"word 8 / 3000000 is with\n",
|
||
|
"word 9 / 3000000 is said\n",
|
||
|
"word 10 / 3000000 is was\n",
|
||
|
"word 11 / 3000000 is the\n",
|
||
|
"word 12 / 3000000 is at\n",
|
||
|
"word 13 / 3000000 is not\n",
|
||
|
"word 14 / 3000000 is as\n",
|
||
|
"word 15 / 3000000 is it\n",
|
||
|
"word 16 / 3000000 is be\n",
|
||
|
"word 17 / 3000000 is from\n",
|
||
|
"word 18 / 3000000 is by\n",
|
||
|
"word 19 / 3000000 is are\n",
|
||
|
"word 20 / 3000000 is I\n",
|
||
|
"word 21 / 3000000 is have\n",
|
||
|
"word 22 / 3000000 is he\n",
|
||
|
"word 23 / 3000000 is will\n",
|
||
|
"word 24 / 3000000 is has\n",
|
||
|
"word 25 / 3000000 is ####\n",
|
||
|
"word 26 / 3000000 is his\n",
|
||
|
"word 27 / 3000000 is an\n",
|
||
|
"word 28 / 3000000 is this\n",
|
||
|
"word 29 / 3000000 is or\n",
|
||
|
"word 30 / 3000000 is their\n",
|
||
|
"word 31 / 3000000 is who\n",
|
||
|
"word 32 / 3000000 is they\n",
|
||
|
"word 33 / 3000000 is but\n",
|
||
|
"word 34 / 3000000 is $\n",
|
||
|
"word 35 / 3000000 is had\n",
|
||
|
"word 36 / 3000000 is year\n",
|
||
|
"word 37 / 3000000 is were\n",
|
||
|
"word 38 / 3000000 is we\n",
|
||
|
"word 39 / 3000000 is more\n",
|
||
|
"word 40 / 3000000 is ###\n",
|
||
|
"word 41 / 3000000 is up\n",
|
||
|
"word 42 / 3000000 is been\n",
|
||
|
"word 43 / 3000000 is you\n",
|
||
|
"word 44 / 3000000 is its\n",
|
||
|
"word 45 / 3000000 is one\n",
|
||
|
"word 46 / 3000000 is about\n",
|
||
|
"word 47 / 3000000 is would\n",
|
||
|
"word 48 / 3000000 is which\n",
|
||
|
"word 49 / 3000000 is out\n",
|
||
|
"word 50 / 3000000 is can\n",
|
||
|
"word 51 / 3000000 is It\n",
|
||
|
"word 52 / 3000000 is all\n",
|
||
|
"word 53 / 3000000 is also\n",
|
||
|
"word 54 / 3000000 is two\n",
|
||
|
"word 55 / 3000000 is after\n",
|
||
|
"word 56 / 3000000 is first\n",
|
||
|
"word 57 / 3000000 is He\n",
|
||
|
"word 58 / 3000000 is do\n",
|
||
|
"word 59 / 3000000 is time\n",
|
||
|
"word 60 / 3000000 is than\n",
|
||
|
"word 61 / 3000000 is when\n",
|
||
|
"word 62 / 3000000 is We\n",
|
||
|
"word 63 / 3000000 is over\n",
|
||
|
"word 64 / 3000000 is last\n",
|
||
|
"word 65 / 3000000 is new\n",
|
||
|
"word 66 / 3000000 is other\n",
|
||
|
"word 67 / 3000000 is her\n",
|
||
|
"word 68 / 3000000 is people\n",
|
||
|
"word 69 / 3000000 is into\n",
|
||
|
"word 70 / 3000000 is In\n",
|
||
|
"word 71 / 3000000 is our\n",
|
||
|
"word 72 / 3000000 is there\n",
|
||
|
"word 73 / 3000000 is A\n",
|
||
|
"word 74 / 3000000 is she\n",
|
||
|
"word 75 / 3000000 is could\n",
|
||
|
"word 76 / 3000000 is just\n",
|
||
|
"word 77 / 3000000 is years\n",
|
||
|
"word 78 / 3000000 is some\n",
|
||
|
"word 79 / 3000000 is U.S.\n",
|
||
|
"word 80 / 3000000 is three\n",
|
||
|
"word 81 / 3000000 is million\n",
|
||
|
"word 82 / 3000000 is them\n",
|
||
|
"word 83 / 3000000 is what\n",
|
||
|
"word 84 / 3000000 is But\n",
|
||
|
"word 85 / 3000000 is so\n",
|
||
|
"word 86 / 3000000 is no\n",
|
||
|
"word 87 / 3000000 is like\n",
|
||
|
"word 88 / 3000000 is if\n",
|
||
|
"word 89 / 3000000 is only\n",
|
||
|
"word 90 / 3000000 is percent\n",
|
||
|
"word 91 / 3000000 is get\n",
|
||
|
"word 92 / 3000000 is did\n",
|
||
|
"word 93 / 3000000 is him\n",
|
||
|
"word 94 / 3000000 is game\n",
|
||
|
"word 95 / 3000000 is back\n",
|
||
|
"word 96 / 3000000 is because\n",
|
||
|
"word 97 / 3000000 is now\n",
|
||
|
"word 98 / 3000000 is #.#\n",
|
||
|
"word 99 / 3000000 is before\n"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"source": [
|
||
|
"for index, word in enumerate(wv.index_to_key):\n",
|
||
|
" if index==100:\n",
|
||
|
" break\n",
|
||
|
" print(f'word {index} / {len(wv.index_to_key)} is {word}')"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"cell_type": "code",
|
||
|
"execution_count": 8,
|
||
|
"metadata": {},
|
||
|
"outputs": [],
|
||
|
"source": [
|
||
|
"vec_king = wv['queen']"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"cell_type": "code",
|
||
|
"execution_count": 9,
|
||
|
"metadata": {},
|
||
|
"outputs": [
|
||
|
{
|
||
|
"name": "stdout",
|
||
|
"output_type": "stream",
|
||
|
"text": [
|
||
|
"The word 'cameroon' does not appear in this model\n"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"source": [
|
||
|
"try:\n",
|
||
|
" vec_cameroon = wv['cameroon']\n",
|
||
|
"except KeyError:\n",
|
||
|
" print(\"The word 'cameroon' does not appear in this model\")\n"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"cell_type": "code",
|
||
|
"execution_count": 11,
|
||
|
"metadata": {},
|
||
|
"outputs": [
|
||
|
{
|
||
|
"name": "stdout",
|
||
|
"output_type": "stream",
|
||
|
"text": [
|
||
|
"'car'\t'minivan'\t0.69\n",
|
||
|
"'car'\t'bicycle'\t0.54\n",
|
||
|
"'car'\t'airplane'\t0.42\n",
|
||
|
"'car'\t'cereal'\t0.14\n",
|
||
|
"'car'\t'communism'\t0.06\n"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"source": [
|
||
|
"pairs = [\n",
|
||
|
" ('car', 'minivan'),\n",
|
||
|
" ('car', 'bicycle'),\n",
|
||
|
" ('car', 'airplane'),\n",
|
||
|
" ('car', 'cereal'),\n",
|
||
|
" ('car', 'communism')\n",
|
||
|
"]\n",
|
||
|
"\n",
|
||
|
"for w1, w2 in pairs:\n",
|
||
|
" print('%r\\t%r\\t%.2f' % (w1, w2, wv.similarity(w1, w2)))"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"cell_type": "code",
|
||
|
"execution_count": 16,
|
||
|
"metadata": {},
|
||
|
"outputs": [
|
||
|
{
|
||
|
"name": "stdout",
|
||
|
"output_type": "stream",
|
||
|
"text": [
|
||
|
"[('bicycle', 0.7798016667366028), ('scooter', 0.7793240547180176), ('motorcycle', 0.7453441023826599), ('bikes', 0.7298908233642578), ('vehicle', 0.6923801302909851)]\n"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"source": [
|
||
|
"print(wv.most_similar(positive=['car', 'bike'], topn=5))"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"cell_type": "code",
|
||
|
"execution_count": 23,
|
||
|
"metadata": {},
|
||
|
"outputs": [
|
||
|
{
|
||
|
"name": "stdout",
|
||
|
"output_type": "stream",
|
||
|
"text": [
|
||
|
"jar\n"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"source": [
|
||
|
"print(wv.doesnt_match(\n",
|
||
|
" ['fire', 'land', 'water', 'sea', 'air', 'jar']))\n"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"cell_type": "markdown",
|
||
|
"metadata": {},
|
||
|
"source": [
|
||
|
"## Train your own model"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"cell_type": "code",
|
||
|
"execution_count": 24,
|
||
|
"metadata": {},
|
||
|
"outputs": [],
|
||
|
"source": [
|
||
|
"from gensim.test.utils import datapath\n",
|
||
|
"from gensim import utils\n",
|
||
|
"\n",
|
||
|
"class MyCorpus:\n",
|
||
|
" \"\"\" An iterator that yields sentences (list of str)\"\"\"\n",
|
||
|
"\n",
|
||
|
" def __iter__(self):\n",
|
||
|
" corpus_path = datapath('lee_background.cor')\n",
|
||
|
" for line in open(corpus_path):\n",
|
||
|
" # assume there's one document per line, tokens separated by whitespace\n",
|
||
|
" yield utils.simple_preprocess(line)"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"cell_type": "code",
|
||
|
"execution_count": 25,
|
||
|
"metadata": {},
|
||
|
"outputs": [
|
||
|
{
|
||
|
"name": "stderr",
|
||
|
"output_type": "stream",
|
||
|
"text": [
|
||
|
"2022-05-30 14:47:56,513 : INFO : collecting all words and their counts\n",
|
||
|
"2022-05-30 14:47:56,515 : INFO : PROGRESS: at sentence #0, processed 0 words, keeping 0 word types\n",
|
||
|
"2022-05-30 14:47:56,584 : INFO : collected 6981 word types from a corpus of 58152 raw words and 300 sentences\n",
|
||
|
"2022-05-30 14:47:56,585 : INFO : Creating a fresh vocabulary\n",
|
||
|
"2022-05-30 14:47:56,590 : INFO : Word2Vec lifecycle event {'msg': 'effective_min_count=5 retains 1750 unique words (25.07% of original 6981, drops 5231)', 'datetime': '2022-05-30T14:47:56.590672', 'gensim': '4.2.0', 'python': '3.10.2 (tags/v3.10.2:a58ebcc, Jan 17 2022, 14:12:15) [MSC v.1929 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.22000-SP0', 'event': 'prepare_vocab'}\n",
|
||
|
"2022-05-30 14:47:56,591 : INFO : Word2Vec lifecycle event {'msg': 'effective_min_count=5 leaves 49335 word corpus (84.84% of original 58152, drops 8817)', 'datetime': '2022-05-30T14:47:56.591685', 'gensim': '4.2.0', 'python': '3.10.2 (tags/v3.10.2:a58ebcc, Jan 17 2022, 14:12:15) [MSC v.1929 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.22000-SP0', 'event': 'prepare_vocab'}\n",
|
||
|
"2022-05-30 14:47:56,599 : INFO : deleting the raw counts dictionary of 6981 items\n",
|
||
|
"2022-05-30 14:47:56,602 : INFO : sample=0.001 downsamples 51 most-common words\n",
|
||
|
"2022-05-30 14:47:56,602 : INFO : Word2Vec lifecycle event {'msg': 'downsampling leaves estimated 35935.33721568072 word corpus (72.8%% of prior 49335)', 'datetime': '2022-05-30T14:47:56.602641', 'gensim': '4.2.0', 'python': '3.10.2 (tags/v3.10.2:a58ebcc, Jan 17 2022, 14:12:15) [MSC v.1929 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.22000-SP0', 'event': 'prepare_vocab'}\n",
|
||
|
"2022-05-30 14:47:56,619 : INFO : estimated required memory for 1750 words and 100 dimensions: 2275000 bytes\n",
|
||
|
"2022-05-30 14:47:56,621 : INFO : resetting layer weights\n",
|
||
|
"2022-05-30 14:47:56,623 : INFO : Word2Vec lifecycle event {'update': False, 'trim_rule': 'None', 'datetime': '2022-05-30T14:47:56.623586', 'gensim': '4.2.0', 'python': '3.10.2 (tags/v3.10.2:a58ebcc, Jan 17 2022, 14:12:15) [MSC v.1929 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.22000-SP0', 'event': 'build_vocab'}\n",
|
||
|
"2022-05-30 14:47:56,624 : INFO : Word2Vec lifecycle event {'msg': 'training model with 3 workers on 1750 vocabulary and 100 features, using sg=0 hs=0 sample=0.001 negative=5 window=5 shrink_windows=True', 'datetime': '2022-05-30T14:47:56.624583', 'gensim': '4.2.0', 'python': '3.10.2 (tags/v3.10.2:a58ebcc, Jan 17 2022, 14:12:15) [MSC v.1929 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.22000-SP0', 'event': 'train'}\n",
|
||
|
"2022-05-30 14:47:56,706 : INFO : EPOCH 0: training on 58152 raw words (35868 effective words) took 0.1s, 453792 effective words/s\n",
|
||
|
"2022-05-30 14:47:56,780 : INFO : EPOCH 1: training on 58152 raw words (35915 effective words) took 0.1s, 495146 effective words/s\n",
|
||
|
"2022-05-30 14:47:56,860 : INFO : EPOCH 2: training on 58152 raw words (35942 effective words) took 0.1s, 461119 effective words/s\n",
|
||
|
"2022-05-30 14:47:56,934 : INFO : EPOCH 3: training on 58152 raw words (35913 effective words) took 0.1s, 496536 effective words/s\n",
|
||
|
"2022-05-30 14:47:57,009 : INFO : EPOCH 4: training on 58152 raw words (35893 effective words) took 0.1s, 489118 effective words/s\n",
|
||
|
"2022-05-30 14:47:57,010 : INFO : Word2Vec lifecycle event {'msg': 'training on 290760 raw words (179531 effective words) took 0.4s, 465875 effective words/s', 'datetime': '2022-05-30T14:47:57.009845', 'gensim': '4.2.0', 'python': '3.10.2 (tags/v3.10.2:a58ebcc, Jan 17 2022, 14:12:15) [MSC v.1929 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.22000-SP0', 'event': 'train'}\n",
|
||
|
"2022-05-30 14:47:57,010 : INFO : Word2Vec lifecycle event {'params': 'Word2Vec<vocab=1750, vector_size=100, alpha=0.025>', 'datetime': '2022-05-30T14:47:57.010844', 'gensim': '4.2.0', 'python': '3.10.2 (tags/v3.10.2:a58ebcc, Jan 17 2022, 14:12:15) [MSC v.1929 64 bit (AMD64)]', 'platform': 'Windows-10-10.0.22000-SP0', 'event': 'created'}\n"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"source": [
|
||
|
"import gensim.models\n",
|
||
|
"\n",
|
||
|
"sentences = MyCorpus()\n",
|
||
|
"model = gensim.models.Word2Vec(sentences=sentences)"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"cell_type": "code",
|
||
|
"execution_count": 29,
|
||
|
"metadata": {},
|
||
|
"outputs": [
|
||
|
{
|
||
|
"name": "stdout",
|
||
|
"output_type": "stream",
|
||
|
"text": [
|
||
|
"0\t'the'\n",
|
||
|
"1\t'to'\n",
|
||
|
"2\t'of'\n",
|
||
|
"3\t'in'\n",
|
||
|
"4\t'and'\n",
|
||
|
"5\t'he'\n",
|
||
|
"6\t'is'\n",
|
||
|
"7\t'for'\n",
|
||
|
"8\t'on'\n",
|
||
|
"9\t'said'\n"
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"source": [
|
||
|
"for index, word in enumerate(model.wv.index_to_key):\n",
|
||
|
" if index==10:\n",
|
||
|
" break\n",
|
||
|
" print('%r\\t%r' % (index, word))\n"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"cell_type": "markdown",
|
||
|
"metadata": {},
|
||
|
"source": [
|
||
|
"## Visualizing Word Embedding"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"cell_type": "code",
|
||
|
"execution_count": 38,
|
||
|
"metadata": {},
|
||
|
"outputs": [
|
||
|
{
|
||
|
"name": "stderr",
|
||
|
"output_type": "stream",
|
||
|
"text": [
|
||
|
"c:\\Users\\Francesco\\Documents\\XPUB\\w2v\\venv\\lib\\site-packages\\sklearn\\manifold\\_t_sne.py:795: FutureWarning:\n",
|
||
|
"\n",
|
||
|
"The default initialization in TSNE will change from 'random' to 'pca' in 1.2.\n",
|
||
|
"\n",
|
||
|
"c:\\Users\\Francesco\\Documents\\XPUB\\w2v\\venv\\lib\\site-packages\\sklearn\\manifold\\_t_sne.py:805: FutureWarning:\n",
|
||
|
"\n",
|
||
|
"The default learning rate in TSNE will change from 200.0 to 'auto' in 1.2.\n",
|
||
|
"\n"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"data": {
|
||
|
"image/png": "iVBORw0KGgoAAAANSUhEUgAAAscAAAKrCAYAAAAdwCAPAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8qNh9FAAAACXBIWXMAAAsTAAALEwEAmpwYAADbFElEQVR4nOzdf3xT9b0/8Ncn6SkkBUmrKBIpos5WamkrVaqdTvAKKsoKqMhwyu686tzmQFdXNhVwbNRbFaZu+t3u1F1hrvwywnBDHXjVKmhrW7FYxlR+GJggNAg0pWlyvn+kJ5ycnHNy0qalP17Px+Pe2TQ5OSntJ++8z/vzfgtZlkFERERERIDtZJ8AEREREVFPweCYiIiIiKgdg2MiIiIionYMjomIiIiI2jE4JiIiIiJql3KyT0DttNNOk88+++yTfRpERERE1MfV1NR8JcvyUO3tPSo4Pvvss1FdXX2yT4OIiIiI+jghxC6921lWQURERETUjsExEREREVE7BsdERERERO0YHBMRERERtWNwTERERETUjsExEREREVE7BsdERERERO0YHBMRERERtWNwTERERETUjsExEREREVE7BsdERERERO0YHBMRERERtWNwTERERETUjsExEREREVE7BsdERERERO0YHBMRERERtWNwTERERETUjsExEREREVE7BsdERERERO0YHBMRERERtWNwTERERETUjsExEREREVE7BsdERERERO0YHBMRERERtWNwTERERETULuVknwAREXU/T60XFRu2Y6/Pj+EuB0onZaGkwH2yT4uI6KRj5piIqJ/x1Hoxb81WeH1+yAC8Pj/mVNah4JHX4Kn1nuzTIyI6qZg5JiLqZyo2bIc/EIy5vak5gHlrtgKAaRaZWWci6suYOSYi6mf2+vyG3/MHgqjYsN3w+3pZ53lrtjLjTER9BoNjIqJ+ZrjLYfp9s+BZL+scL6AmIupNGBwTEfUzpZOy4JDsht83C56NAmezgJqIqDdhzTERUReyUp/b3TW8yrEXrG2Azx+I+p5DsmN89lAUl2/UPZ/hLge8OoFwvGw0EVFvweCYiKiLKPW5ShmCUp8LnAhQrdynM8+vDoDTnRLm35CDkgJ35P+0gfn47KFYXeM1PJ/SSVlR5wuEA+rSSVmdOlciop5CyLJ8ss8horCwUK6urj7Zp0FElBTF5Rt1s6xu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
|
||
|
"text/plain": [
|
||
|
"<Figure size 864x864 with 1 Axes>"
|
||
|
]
|
||
|
},
|
||
|
"metadata": {
|
||
|
"needs_background": "light"
|
||
|
},
|
||
|
"output_type": "display_data"
|
||
|
}
|
||
|
],
|
||
|
"source": [
|
||
|
"from sklearn.decomposition import IncrementalPCA # initial reduction\n",
|
||
|
"from sklearn.manifold import TSNE # final reduction\n",
|
||
|
"import numpy as np\n",
|
||
|
"\n",
|
||
|
"def reduce_dimensions(model):\n",
|
||
|
" num_dimensions = 2 # final num dimensions (2D, 3D, ecc)\n",
|
||
|
"\n",
|
||
|
" # extract the words & their vectors, as numpy arrays\n",
|
||
|
" vectors = np.asarray(model.wv.vectors)\n",
|
||
|
" labels = np.asarray(model.wv.index_to_key)\n",
|
||
|
"\n",
|
||
|
" # reducing using t-SNE\n",
|
||
|
" tsne = TSNE(n_components=num_dimensions, random_state=0)\n",
|
||
|
" vectors = tsne.fit_transform(vectors)\n",
|
||
|
"\n",
|
||
|
" x_vals = [v[0] for v in vectors]\n",
|
||
|
" y_vals = [v[1] for v in vectors]\n",
|
||
|
" return x_vals, y_vals, labels\n",
|
||
|
"\n",
|
||
|
"\n",
|
||
|
"x_vals, y_vals, labels = reduce_dimensions(model)\n",
|
||
|
"\n",
|
||
|
"def plot_with_plotly(x_vals, y_vals, labels, plot_in_notebook=True):\n",
|
||
|
" from plotly.offline import init_notebook_mode, iplot, plot\n",
|
||
|
" import plotly.graph_objs as go\n",
|
||
|
"\n",
|
||
|
" trace = go.Scatter(x=x_vals, y=y_vals, mode='text', text=labels)\n",
|
||
|
" data = [trace]\n",
|
||
|
"\n",
|
||
|
" if plot_in_notebook:\n",
|
||
|
" init_notebook_mode(connected=True)\n",
|
||
|
" iplot(data, filename='word-embedding-plot')\n",
|
||
|
" else:\n",
|
||
|
" plot(data, filename='word-embedding-plot.html')\n",
|
||
|
"\n",
|
||
|
"def plot_with_matplotlib(x_vals, y_vals, labels):\n",
|
||
|
" import matplotlib.pyplot as plt\n",
|
||
|
" import random\n",
|
||
|
" \n",
|
||
|
" # random.seed(0)\n",
|
||
|
"\n",
|
||
|
" plt.figure(figsize=(12,12))\n",
|
||
|
" plt.scatter(x_vals, y_vals)\n",
|
||
|
"\n",
|
||
|
" # label randomly subsampled 25 data points\n",
|
||
|
"\n",
|
||
|
" indices = list(range(len(labels)))\n",
|
||
|
" selected_indices = random.sample(indices, 25)\n",
|
||
|
" for i in selected_indices:\n",
|
||
|
" plt.annotate(labels[i], (x_vals[i], y_vals[i]))\n",
|
||
|
"\n",
|
||
|
"try:\n",
|
||
|
" get_ipython()\n",
|
||
|
"except Exception:\n",
|
||
|
" plot_function = plot_with_matplotlib\n",
|
||
|
"else:\n",
|
||
|
" plot_function = plot_with_plotly\n",
|
||
|
"\n",
|
||
|
"# plot_function(x_vals, y_vals, labels)\n",
|
||
|
"\n",
|
||
|
"\n",
|
||
|
"plot_with_matplotlib(x_vals, y_vals, labels)\n"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"cell_type": "code",
|
||
|
"execution_count": 41,
|
||
|
"metadata": {},
|
||
|
"outputs": [
|
||
|
{
|
||
|
"data": {
|
||
|
"image/png": "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
|
||
|
"text/plain": [
|
||
|
"<Figure size 864x864 with 1 Axes>"
|
||
|
]
|
||
|
},
|
||
|
"metadata": {
|
||
|
"needs_background": "light"
|
||
|
},
|
||
|
"output_type": "display_data"
|
||
|
}
|
||
|
],
|
||
|
"source": [
|
||
|
"plot_with_matplotlib(x_vals, y_vals, labels)\n"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"cell_type": "code",
|
||
|
"execution_count": 42,
|
||
|
"metadata": {},
|
||
|
"outputs": [
|
||
|
{
|
||
|
"data": {
|
||
|
"text/html": [
|
||
|
" <script type=\"text/javascript\">\n",
|
||
|
" window.PlotlyConfig = {MathJaxConfig: 'local'};\n",
|
||
|
" if (window.MathJax && window.MathJax.Hub && window.MathJax.Hub.Config) {window.MathJax.Hub.Config({SVG: {font: \"STIX-Web\"}});}\n",
|
||
|
" if (typeof require !== 'undefined') {\n",
|
||
|
" require.undef(\"plotly\");\n",
|
||
|
" requirejs.config({\n",
|
||
|
" paths: {\n",
|
||
|
" 'plotly': ['https://cdn.plot.ly/plotly-2.12.1.min']\n",
|
||
|
" }\n",
|
||
|
" });\n",
|
||
|
" require(['plotly'], function(Plotly) {\n",
|
||
|
" window._Plotly = Plotly;\n",
|
||
|
" });\n",
|
||
|
" }\n",
|
||
|
" </script>\n",
|
||
|
" "
|
||
|
]
|
||
|
},
|
||
|
"metadata": {},
|
||
|
"output_type": "display_data"
|
||
|
},
|
||
|
{
|
||
|
"data": {
|
||
|
"application/vnd.plotly.v1+json": {
|
||
|
"config": {
|
||
|
"linkText": "Export to plot.ly",
|
||
|
"plotlyServerURL": "https://plot.ly",
|
||
|
"showLink": false
|
||
|
},
|
||
|
"data": [
|
||
|
{
|
||
|
"mode": "text",
|
||
|
"text": [
|
||
|
"the",
|
||
|
"to",
|
||
|
"of",
|
||
|
"in",
|
||
|
"and",
|
||
|
"he",
|
||
|
"is",
|
||
|
"for",
|
||
|
"on",
|
||
|
"said",
|
||
|
"that",
|
||
|
"has",
|
||
|
"says",
|
||
|
"was",
|
||
|
"have",
|
||
|
"it",
|
||
|
"be",
|
||
|
"are",
|
||
|
"with",
|
||
|
"will",
|
||
|
"at",
|
||
|
"mr",
|
||
|
"from",
|
||
|
"by",
|
||
|
"we",
|
||
|
"been",
|
||
|
"as",
|
||
|
"an",
|
||
|
"not",
|
||
|
"his",
|
||
|
"but",
|
||
|
"they",
|
||
|
"after",
|
||
|
"were",
|
||
|
"had",
|
||
|
"there",
|
||
|
"new",
|
||
|
"this",
|
||
|
"australia",
|
||
|
"australian",
|
||
|
"who",
|
||
|
"palestinian",
|
||
|
"people",
|
||
|
"their",
|
||
|
"government",
|
||
|
"two",
|
||
|
"up",
|
||
|
"south",
|
||
|
"us",
|
||
|
"which",
|
||
|
"year",
|
||
|
"one",
|
||
|
"about",
|
||
|
"out",
|
||
|
"if",
|
||
|
"also",
|
||
|
"more",
|
||
|
"when",
|
||
|
"its",
|
||
|
"into",
|
||
|
"would",
|
||
|
"first",
|
||
|
"last",
|
||
|
"against",
|
||
|
"israeli",
|
||
|
"minister",
|
||
|
"arafat",
|
||
|
"over",
|
||
|
"all",
|
||
|
"three",
|
||
|
"afghanistan",
|
||
|
"united",
|
||
|
"world",
|
||
|
"no",
|
||
|
"or",
|
||
|
"police",
|
||
|
"than",
|
||
|
"attacks",
|
||
|
"fire",
|
||
|
"before",
|
||
|
"some",
|
||
|
"security",
|
||
|
"day",
|
||
|
"you",
|
||
|
"states",
|
||
|
"could",
|
||
|
"them",
|
||
|
"say",
|
||
|
"today",
|
||
|
"now",
|
||
|
"told",
|
||
|
"time",
|
||
|
"any",
|
||
|
"laden",
|
||
|
"very",
|
||
|
"bin",
|
||
|
"just",
|
||
|
"can",
|
||
|
"sydney",
|
||
|
"what",
|
||
|
"still",
|
||
|
"company",
|
||
|
"president",
|
||
|
"man",
|
||
|
"four",
|
||
|
"taliban",
|
||
|
"killed",
|
||
|
"our",
|
||
|
"forces",
|
||
|
"al",
|
||
|
"around",
|
||
|
"being",
|
||
|
"days",
|
||
|
"west",
|
||
|
"old",
|
||
|
"other",
|
||
|
"officials",
|
||
|
"where",
|
||
|
"so",
|
||
|
"test",
|
||
|
"qaeda",
|
||
|
"israel",
|
||
|
"think",
|
||
|
"per",
|
||
|
"general",
|
||
|
"next",
|
||
|
"federal",
|
||
|
"force",
|
||
|
"cent",
|
||
|
"she",
|
||
|
"leader",
|
||
|
"yesterday",
|
||
|
"workers",
|
||
|
"take",
|
||
|
"him",
|
||
|
"hamas",
|
||
|
"under",
|
||
|
"state",
|
||
|
"those",
|
||
|
"years",
|
||
|
"meeting",
|
||
|
"bank",
|
||
|
"suicide",
|
||
|
"back",
|
||
|
"action",
|
||
|
"commission",
|
||
|
"made",
|
||
|
"down",
|
||
|
"morning",
|
||
|
"re",
|
||
|
"pakistan",
|
||
|
"international",
|
||
|
"city",
|
||
|
"attack",
|
||
|
"centre",
|
||
|
"group",
|
||
|
"afghan",
|
||
|
"members",
|
||
|
"while",
|
||
|
"military",
|
||
|
"well",
|
||
|
"number",
|
||
|
"through",
|
||
|
"qantas",
|
||
|
"five",
|
||
|
"local",
|
||
|
"called",
|
||
|
"area",
|
||
|
"union",
|
||
|
"gaza",
|
||
|
"week",
|
||
|
"national",
|
||
|
"since",
|
||
|
"wales",
|
||
|
"including",
|
||
|
"hours",
|
||
|
"september",
|
||
|
"another",
|
||
|
"east",
|
||
|
"night",
|
||
|
"report",
|
||
|
"off",
|
||
|
"north",
|
||
|
"should",
|
||
|
"get",
|
||
|
"second",
|
||
|
"go",
|
||
|
"earlier",
|
||
|
"war",
|
||
|
"staff",
|
||
|
"six",
|
||
|
"these",
|
||
|
"between",
|
||
|
"islamic",
|
||
|
"months",
|
||
|
"further",
|
||
|
"end",
|
||
|
"defence",
|
||
|
"do",
|
||
|
"sharon",
|
||
|
"near",
|
||
|
"team",
|
||
|
"foreign",
|
||
|
"power",
|
||
|
"areas",
|
||
|
"work",
|
||
|
"going",
|
||
|
"authority",
|
||
|
"because",
|
||
|
"way",
|
||
|
"eight",
|
||
|
"india",
|
||
|
"only",
|
||
|
"know",
|
||
|
"month",
|
||
|
"during",
|
||
|
"died",
|
||
|
"many",
|
||
|
"match",
|
||
|
"make",
|
||
|
"air",
|
||
|
"metres",
|
||
|
"left",
|
||
|
"claims",
|
||
|
"spokesman",
|
||
|
"ve",
|
||
|
"former",
|
||
|
"melbourne",
|
||
|
"northern",
|
||
|
"good",
|
||
|
"authorities",
|
||
|
"most",
|
||
|
"osama",
|
||
|
"support",
|
||
|
"prime",
|
||
|
"peace",
|
||
|
"like",
|
||
|
"set",
|
||
|
"ago",
|
||
|
"expected",
|
||
|
"saying",
|
||
|
"given",
|
||
|
"am",
|
||
|
"come",
|
||
|
"looking",
|
||
|
"militants",
|
||
|
"bora",
|
||
|
"tora",
|
||
|
"put",
|
||
|
"place",
|
||
|
"several",
|
||
|
"fighters",
|
||
|
"children",
|
||
|
"arrested",
|
||
|
"injured",
|
||
|
"found",
|
||
|
"river",
|
||
|
"royal",
|
||
|
"groups",
|
||
|
"africa",
|
||
|
"unions",
|
||
|
"christmas",
|
||
|
"troops",
|
||
|
"meanwhile",
|
||
|
"indian",
|
||
|
"child",
|
||
|
"hospital",
|
||
|
"terrorist",
|
||
|
"interim",
|
||
|
"part",
|
||
|
"reports",
|
||
|
"talks",
|
||
|
"official",
|
||
|
"whether",
|
||
|
"then",
|
||
|
"yasser",
|
||
|
"statement",
|
||
|
"leaders",
|
||
|
"economy",
|
||
|
"mountains",
|
||
|
"how",
|
||
|
"industrial",
|
||
|
"third",
|
||
|
"terrorism",
|
||
|
"senior",
|
||
|
"start",
|
||
|
"don",
|
||
|
"early",
|
||
|
"radio",
|
||
|
"john",
|
||
|
"hit",
|
||
|
"trying",
|
||
|
"weather",
|
||
|
"public",
|
||
|
"both",
|
||
|
"believe",
|
||
|
"family",
|
||
|
"pay",
|
||
|
"million",
|
||
|
"army",
|
||
|
"court",
|
||
|
"dr",
|
||
|
"long",
|
||
|
"best",
|
||
|
"control",
|
||
|
"help",
|
||
|
"however",
|
||
|
"lead",
|
||
|
"adelaide",
|
||
|
"asked",
|
||
|
"following",
|
||
|
"chief",
|
||
|
"pressure",
|
||
|
"agreement",
|
||
|
"does",
|
||
|
"service",
|
||
|
"firefighters",
|
||
|
"close",
|
||
|
"few",
|
||
|
"services",
|
||
|
"labor",
|
||
|
"play",
|
||
|
"better",
|
||
|
"community",
|
||
|
"taken",
|
||
|
"want",
|
||
|
"arrest",
|
||
|
"queensland",
|
||
|
"house",
|
||
|
"need",
|
||
|
"overnight",
|
||
|
"australians",
|
||
|
"high",
|
||
|
"confirmed",
|
||
|
"process",
|
||
|
"information",
|
||
|
"came",
|
||
|
"believed",
|
||
|
"williams",
|
||
|
"must",
|
||
|
"opposition",
|
||
|
"detainees",
|
||
|
"won",
|
||
|
"secretary",
|
||
|
"did",
|
||
|
"peter",
|
||
|
"party",
|
||
|
"held",
|
||
|
"damage",
|
||
|
"governor",
|
||
|
"maintenance",
|
||
|
"released",
|
||
|
"win",
|
||
|
"pentagon",
|
||
|
"possible",
|
||
|
"her",
|
||
|
"brought",
|
||
|
"hicks",
|
||
|
"much",
|
||
|
"shot",
|
||
|
"took",
|
||
|
"accused",
|
||
|
"nations",
|
||
|
"british",
|
||
|
"weekend",
|
||
|
"lot",
|
||
|
"violence",
|
||
|
"building",
|
||
|
"despite",
|
||
|
"council",
|
||
|
"return",
|
||
|
"got",
|
||
|
"airline",
|
||
|
"asylum",
|
||
|
"york",
|
||
|
"dead",
|
||
|
"kandahar",
|
||
|
"conditions",
|
||
|
"across",
|
||
|
"hill",
|
||
|
"winds",
|
||
|
"safety",
|
||
|
"even",
|
||
|
"such",
|
||
|
"change",
|
||
|
"cut",
|
||
|
"eastern",
|
||
|
"without",
|
||
|
"director",
|
||
|
"armed",
|
||
|
"working",
|
||
|
"aircraft",
|
||
|
"call",
|
||
|
"here",
|
||
|
"see",
|
||
|
"palestinians",
|
||
|
"december",
|
||
|
"economic",
|
||
|
"news",
|
||
|
"american",
|
||
|
"too",
|
||
|
"home",
|
||
|
"men",
|
||
|
"seekers",
|
||
|
"strip",
|
||
|
"lee",
|
||
|
"waugh",
|
||
|
"role",
|
||
|
"country",
|
||
|
"region",
|
||
|
"trade",
|
||
|
"emergency",
|
||
|
"crew",
|
||
|
"strong",
|
||
|
"race",
|
||
|
"captured",
|
||
|
"david",
|
||
|
"southern",
|
||
|
"fighting",
|
||
|
"continuing",
|
||
|
"fires",
|
||
|
"monday",
|
||
|
"far",
|
||
|
"anti",
|
||
|
"board",
|
||
|
"cricket",
|
||
|
"training",
|
||
|
"key",
|
||
|
"plans",
|
||
|
"bush",
|
||
|
"bureau",
|
||
|
"act",
|
||
|
"industry",
|
||
|
"george",
|
||
|
"head",
|
||
|
"past",
|
||
|
"water",
|
||
|
"charged",
|
||
|
"used",
|
||
|
"administration",
|
||
|
"received",
|
||
|
"offer",
|
||
|
"alliance",
|
||
|
"rate",
|
||
|
"zinni",
|
||
|
"health",
|
||
|
"least",
|
||
|
"leading",
|
||
|
"person",
|
||
|
"captain",
|
||
|
"your",
|
||
|
"town",
|
||
|
"boat",
|
||
|
"large",
|
||
|
"decision",
|
||
|
"stop",
|
||
|
"known",
|
||
|
"airport",
|
||
|
"operations",
|
||
|
"may",
|
||
|
"line",
|
||
|
"within",
|
||
|
"risk",
|
||
|
"use",
|
||
|
"downer",
|
||
|
"israelis",
|
||
|
"soldiers",
|
||
|
"major",
|
||
|
"britain",
|
||
|
"final",
|
||
|
"parliament",
|
||
|
"department",
|
||
|
"zealand",
|
||
|
"hundreds",
|
||
|
"issue",
|
||
|
"strikes",
|
||
|
"hih",
|
||
|
"station",
|
||
|
"legal",
|
||
|
"shane",
|
||
|
"plane",
|
||
|
"might",
|
||
|
"series",
|
||
|
"interest",
|
||
|
"un",
|
||
|
"laws",
|
||
|
"policy",
|
||
|
"right",
|
||
|
"ahead",
|
||
|
"hollingworth",
|
||
|
"tomorrow",
|
||
|
"network",
|
||
|
"pm",
|
||
|
"able",
|
||
|
"due",
|
||
|
"kabul",
|
||
|
"latest",
|
||
|
"death",
|
||
|
"homes",
|
||
|
"weapons",
|
||
|
"behind",
|
||
|
"great",
|
||
|
"coast",
|
||
|
"western",
|
||
|
"position",
|
||
|
"give",
|
||
|
"later",
|
||
|
"late",
|
||
|
"half",
|
||
|
"officers",
|
||
|
"my",
|
||
|
"taking",
|
||
|
"every",
|
||
|
"remain",
|
||
|
"campaign",
|
||
|
"seen",
|
||
|
"thought",
|
||
|
"bill",
|
||
|
"timor",
|
||
|
"special",
|
||
|
"side",
|
||
|
"failed",
|
||
|
"same",
|
||
|
"flight",
|
||
|
"along",
|
||
|
"jobs",
|
||
|
"storm",
|
||
|
"me",
|
||
|
"forced",
|
||
|
"life",
|
||
|
"others",
|
||
|
"continue",
|
||
|
"hard",
|
||
|
"event",
|
||
|
"abuse",
|
||
|
"cup",
|
||
|
"victory",
|
||
|
"jihad",
|
||
|
"guilty",
|
||
|
"point",
|
||
|
"towards",
|
||
|
"really",
|
||
|
"concerned",
|
||
|
"heard",
|
||
|
"already",
|
||
|
"territory",
|
||
|
"washington",
|
||
|
"deaths",
|
||
|
"mcgrath",
|
||
|
"helicopters",
|
||
|
"envoy",
|
||
|
"canyoning",
|
||
|
"capital",
|
||
|
"bus",
|
||
|
"bichel",
|
||
|
"november",
|
||
|
"likely",
|
||
|
"details",
|
||
|
"case",
|
||
|
"member",
|
||
|
"launched",
|
||
|
"innings",
|
||
|
"according",
|
||
|
"enough",
|
||
|
"bombings",
|
||
|
"weeks",
|
||
|
"countries",
|
||
|
"again",
|
||
|
"detention",
|
||
|
"move",
|
||
|
"woomera",
|
||
|
"seven",
|
||
|
"cabinet",
|
||
|
"bowler",
|
||
|
"buildings",
|
||
|
"hour",
|
||
|
"mark",
|
||
|
"matter",
|
||
|
"middle",
|
||
|
"bombing",
|
||
|
"th",
|
||
|
"sunday",
|
||
|
"situation",
|
||
|
"rates",
|
||
|
"space",
|
||
|
"important",
|
||
|
"warne",
|
||
|
"dispute",
|
||
|
"caught",
|
||
|
"jail",
|
||
|
"claimed",
|
||
|
"wants",
|
||
|
"perth",
|
||
|
"adventure",
|
||
|
"targets",
|
||
|
"run",
|
||
|
"swiss",
|
||
|
"asio",
|
||
|
"added",
|
||
|
"commonwealth",
|
||
|
"raids",
|
||
|
"office",
|
||
|
"evidence",
|
||
|
"deal",
|
||
|
"guides",
|
||
|
"disease",
|
||
|
"show",
|
||
|
"boy",
|
||
|
"women",
|
||
|
"own",
|
||
|
"freeze",
|
||
|
"opened",
|
||
|
"human",
|
||
|
"forward",
|
||
|
"carried",
|
||
|
"african",
|
||
|
"mission",
|
||
|
"movement",
|
||
|
"based",
|
||
|
"sure",
|
||
|
"reported",
|
||
|
"immediately",
|
||
|
"political",
|
||
|
"warplanes",
|
||
|
"young",
|
||
|
"rule",
|
||
|
"ms",
|
||
|
"blue",
|
||
|
"top",
|
||
|
"justice",
|
||
|
"money",
|
||
|
"aedt",
|
||
|
"cancer",
|
||
|
"crash",
|
||
|
"march",
|
||
|
"banks",
|
||
|
"border",
|
||
|
"using",
|
||
|
"although",
|
||
|
"access",
|
||
|
"financial",
|
||
|
"allegations",
|
||
|
"certainly",
|
||
|
"planning",
|
||
|
"probably",
|
||
|
"break",
|
||
|
"find",
|
||
|
"wicket",
|
||
|
"ground",
|
||
|
"beat",
|
||
|
"prepared",
|
||
|
"burning",
|
||
|
"become",
|
||
|
"always",
|
||
|
"job",
|
||
|
"proposed",
|
||
|
"each",
|
||
|
"full",
|
||
|
"reached",
|
||
|
"collapse",
|
||
|
"growth",
|
||
|
"order",
|
||
|
"island",
|
||
|
"sector",
|
||
|
"flying",
|
||
|
"carrying",
|
||
|
"result",
|
||
|
"face",
|
||
|
"investigation",
|
||
|
"times",
|
||
|
"relations",
|
||
|
"militant",
|
||
|
"road",
|
||
|
"sex",
|
||
|
"needs",
|
||
|
"organisation",
|
||
|
"until",
|
||
|
"serious",
|
||
|
"program",
|
||
|
"fight",
|
||
|
"calls",
|
||
|
"stage",
|
||
|
"getting",
|
||
|
"lives",
|
||
|
"responsibility",
|
||
|
"reserve",
|
||
|
"thursday",
|
||
|
"comes",
|
||
|
"management",
|
||
|
"sent",
|
||
|
"drop",
|
||
|
"surrender",
|
||
|
"allow",
|
||
|
"soon",
|
||
|
"afp",
|
||
|
"tried",
|
||
|
"post",
|
||
|
"killing",
|
||
|
"radical",
|
||
|
"hewitt",
|
||
|
"himself",
|
||
|
"senator",
|
||
|
"executive",
|
||
|
"outside",
|
||
|
"believes",
|
||
|
"inquiry",
|
||
|
"short",
|
||
|
"caves",
|
||
|
"different",
|
||
|
"flights",
|
||
|
"immigration",
|
||
|
"tourists",
|
||
|
"future",
|
||
|
"inside",
|
||
|
"bid",
|
||
|
"energy",
|
||
|
"clear",
|
||
|
"trees",
|
||
|
"thousands",
|
||
|
"argentina",
|
||
|
"militia",
|
||
|
"suspected",
|
||
|
"making",
|
||
|
"bowling",
|
||
|
"ariel",
|
||
|
"went",
|
||
|
"alleged",
|
||
|
"rejected",
|
||
|
"howard",
|
||
|
"quickly",
|
||
|
"wave",
|
||
|
"harrison",
|
||
|
"travel",
|
||
|
"opening",
|
||
|
"ansett",
|
||
|
"kilometres",
|
||
|
"declared",
|
||
|
"running",
|
||
|
"measures",
|
||
|
"biggest",
|
||
|
"list",
|
||
|
"figures",
|
||
|
"rise",
|
||
|
"residents",
|
||
|
"sea",
|
||
|
"form",
|
||
|
"annual",
|
||
|
"anything",
|
||
|
"attempt",
|
||
|
"open",
|
||
|
"parties",
|
||
|
"available",
|
||
|
"announced",
|
||
|
"shortly",
|
||
|
"among",
|
||
|
"currently",
|
||
|
"bombers",
|
||
|
"circumstances",
|
||
|
"accident",
|
||
|
"donald",
|
||
|
"ministers",
|
||
|
"look",
|
||
|
"brisbane",
|
||
|
"decided",
|
||
|
"ruddock",
|
||
|
"changes",
|
||
|
"yet",
|
||
|
"issues",
|
||
|
"address",
|
||
|
"destroyed",
|
||
|
"actually",
|
||
|
"rights",
|
||
|
"increase",
|
||
|
"terms",
|
||
|
"school",
|
||
|
"rural",
|
||
|
"fighter",
|
||
|
"quite",
|
||
|
"happened",
|
||
|
"wounded",
|
||
|
"victoria",
|
||
|
"television",
|
||
|
"nine",
|
||
|
"something",
|
||
|
"try",
|
||
|
"parts",
|
||
|
"white",
|
||
|
"response",
|
||
|
"done",
|
||
|
"wickets",
|
||
|
"witnesses",
|
||
|
"refused",
|
||
|
"karzai",
|
||
|
"sentence",
|
||
|
"ended",
|
||
|
"tanks",
|
||
|
"gunmen",
|
||
|
"sources",
|
||
|
"kallis",
|
||
|
"agency",
|
||
|
"july",
|
||
|
"jewish",
|
||
|
"warned",
|
||
|
"directors",
|
||
|
"understand",
|
||
|
"meet",
|
||
|
"means",
|
||
|
"returned",
|
||
|
"offices",
|
||
|
"yacht",
|
||
|
"source",
|
||
|
"alexander",
|
||
|
"ll",
|
||
|
"fact",
|
||
|
"difficult",
|
||
|
"though",
|
||
|
"period",
|
||
|
"confidence",
|
||
|
"wage",
|
||
|
"airlines",
|
||
|
"virus",
|
||
|
"advice",
|
||
|
"caused",
|
||
|
"musharraf",
|
||
|
"allan",
|
||
|
"recession",
|
||
|
"less",
|
||
|
"ensure",
|
||
|
"strike",
|
||
|
"appeared",
|
||
|
"islands",
|
||
|
"crowd",
|
||
|
"suharto",
|
||
|
"highway",
|
||
|
"afternoon",
|
||
|
"step",
|
||
|
"commanders",
|
||
|
"began",
|
||
|
"gave",
|
||
|
"worst",
|
||
|
"glenn",
|
||
|
"bomb",
|
||
|
"commissioner",
|
||
|
"powell",
|
||
|
"having",
|
||
|
"beginning",
|
||
|
"intelligence",
|
||
|
"rafter",
|
||
|
"prevent",
|
||
|
"gives",
|
||
|
"expressed",
|
||
|
"huge",
|
||
|
"ever",
|
||
|
"big",
|
||
|
"business",
|
||
|
"ses",
|
||
|
"media",
|
||
|
"friday",
|
||
|
"pacific",
|
||
|
"robert",
|
||
|
"expect",
|
||
|
"blake",
|
||
|
"runs",
|
||
|
"involved",
|
||
|
"followed",
|
||
|
"deputy",
|
||
|
"hobart",
|
||
|
"whose",
|
||
|
"market",
|
||
|
"tour",
|
||
|
"rather",
|
||
|
"attorney",
|
||
|
"elected",
|
||
|
"beyond",
|
||
|
"arrived",
|
||
|
"away",
|
||
|
"facility",
|
||
|
"commander",
|
||
|
"total",
|
||
|
"law",
|
||
|
"field",
|
||
|
"supporters",
|
||
|
"struck",
|
||
|
"car",
|
||
|
"cost",
|
||
|
"sir",
|
||
|
"negotiations",
|
||
|
"nauru",
|
||
|
"tennis",
|
||
|
"massive",
|
||
|
"entered",
|
||
|
"threat",
|
||
|
"plan",
|
||
|
"explosives",
|
||
|
"debt",
|
||
|
"entitlements",
|
||
|
"criticism",
|
||
|
"decide",
|
||
|
"quarter",
|
||
|
"saturday",
|
||
|
"assistance",
|
||
|
"labour",
|
||
|
"geoff",
|
||
|
"together",
|
||
|
"finished",
|
||
|
"chance",
|
||
|
"endeavour",
|
||
|
"chairman",
|
||
|
"main",
|
||
|
"heavy",
|
||
|
"base",
|
||
|
"places",
|
||
|
"tragedy",
|
||
|
"sort",
|
||
|
"vote",
|
||
|
"giving",
|
||
|
"jenin",
|
||
|
"front",
|
||
|
"powers",
|
||
|
"anglican",
|
||
|
"son",
|
||
|
"zimbabwe",
|
||
|
"themselves",
|
||
|
"conflict",
|
||
|
"yes",
|
||
|
"muslim",
|
||
|
"lockett",
|
||
|
"daryl",
|
||
|
"helicopter",
|
||
|
"current",
|
||
|
"fast",
|
||
|
"complex",
|
||
|
"terror",
|
||
|
"smoke",
|
||
|
"france",
|
||
|
"anthony",
|
||
|
"calling",
|
||
|
"hearings",
|
||
|
"population",
|
||
|
"tasmania",
|
||
|
"game",
|
||
|
"jacques",
|
||
|
"placed",
|
||
|
"denied",
|
||
|
"reid",
|
||
|
"pakistani",
|
||
|
"indonesia",
|
||
|
"bring",
|
||
|
"ballot",
|
||
|
"played",
|
||
|
"protect",
|
||
|
"level",
|
||
|
"conference",
|
||
|
"organisations",
|
||
|
"martin",
|
||
|
"employees",
|
||
|
"feel",
|
||
|
"costs",
|
||
|
"changed",
|
||
|
"study",
|
||
|
"survey",
|
||
|
"brett",
|
||
|
"potential",
|
||
|
"macgill",
|
||
|
"cannot",
|
||
|
"crean",
|
||
|
"lost",
|
||
|
"storms",
|
||
|
"round",
|
||
|
"russian",
|
||
|
"trip",
|
||
|
"crisis",
|
||
|
"nearly",
|
||
|
"americans",
|
||
|
"speaking",
|
||
|
"ambush",
|
||
|
"never",
|
||
|
"significant",
|
||
|
"boxing",
|
||
|
"longer",
|
||
|
"low",
|
||
|
"tribal",
|
||
|
"deadly",
|
||
|
"record",
|
||
|
"problem",
|
||
|
"professor",
|
||
|
"hayden",
|
||
|
"fleeing",
|
||
|
"absolutely",
|
||
|
"continues",
|
||
|
"fired",
|
||
|
"rumsfeld",
|
||
|
"claim",
|
||
|
"ramallah",
|
||
|
"hold",
|
||
|
"anyone",
|
||
|
"election",
|
||
|
"construction",
|
||
|
"technology",
|
||
|
"doubles",
|
||
|
"cities",
|
||
|
"companies",
|
||
|
"research",
|
||
|
"whole",
|
||
|
"efforts",
|
||
|
"needed",
|
||
|
"small",
|
||
|
"moved",
|
||
|
"confident",
|
||
|
"land",
|
||
|
"proposals",
|
||
|
"sign",
|
||
|
"little",
|
||
|
"affected",
|
||
|
"tape",
|
||
|
"ruled",
|
||
|
"environment",
|
||
|
"everything",
|
||
|
"severe",
|
||
|
"led",
|
||
|
"closed",
|
||
|
"forecast",
|
||
|
"pilot",
|
||
|
"overall",
|
||
|
"gillespie",
|
||
|
"signed",
|
||
|
"coming",
|
||
|
"receive",
|
||
|
"rival",
|
||
|
"provide",
|
||
|
"representation",
|
||
|
"simon",
|
||
|
"accept",
|
||
|
"sides",
|
||
|
"mountain",
|
||
|
"receiving",
|
||
|
"mean",
|
||
|
"secret",
|
||
|
"injuries",
|
||
|
"dozens",
|
||
|
"steve",
|
||
|
"payment",
|
||
|
"hope",
|
||
|
"battle",
|
||
|
"shuttle",
|
||
|
"gun",
|
||
|
"central",
|
||
|
"bomber",
|
||
|
"starting",
|
||
|
"activity",
|
||
|
"damaged",
|
||
|
"bonn",
|
||
|
"disaster",
|
||
|
"problems",
|
||
|
"verdict",
|
||
|
"flames",
|
||
|
"condition",
|
||
|
"french",
|
||
|
"tony",
|
||
|
"resolution",
|
||
|
"rest",
|
||
|
"coalition",
|
||
|
"richard",
|
||
|
"treatment",
|
||
|
"recorded",
|
||
|
"grant",
|
||
|
"stopped",
|
||
|
"hotel",
|
||
|
"insurance",
|
||
|
"carry",
|
||
|
"rain",
|
||
|
"almost",
|
||
|
"ice",
|
||
|
"continued",
|
||
|
"greater",
|
||
|
"global",
|
||
|
"share",
|
||
|
"direct",
|
||
|
"nation",
|
||
|
"paid",
|
||
|
"vaughan",
|
||
|
"statistics",
|
||
|
"fellow",
|
||
|
"winner",
|
||
|
"civil",
|
||
|
"review",
|
||
|
"private",
|
||
|
"gas",
|
||
|
"twice",
|
||
|
"interlaken",
|
||
|
"concern",
|
||
|
"cars",
|
||
|
"started",
|
||
|
"red",
|
||
|
"fell",
|
||
|
"disappointed",
|
||
|
"debate",
|
||
|
"determined",
|
||
|
"michael",
|
||
|
"seles",
|
||
|
"begin",
|
||
|
"krishna",
|
||
|
"didn",
|
||
|
"refugees",
|
||
|
"remaining",
|
||
|
"tough",
|
||
|
"ceremony",
|
||
|
"property",
|
||
|
"january",
|
||
|
"qc",
|
||
|
"stand",
|
||
|
"operation",
|
||
|
"territories",
|
||
|
"above",
|
||
|
"lower",
|
||
|
"respond",
|
||
|
"reduce",
|
||
|
"resolve",
|
||
|
"victims",
|
||
|
"strategic",
|
||
|
"asic",
|
||
|
"alongside",
|
||
|
"include",
|
||
|
"revealed",
|
||
|
"august",
|
||
|
"season",
|
||
|
"charge",
|
||
|
"completed",
|
||
|
"seeking",
|
||
|
"bit",
|
||
|
"park",
|
||
|
"lines",
|
||
|
"heritage",
|
||
|
"traditional",
|
||
|
"enter",
|
||
|
"tuesday",
|
||
|
"guard",
|
||
|
"ray",
|
||
|
"avoid",
|
||
|
"markets",
|
||
|
"visit",
|
||
|
"europe",
|
||
|
"winning",
|
||
|
"playing",
|
||
|
"self",
|
||
|
"yachts",
|
||
|
"met",
|
||
|
"charges",
|
||
|
"vice",
|
||
|
"cease",
|
||
|
"roads",
|
||
|
"factory",
|
||
|
"america",
|
||
|
"itself",
|
||
|
"created",
|
||
|
"wake",
|
||
|
"levels",
|
||
|
"fall",
|
||
|
"related",
|
||
|
"outlook",
|
||
|
"ministry",
|
||
|
"lung",
|
||
|
"hearing",
|
||
|
"non",
|
||
|
"volunteers",
|
||
|
"civilians",
|
||
|
"voted",
|
||
|
"liquidation",
|
||
|
"search",
|
||
|
"provisional",
|
||
|
"rescue",
|
||
|
"victorian",
|
||
|
"table",
|
||
|
"successful",
|
||
|
"track",
|
||
|
"conducted",
|
||
|
"heading",
|
||
|
"spread",
|
||
|
"accompanied",
|
||
|
"delhi",
|
||
|
"operating",
|
||
|
"wanted",
|
||
|
"expects",
|
||
|
"leg",
|
||
|
"ponting",
|
||
|
"pulled",
|
||
|
"knew",
|
||
|
"heart",
|
||
|
"coach",
|
||
|
"confirm",
|
||
|
"ball",
|
||
|
"virgin",
|
||
|
"press",
|
||
|
"suffered",
|
||
|
"illawarra",
|
||
|
"approach",
|
||
|
"manslaughter",
|
||
|
"costello",
|
||
|
"showed",
|
||
|
"threatened",
|
||
|
"warning",
|
||
|
"helped",
|
||
|
"resume",
|
||
|
"japan",
|
||
|
"individuals",
|
||
|
"mayor",
|
||
|
"giuliani",
|
||
|
"friedli",
|
||
|
"wind",
|
||
|
"served",
|
||
|
"andy",
|
||
|
"range",
|
||
|
"responsible",
|
||
|
"unemployment",
|
||
|
"mckenzie",
|
||
|
"initial",
|
||
|
"keep",
|
||
|
"families",
|
||
|
"lord",
|
||
|
"incident",
|
||
|
"october",
|
||
|
"finance",
|
||
|
"treated",
|
||
|
"ian",
|
||
|
"why",
|
||
|
"solution",
|
||
|
"apparently",
|
||
|
"body",
|
||
|
"club",
|
||
|
"crackdown",
|
||
|
"reach",
|
||
|
"officer",
|
||
|
"institute",
|
||
|
"shaun",
|
||
|
"pollock",
|
||
|
"hopes",
|
||
|
"structure",
|
||
|
"data",
|
||
|
"nice",
|
||
|
"food",
|
||
|
"seriously",
|
||
|
"suspended",
|
||
|
"attacked",
|
||
|
"jason",
|
||
|
"elections",
|
||
|
"edge",
|
||
|
"affairs",
|
||
|
"nothing",
|
||
|
"questions",
|
||
|
"mid",
|
||
|
"built",
|
||
|
"negotiating",
|
||
|
"peacekeepers",
|
||
|
"saw",
|
||
|
"issued",
|
||
|
"spokeswoman",
|
||
|
"assisting",
|
||
|
"remains",
|
||
|
"finding",
|
||
|
"recovery",
|
||
|
"woman",
|
||
|
"gang",
|
||
|
"kashmir",
|
||
|
"farmers",
|
||
|
"oil",
|
||
|
"networks",
|
||
|
"sheikh",
|
||
|
"adequate",
|
||
|
"doubt",
|
||
|
"products",
|
||
|
"secure",
|
||
|
"beatle",
|
||
|
"single",
|
||
|
"options",
|
||
|
"clearly",
|
||
|
"blaze",
|
||
|
"present",
|
||
|
"ford",
|
||
|
"cfmeu",
|
||
|
"tailenders",
|
||
|
"fatah",
|
||
|
"scene",
|
||
|
"co",
|
||
|
"lording",
|
||
|
"factions",
|
||
|
"st",
|
||
|
"raid",
|
||
|
"career",
|
||
|
"streets",
|
||
|
"butterfly",
|
||
|
"amin",
|
||
|
"outcome",
|
||
|
"traveland",
|
||
|
"peres",
|
||
|
"inappropriate",
|
||
|
"austar",
|
||
|
"scored",
|
||
|
"champion",
|
||
|
"races",
|
||
|
"cave",
|
||
|
"scheduled",
|
||
|
"clean",
|
||
|
"nearby",
|
||
|
"philip",
|
||
|
"shows",
|
||
|
"invasion",
|
||
|
"aboard",
|
||
|
"coup",
|
||
|
"senate",
|
||
|
"doug",
|
||
|
"solomon",
|
||
|
"eve",
|
||
|
"sarah",
|
||
|
"holiday",
|
||
|
"mohammad",
|
||
|
"university",
|
||
|
"murder",
|
||
|
"whiting",
|
||
|
"gorge",
|
||
|
"tensions",
|
||
|
"manufacturing",
|
||
|
"wayne",
|
||
|
"yallourn",
|
||
|
"diplomatic",
|
||
|
"drug",
|
||
|
"promised",
|
||
|
"cause",
|
||
|
"natural",
|
||
|
"afroz",
|
||
|
"ethnic",
|
||
|
"singles",
|
||
|
"crews",
|
||
|
"meetings",
|
||
|
"toll",
|
||
|
"apra",
|
||
|
"administrators",
|
||
|
"corporation",
|
||
|
"leadership",
|
||
|
"canberra",
|
||
|
"exchange",
|
||
|
"nuclear",
|
||
|
"germany",
|
||
|
"numbers",
|
||
|
"attacking",
|
||
|
"largest",
|
||
|
"petrol",
|
||
|
"customers",
|
||
|
"prior",
|
||
|
"internet",
|
||
|
"awards",
|
||
|
"extremists",
|
||
|
"attempting",
|
||
|
"personnel",
|
||
|
"hand",
|
||
|
"criminal",
|
||
|
"mandate",
|
||
|
"things",
|
||
|
"deployed",
|
||
|
"follows",
|
||
|
"unrest",
|
||
|
"dropped",
|
||
|
"manager",
|
||
|
"injury",
|
||
|
"settlement",
|
||
|
"roof",
|
||
|
"honours",
|
||
|
"appears",
|
||
|
"metre",
|
||
|
"boats",
|
||
|
"often",
|
||
|
"speech",
|
||
|
"squad",
|
||
|
"fair",
|
||
|
"budget",
|
||
|
"ready",
|
||
|
"ask",
|
||
|
"band",
|
||
|
"proteas",
|
||
|
"king",
|
||
|
"grand",
|
||
|
"recent",
|
||
|
"happens",
|
||
|
"classic",
|
||
|
"suburbs",
|
||
|
"resign",
|
||
|
"swept",
|
||
|
"collapsed",
|
||
|
"true",
|
||
|
"agreed",
|
||
|
"batsmen",
|
||
|
"presence",
|
||
|
"felt",
|
||
|
"billion",
|
||
|
"resistance",
|
||
|
"giant",
|
||
|
"increased",
|
||
|
"described",
|
||
|
"unit",
|
||
|
"create",
|
||
|
"concerns",
|
||
|
"protection",
|
||
|
"targeted",
|
||
|
"boys",
|
||
|
"saudi",
|
||
|
"leave",
|
||
|
"unity",
|
||
|
"planes",
|
||
|
"halt",
|
||
|
"read",
|
||
|
"marine",
|
||
|
"neil",
|
||
|
"walk",
|
||
|
"crossed",
|
||
|
"fleet",
|
||
|
"knowledge",
|
||
|
"minute",
|
||
|
"greatest",
|
||
|
"extensive",
|
||
|
"backed",
|
||
|
"ocean",
|
||
|
"assa",
|
||
|
"ricky",
|
||
|
"abloy",
|
||
|
"light",
|
||
|
"premier",
|
||
|
"names",
|
||
|
"explanation",
|
||
|
"wall",
|
||
|
"possibility",
|
||
|
"real",
|
||
|
"live",
|
||
|
"switzerland",
|
||
|
"japanese",
|
||
|
"shopping",
|
||
|
"reveal",
|
||
|
"fierce",
|
||
|
"tree",
|
||
|
"elders",
|
||
|
"blame",
|
||
|
"tension",
|
||
|
"employment",
|
||
|
"detain",
|
||
|
"positive",
|
||
|
"income",
|
||
|
"haifa",
|
||
|
"jerusalem",
|
||
|
"pre",
|
||
|
"programs",
|
||
|
"jets",
|
||
|
"transport",
|
||
|
"regional",
|
||
|
"save",
|
||
|
"hunt",
|
||
|
"advance",
|
||
|
"gone",
|
||
|
"battling",
|
||
|
"suspect",
|
||
|
"representing",
|
||
|
"investigating",
|
||
|
"reduced",
|
||
|
"acting",
|
||
|
"projects",
|
||
|
"investment",
|
||
|
"spencer",
|
||
|
"findings",
|
||
|
"students",
|
||
|
"nablus",
|
||
|
"actions",
|
||
|
"trial",
|
||
|
"declaration",
|
||
|
"handed",
|
||
|
"custody",
|
||
|
"growing",
|
||
|
"system",
|
||
|
"prisoners",
|
||
|
"domestic",
|
||
|
"education",
|
||
|
"society",
|
||
|
"summit",
|
||
|
"assault",
|
||
|
"langer",
|
||
|
"matthew",
|
||
|
"requested",
|
||
|
"westpac",
|
||
|
"doctor",
|
||
|
"wing",
|
||
|
"republic",
|
||
|
"searching",
|
||
|
"eliminated",
|
||
|
"approval",
|
||
|
"anz",
|
||
|
"term",
|
||
|
"bargaining",
|
||
|
"various",
|
||
|
"balls",
|
||
|
"klusener",
|
||
|
"boucher",
|
||
|
"humanity",
|
||
|
"suggested",
|
||
|
"adding",
|
||
|
"history",
|
||
|
"normal",
|
||
|
"cuts",
|
||
|
"signs",
|
||
|
"gunships",
|
||
|
"blasted",
|
||
|
"turn",
|
||
|
"hare",
|
||
|
"smaller",
|
||
|
"guess",
|
||
|
"benares",
|
||
|
"ashes",
|
||
|
"path",
|
||
|
"terrorists",
|
||
|
"blazes",
|
||
|
"hijacked",
|
||
|
"adam",
|
||
|
"follow",
|
||
|
"comment",
|
||
|
"aware",
|
||
|
"connection",
|
||
|
"underway",
|
||
|
"kieren",
|
||
|
"rabbani",
|
||
|
"completely",
|
||
|
"tonight",
|
||
|
"understanding",
|
||
|
"infected",
|
||
|
"masood",
|
||
|
"treasurer",
|
||
|
"crime",
|
||
|
"gambier",
|
||
|
"henderson",
|
||
|
"returning",
|
||
|
"results",
|
||
|
"kingham",
|
||
|
"question",
|
||
|
"kissinger",
|
||
|
"gerber",
|
||
|
"stuart",
|
||
|
"launceston",
|
||
|
"sergeant",
|
||
|
"flood",
|
||
|
"committee",
|
||
|
"hundred",
|
||
|
"goshen",
|
||
|
"handling",
|
||
|
"church",
|
||
|
"thing",
|
||
|
"escaped",
|
||
|
"injuring",
|
||
|
"slightly",
|
||
|
"francs",
|
||
|
"hunter",
|
||
|
"ahmed",
|
||
|
"actor",
|
||
|
"wednesday",
|
||
|
"aged",
|
||
|
"centrelink",
|
||
|
"threatening",
|
||
|
"sultan",
|
||
|
"improve",
|
||
|
"passed",
|
||
|
"stability",
|
||
|
"project",
|
||
|
"dollars",
|
||
|
"decades",
|
||
|
"course",
|
||
|
"ill",
|
||
|
"faces",
|
||
|
"chosen",
|
||
|
"bob",
|
||
|
"hamid",
|
||
|
"passengers",
|
||
|
"davis",
|
||
|
"neville",
|
||
|
"ways",
|
||
|
"pace",
|
||
|
"whatever",
|
||
|
"headed",
|
||
|
"launch",
|
||
|
"replied",
|
||
|
"hopefully",
|
||
|
"determine",
|
||
|
"archbishop",
|
||
|
"unable",
|
||
|
"throughout",
|
||
|
"average",
|
||
|
"unidentified",
|
||
|
"survived",
|
||
|
"approached",
|
||
|
"convicted",
|
||
|
"cooperation",
|
||
|
"redundancy",
|
||
|
"waiting",
|
||
|
"request",
|
||
|
"paying",
|
||
|
"observers",
|
||
|
"aboriginal",
|
||
|
"procedures",
|
||
|
"reject",
|
||
|
"document",
|
||
|
"improved",
|
||
|
"holding",
|
||
|
"mass",
|
||
|
"unfortunately",
|
||
|
"welcomed",
|
||
|
"whereabouts",
|
||
|
"appropriate",
|
||
|
"lack",
|
||
|
"delay",
|
||
|
"trapped",
|
||
|
"facilities",
|
||
|
"decisions",
|
||
|
"prepare",
|
||
|
"medical",
|
||
|
"necessary",
|
||
|
"spinner",
|
||
|
"examination",
|
||
|
"losing",
|
||
|
"channel",
|
||
|
"occupation",
|
||
|
"title",
|
||
|
"consumers",
|
||
|
"firm",
|
||
|
"creditors",
|
||
|
"fine",
|
||
|
"vehicle",
|
||
|
"staying",
|
||
|
"relationship",
|
||
|
"delivered",
|
||
|
"begun",
|
||
|
"hot",
|
||
|
"coroner",
|
||
|
"temperatures",
|
||
|
"containment",
|
||
|
"cross",
|
||
|
"contested",
|
||
|
"strongly",
|
||
|
"experts",
|
||
|
"celebrations",
|
||
|
"focus",
|
||
|
"named",
|
||
|
"sometimes",
|
||
|
"marines",
|
||
|
"player",
|
||
|
"jalalabad",
|
||
|
"games",
|
||
|
"breaking",
|
||
|
"contained",
|
||
|
"counts",
|
||
|
"stay",
|
||
|
"allowed",
|
||
|
"temporary",
|
||
|
"assembly",
|
||
|
"draft",
|
||
|
"understood",
|
||
|
"toowoomba",
|
||
|
"voice",
|
||
|
"twenty",
|
||
|
"strachan",
|
||
|
"harris",
|
||
|
"discussions",
|
||
|
"hopman",
|
||
|
"crashed",
|
||
|
"farm",
|
||
|
"violent",
|
||
|
"communities",
|
||
|
"kilometre",
|
||
|
"doctors",
|
||
|
"hoping",
|
||
|
"ban",
|
||
|
"colin",
|
||
|
"effective",
|
||
|
"success",
|
||
|
"offered",
|
||
|
"positions",
|
||
|
"abu",
|
||
|
"worked",
|
||
|
"documents",
|
||
|
"tell",
|
||
|
"phillips",
|
||
|
"retired",
|
||
|
"choosing",
|
||
|
"responding",
|
||
|
"allegedly",
|
||
|
"indonesian",
|
||
|
"detail",
|
||
|
"free",
|
||
|
"bringing",
|
||
|
"hiv",
|
||
|
"proposal",
|
||
|
"doesn",
|
||
|
"mining",
|
||
|
"embassy",
|
||
|
"heights",
|
||
|
"mt",
|
||
|
"trading",
|
||
|
"room",
|
||
|
"fund",
|
||
|
"impact",
|
||
|
"male",
|
||
|
"mohammed",
|
||
|
"interests",
|
||
|
"effort",
|
||
|
"antarctic",
|
||
|
"previous",
|
||
|
"target",
|
||
|
"words",
|
||
|
"publicly",
|
||
|
"walked",
|
||
|
"credit",
|
||
|
"provided",
|
||
|
"investigate",
|
||
|
"telephone",
|
||
|
"eventually",
|
||
|
"leaving",
|
||
|
"banking",
|
||
|
"interview",
|
||
|
"headquarters",
|
||
|
"clashes",
|
||
|
"doing",
|
||
|
"fear",
|
||
|
"predicted",
|
||
|
"picked",
|
||
|
"happy",
|
||
|
"visa",
|
||
|
"tie",
|
||
|
"putting",
|
||
|
"escalating",
|
||
|
"hoped",
|
||
|
"landed",
|
||
|
"sharing",
|
||
|
"mind",
|
||
|
"skipper",
|
||
|
"gary",
|
||
|
"soft",
|
||
|
"became",
|
||
|
"sending",
|
||
|
"shoes",
|
||
|
"paris",
|
||
|
"required",
|
||
|
"seemed",
|
||
|
"cameron",
|
||
|
"ability",
|
||
|
"locked",
|
||
|
"travelled",
|
||
|
"finally",
|
||
|
"separate",
|
||
|
"owen"
|
||
|
],
|
||
|
"type": "scatter",
|
||
|
"x": [
|
||
|
47.4644889831543,
|
||
|
48.851863861083984,
|
||
|
48.744876861572266,
|
||
|
49.41001510620117,
|
||
|
48.233985900878906,
|
||
|
44.345252990722656,
|
||
|
48.155426025390625,
|
||
|
48.498226165771484,
|
||
|
49.016632080078125,
|
||
|
45.739105224609375,
|
||
|
46.98816680908203,
|
||
|
49.26586151123047,
|
||
|
48.287742614746094,
|
||
|
45.93186569213867,
|
||
|
47.98882293701172,
|
||
|
46.0859260559082,
|
||
|
45.53205871582031,
|
||
|
48.14992904663086,
|
||
|
49.34938430786133,
|
||
|
47.90408706665039,
|
||
|
48.729949951171875,
|
||
|
47.61993408203125,
|
||
|
49.19534683227539,
|
||
|
48.98371505737305,
|
||
|
46.38492202758789,
|
||
|
44.858177185058594,
|
||
|
48.55203628540039,
|
||
|
48.57127380371094,
|
||
|
45.456336975097656,
|
||
|
48.08494567871094,
|
||
|
48.32683181762695,
|
||
|
47.133724212646484,
|
||
|
49.49031448364258,
|
||
|
48.83164978027344,
|
||
|
47.50868225097656,
|
||
|
44.35967254638672,
|
||
|
46.98196792602539,
|
||
|
45.98774337768555,
|
||
|
44.872615814208984,
|
||
|
47.09270095825195,
|
||
|
47.25460433959961,
|
||
|
47.13319396972656,
|
||
|
42.81993103027344,
|
||
|
47.596717834472656,
|
||
|
44.49154281616211,
|
||
|
49.04304504394531,
|
||
|
45.86509323120117,
|
||
|
47.02421188354492,
|
||
|
45.30585479736328,
|
||
|
47.30022430419922,
|
||
|
46.49143981933594,
|
||
|
42.40745162963867,
|
||
|
45.44165802001953,
|
||
|
46.23072814941406,
|
||
|
46.21351623535156,
|
||
|
46.51179122924805,
|
||
|
45.2684440612793,
|
||
|
47.97100067138672,
|
||
|
46.200416564941406,
|
||
|
46.990478515625,
|
||
|
44.46013641357422,
|
||
|
46.0874137878418,
|
||
|
46.61246109008789,
|
||
|
45.41243362426758,
|
||
|
45.27328109741211,
|
||
|
48.57158279418945,
|
||
|
42.75259017944336,
|
||
|
45.49312210083008,
|
||
|
42.31039047241211,
|
||
|
44.82755661010742,
|
||
|
41.65998458862305,
|
||
|
41.24007797241211,
|
||
|
44.86060333251953,
|
||
|
41.914302825927734,
|
||
|
44.09263610839844,
|
||
|
42.509071350097656,
|
||
|
43.533992767333984,
|
||
|
40.360660552978516,
|
||
|
42.83086395263672,
|
||
|
45.10956954956055,
|
||
|
41.839298248291016,
|
||
|
41.313018798828125,
|
||
|
40.65925979614258,
|
||
|
44.944114685058594,
|
||
|
42.18006134033203,
|
||
|
42.95735168457031,
|
||
|
40.95646286010742,
|
||
|
42.22060775756836,
|
||
|
44.648956298828125,
|
||
|
41.977237701416016,
|
||
|
44.50484848022461,
|
||
|
41.04962921142578,
|
||
|
42.6533203125,
|
||
|
41.469730377197266,
|
||
|
39.037147521972656,
|
||
|
41.93611145019531,
|
||
|
40.51498794555664,
|
||
|
41.51823806762695,
|
||
|
41.35941696166992,
|
||
|
39.347896575927734,
|
||
|
38.63611602783203,
|
||
|
41.689903259277344,
|
||
|
42.09865951538086,
|
||
|
27.043455123901367,
|
||
|
42.783653259277344,
|
||
|
40.00210189819336,
|
||
|
31.895565032958984,
|
||
|
38.31216049194336,
|
||
|
36.831912994384766,
|
||
|
40.46940231323242,
|
||
|
41.46623229980469,
|
||
|
39.305721282958984,
|
||
|
36.682830810546875,
|
||
|
34.14884567260742,
|
||
|
34.85221862792969,
|
||
|
34.187957763671875,
|
||
|
37.576595306396484,
|
||
|
41.27716064453125,
|
||
|
34.781707763671875,
|
||
|
38.45759963989258,
|
||
|
36.64885711669922,
|
||
|
35.178897857666016,
|
||
|
37.914329528808594,
|
||
|
36.16289138793945,
|
||
|
41.1313591003418,
|
||
|
38.18597412109375,
|
||
|
33.998023986816406,
|
||
|
31.074739456176758,
|
||
|
37.61913299560547,
|
||
|
32.461299896240234,
|
||
|
33.77253341674805,
|
||
|
39.11001968383789,
|
||
|
40.709598541259766,
|
||
|
25.957172393798828,
|
||
|
36.422584533691406,
|
||
|
38.225223541259766,
|
||
|
35.12091064453125,
|
||
|
38.0933952331543,
|
||
|
35.24466323852539,
|
||
|
26.0914306640625,
|
||
|
36.43592071533203,
|
||
|
35.54178237915039,
|
||
|
35.47091293334961,
|
||
|
28.56871223449707,
|
||
|
36.17863464355469,
|
||
|
38.5890998840332,
|
||
|
36.14960479736328,
|
||
|
38.51544189453125,
|
||
|
30.107574462890625,
|
||
|
32.086360931396484,
|
||
|
35.75983810424805,
|
||
|
39.851959228515625,
|
||
|
33.5084114074707,
|
||
|
29.210182189941406,
|
||
|
30.76070213317871,
|
||
|
36.53584671020508,
|
||
|
33.68453598022461,
|
||
|
34.15534210205078,
|
||
|
38.73222351074219,
|
||
|
36.83988571166992,
|
||
|
26.24851417541504,
|
||
|
31.17825698852539,
|
||
|
36.34291458129883,
|
||
|
34.577030181884766,
|
||
|
35.9774055480957,
|
||
|
40.53108215332031,
|
||
|
25.68182373046875,
|
||
|
23.35549545288086,
|
||
|
34.80885696411133,
|
||
|
32.06321334838867,
|
||
|
29.349639892578125,
|
||
|
34.945152282714844,
|
||
|
37.56573486328125,
|
||
|
22.014541625976562,
|
||
|
35.357139587402344,
|
||
|
29.3277587890625,
|
||
|
10.582418441772461,
|
||
|
31.448177337646484,
|
||
|
34.21879959106445,
|
||
|
29.288864135742188,
|
||
|
29.745813369750977,
|
||
|
32.65827178955078,
|
||
|
27.932754516601562,
|
||
|
25.638959884643555,
|
||
|
32.92283248901367,
|
||
|
34.63149642944336,
|
||
|
28.24813461303711,
|
||
|
32.293827056884766,
|
||
|
11.502050399780273,
|
||
|
29.717561721801758,
|
||
|
34.904354095458984,
|
||
|
27.80439567565918,
|
||
|
38.10359191894531,
|
||
|
36.00727462768555,
|
||
|
24.736888885498047,
|
||
|
24.431758880615234,
|
||
|
17.600200653076172,
|
||
|
29.89333724975586,
|
||
|
20.66994285583496,
|
||
|
19.875268936157227,
|
||
|
32.748138427734375,
|
||
|
22.454978942871094,
|
||
|
33.22058868408203,
|
||
|
28.510417938232422,
|
||
|
31.38287353515625,
|
||
|
12.512896537780762,
|
||
|
14.801020622253418,
|
||
|
14.662283897399902,
|
||
|
30.891284942626953,
|
||
|
7.030458927154541,
|
||
|
26.769649505615234,
|
||
|
23.604393005371094,
|
||
|
16.50547218322754,
|
||
|
24.05034637451172,
|
||
|
30.630348205566406,
|
||
|
31.60717010498047,
|
||
|
28.20281219482422,
|
||
|
20.043729782104492,
|
||
|
17.360233306884766,
|
||
|
28.9813289642334,
|
||
|
28.717784881591797,
|
||
|
32.617183685302734,
|
||
|
23.571500778198242,
|
||
|
21.15860939025879,
|
||
|
21.998048782348633,
|
||
|
19.452991485595703,
|
||
|
25.174100875854492,
|
||
|
31.165746688842773,
|
||
|
19.767053604125977,
|
||
|
16.251325607299805,
|
||
|
3.396317720413208,
|
||
|
24.228721618652344,
|
||
|
27.940933227539062,
|
||
|
2.8245527744293213,
|
||
|
22.89620590209961,
|
||
|
10.796753883361816,
|
||
|
23.438976287841797,
|
||
|
28.59583854675293,
|
||
|
23.258150100708008,
|
||
|
8.672871589660645,
|
||
|
11.712945938110352,
|
||
|
20.942752838134766,
|
||
|
12.777294158935547,
|
||
|
10.988490104675293,
|
||
|
4.839285850524902,
|
||
|
19.16950035095215,
|
||
|
27.51165008544922,
|
||
|
22.893474578857422,
|
||
|
17.611738204956055,
|
||
|
17.364830017089844,
|
||
|
27.120710372924805,
|
||
|
7.777482509613037,
|
||
|
19.6784610748291,
|
||
|
-5.101387023925781,
|
||
|
-1.8944882154464722,
|
||
|
21.84340476989746,
|
||
|
16.73641586303711,
|
||
|
15.962071418762207,
|
||
|
16.017349243164062,
|
||
|
1.375907063484192,
|
||
|
14.968644142150879,
|
||
|
14.927956581115723,
|
||
|
14.22219467163086,
|
||
|
25.59660530090332,
|
||
|
19.906152725219727,
|
||
|
27.278940200805664,
|
||
|
6.981904029846191,
|
||
|
-2.569516181945801,
|
||
|
-3.9207956790924072,
|
||
|
3.6890645027160645,
|
||
|
-2.1666462421417236,
|
||
|
25.529783248901367,
|
||
|
13.4508638381958,
|
||
|
20.199270248413086,
|
||
|
23.153276443481445,
|
||
|
3.9363863468170166,
|
||
|
21.462406158447266,
|
||
|
-1.131355881690979,
|
||
|
-4.816824436187744,
|
||
|
12.328614234924316,
|
||
|
12.402715682983398,
|
||
|
22.080101013183594,
|
||
|
16.088016510009766,
|
||
|
0.8125579953193665,
|
||
|
19.047006607055664,
|
||
|
14.580265045166016,
|
||
|
9.121260643005371,
|
||
|
-0.709651529788971,
|
||
|
12.020042419433594,
|
||
|
18.949691772460938,
|
||
|
20.290178298950195,
|
||
|
10.100149154663086,
|
||
|
8.204445838928223,
|
||
|
21.543258666992188,
|
||
|
22.49587059020996,
|
||
|
-6.332488536834717,
|
||
|
15.679678916931152,
|
||
|
11.168750762939453,
|
||
|
-5.014309406280518,
|
||
|
-19.92595100402832,
|
||
|
20.796951293945312,
|
||
|
18.727537155151367,
|
||
|
24.2628173828125,
|
||
|
-11.880134582519531,
|
||
|
-3.0896992683410645,
|
||
|
5.874338626861572,
|
||
|
3.802568197250366,
|
||
|
-4.062180519104004,
|
||
|
9.6338529586792,
|
||
|
6.508269309997559,
|
||
|
28.02969741821289,
|
||
|
25.052335739135742,
|
||
|
4.925893783569336,
|
||
|
0.32291316986083984,
|
||
|
-4.34801721572876,
|
||
|
3.0495147705078125,
|
||
|
-5.435450553894043,
|
||
|
12.216146469116211,
|
||
|
-4.18273401260376,
|
||
|
12.594642639160156,
|
||
|
9.830131530761719,
|
||
|
1.98593008518219,
|
||
|
6.168694019317627,
|
||
|
-4.251986026763916,
|
||
|
-13.48324966430664,
|
||
|
5.498036861419678,
|
||
|
-0.3011417090892792,
|
||
|
24.799259185791016,
|
||
|
-2.5163681507110596,
|
||
|
-2.178771734237671,
|
||
|
8.897992134094238,
|
||
|
-3.862887382507324,
|
||
|
11.295842170715332,
|
||
|
-4.306849479675293,
|
||
|
-2.6421492099761963,
|
||
|
0.8221456408500671,
|
||
|
-8.092761039733887,
|
||
|
-23.907991409301758,
|
||
|
-12.625020980834961,
|
||
|
9.69816780090332,
|
||
|
1.3998639583587646,
|
||
|
-3.3042638301849365,
|
||
|
18.427663803100586,
|
||
|
21.112760543823242,
|
||
|
-1.4649780988693237,
|
||
|
18.33460235595703,
|
||
|
-0.17253437638282776,
|
||
|
-14.089686393737793,
|
||
|
-26.93787956237793,
|
||
|
-3.5218775272369385,
|
||
|
5.54999303817749,
|
||
|
-5.750216484069824,
|
||
|
11.400650024414062,
|
||
|
-18.817859649658203,
|
||
|
0.5718878507614136,
|
||
|
9.048003196716309,
|
||
|
-6.479709625244141,
|
||
|
-5.378490447998047,
|
||
|
-3.412716865539551,
|
||
|
-9.32796859741211,
|
||
|
6.241555213928223,
|
||
|
-12.50201416015625,
|
||
|
-7.306717872619629,
|
||
|
0.18840564787387848,
|
||
|
-9.970565795898438,
|
||
|
-15.674932479858398,
|
||
|
-2.816251277923584,
|
||
|
11.745173454284668,
|
||
|
0.5869654417037964,
|
||
|
3.5481081008911133,
|
||
|
-7.013427734375,
|
||
|
-2.316269636154175,
|
||
|
7.493319988250732,
|
||
|
13.542080879211426,
|
||
|
-24.507503509521484,
|
||
|
-5.8897857666015625,
|
||
|
-1.7233843803405762,
|
||
|
-1.2592345476150513,
|
||
|
2.646005153656006,
|
||
|
-7.186652660369873,
|
||
|
-1.3450287580490112,
|
||
|
-4.848026752471924,
|
||
|
-4.468411922454834,
|
||
|
-8.409417152404785,
|
||
|
6.532360553741455,
|
||
|
-0.05903683230280876,
|
||
|
-8.672511100769043,
|
||
|
13.67223072052002,
|
||
|
13.278162956237793,
|
||
|
-2.148528814315796,
|
||
|
-13.287014961242676,
|
||
|
6.537975311279297,
|
||
|
-8.98883056640625,
|
||
|
-25.66631507873535,
|
||
|
-28.181867599487305,
|
||
|
-5.845354080200195,
|
||
|
-8.580246925354004,
|
||
|
2.6374170780181885,
|
||
|
-1.255739450454712,
|
||
|
-13.474847793579102,
|
||
|
4.141697883605957,
|
||
|
-10.367467880249023,
|
||
|
-2.752528429031372,
|
||
|
3.942852020263672,
|
||
|
-32.899749755859375,
|
||
|
1.8470438718795776,
|
||
|
17.904550552368164,
|
||
|
-25.13589859008789,
|
||
|
-10.338186264038086,
|
||
|
-15.024421691894531,
|
||
|
-30.41324806213379,
|
||
|
-5.295114040374756,
|
||
|
-1.7121096849441528,
|
||
|
-3.383065938949585,
|
||
|
10.448507308959961,
|
||
|
-8.76252269744873,
|
||
|
-0.9839366674423218,
|
||
|
-29.589252471923828,
|
||
|
-16.037826538085938,
|
||
|
-15.434616088867188,
|
||
|
-8.10566234588623,
|
||
|
7.42305850982666,
|
||
|
-27.632293701171875,
|
||
|
-2.0990631580352783,
|
||
|
-42.058101654052734,
|
||
|
-5.961897850036621,
|
||
|
-5.772668838500977,
|
||
|
-26.135353088378906,
|
||
|
-24.67001724243164,
|
||
|
-15.429718017578125,
|
||
|
5.351548194885254,
|
||
|
-10.818730354309082,
|
||
|
-1.5527962446212769,
|
||
|
0.022377613931894302,
|
||
|
-7.56465482711792,
|
||
|
-25.86635398864746,
|
||
|
-40.273319244384766,
|
||
|
-11.797314643859863,
|
||
|
-12.300193786621094,
|
||
|
-2.735485792160034,
|
||
|
-7.918025016784668,
|
||
|
-5.681797504425049,
|
||
|
-2.3900299072265625,
|
||
|
12.570772171020508,
|
||
|
-9.005373001098633,
|
||
|
5.033017158508301,
|
||
|
-40.41508483886719,
|
||
|
-5.278913974761963,
|
||
|
-22.577316284179688,
|
||
|
16.578216552734375,
|
||
|
14.047621726989746,
|
||
|
-18.889604568481445,
|
||
|
-24.65254020690918,
|
||
|
-1.226033091545105,
|
||
|
-3.9995152950286865,
|
||
|
-24.95517921447754,
|
||
|
-39.92958068847656,
|
||
|
-24.9298095703125,
|
||
|
-35.38284683227539,
|
||
|
-19.663084030151367,
|
||
|
0.2588889002799988,
|
||
|
-31.8934383392334,
|
||
|
-23.538118362426758,
|
||
|
-4.557587146759033,
|
||
|
-9.652289390563965,
|
||
|
-5.532356262207031,
|
||
|
-37.07041931152344,
|
||
|
4.446247100830078,
|
||
|
-10.24144458770752,
|
||
|
-17.854726791381836,
|
||
|
-10.331024169921875,
|
||
|
-13.124765396118164,
|
||
|
-29.07196617126465,
|
||
|
-34.79731750488281,
|
||
|
-23.142013549804688,
|
||
|
-8.483234405517578,
|
||
|
-4.589700222015381,
|
||
|
-0.5938214063644409,
|
||
|
-4.4547576904296875,
|
||
|
-2.9788780212402344,
|
||
|
-10.143019676208496,
|
||
|
-15.684856414794922,
|
||
|
-37.773441314697266,
|
||
|
3.071322441101074,
|
||
|
-14.475650787353516,
|
||
|
-31.27262306213379,
|
||
|
-5.781635284423828,
|
||
|
-23.77141571044922,
|
||
|
-0.9797376394271851,
|
||
|
-3.972991943359375,
|
||
|
-4.048915863037109,
|
||
|
-21.165605545043945,
|
||
|
-26.30059242248535,
|
||
|
-30.796451568603516,
|
||
|
-11.82647705078125,
|
||
|
-35.078208923339844,
|
||
|
-23.150575637817383,
|
||
|
-19.13263511657715,
|
||
|
-33.636104583740234,
|
||
|
-24.12821388244629,
|
||
|
-3.5882761478424072,
|
||
|
-12.8208589553833,
|
||
|
-20.84773826599121,
|
||
|
-19.51899528503418,
|
||
|
-13.042623519897461,
|
||
|
-6.77045202255249,
|
||
|
-25.55100440979004,
|
||
|
-7.8638763427734375,
|
||
|
-12.606151580810547,
|
||
|
-34.24021911621094,
|
||
|
-41.059349060058594,
|
||
|
-9.562129020690918,
|
||
|
-6.510066032409668,
|
||
|
-14.324178695678711,
|
||
|
-23.991159439086914,
|
||
|
-42.543331146240234,
|
||
|
-20.82478141784668,
|
||
|
-19.91961097717285,
|
||
|
-20.919527053833008,
|
||
|
-26.82457160949707,
|
||
|
-24.51287841796875,
|
||
|
-15.194602966308594,
|
||
|
-20.551244735717773,
|
||
|
-13.045443534851074,
|
||
|
-8.428911209106445,
|
||
|
-41.02855682373047,
|
||
|
-21.660968780517578,
|
||
|
-41.25019836425781,
|
||
|
-32.96572494506836,
|
||
|
-12.7081880569458,
|
||
|
-27.644886016845703,
|
||
|
-39.482696533203125,
|
||
|
-6.687131881713867,
|
||
|
-7.788033485412598,
|
||
|
-2.525296926498413,
|
||
|
4.532792568206787,
|
||
|
-17.839887619018555,
|
||
|
-13.580310821533203,
|
||
|
-4.423880577087402,
|
||
|
-12.511228561401367,
|
||
|
-5.941393852233887,
|
||
|
-38.27767562866211,
|
||
|
-24.31386947631836,
|
||
|
-13.176023483276367,
|
||
|
-15.88877010345459,
|
||
|
-37.866451263427734,
|
||
|
-34.38195037841797,
|
||
|
-29.165842056274414,
|
||
|
-5.893733501434326,
|
||
|
-0.6633958220481873,
|
||
|
-40.53752136230469,
|
||
|
-3.00997257232666,
|
||
|
-42.946868896484375,
|
||
|
-21.43092918395996,
|
||
|
-13.925353050231934,
|
||
|
-40.278133392333984,
|
||
|
-39.96219253540039,
|
||
|
-40.72234344482422,
|
||
|
-30.09609603881836,
|
||
|
-5.041470050811768,
|
||
|
-33.65122985839844,
|
||
|
-16.423057556152344,
|
||
|
-41.40262985229492,
|
||
|
-30.726423263549805,
|
||
|
-39.284175872802734,
|
||
|
-29.014034271240234,
|
||
|
-18.26821517944336,
|
||
|
-1.681335210800171,
|
||
|
-35.08098602294922,
|
||
|
-30.619117736816406,
|
||
|
-44.6348762512207,
|
||
|
-34.1077766418457,
|
||
|
-26.97916030883789,
|
||
|
4.740706443786621,
|
||
|
-41.796634674072266,
|
||
|
-26.121187210083008,
|
||
|
-1.7350155115127563,
|
||
|
-32.79930877685547,
|
||
|
-22.68775177001953,
|
||
|
-17.27850341796875,
|
||
|
-4.014743328094482,
|
||
|
-41.92235565185547,
|
||
|
-43.10586166381836,
|
||
|
5.8158698081970215,
|
||
|
1.1675208806991577,
|
||
|
-24.932947158813477,
|
||
|
3.1703693866729736,
|
||
|
-36.23081588745117,
|
||
|
-32.2963752746582,
|
||
|
-39.59604263305664,
|
||
|
-22.17344093322754,
|
||
|
-24.14118766784668,
|
||
|
-39.89999008178711,
|
||
|
-41.8546142578125,
|
||
|
-21.226696014404297,
|
||
|
-41.731285095214844,
|
||
|
-24.548559188842773,
|
||
|
-21.92717933654785,
|
||
|
-44.63084411621094,
|
||
|
-38.08839797973633,
|
||
|
-42.876216888427734,
|
||
|
-35.299560546875,
|
||
|
-35.731727600097656,
|
||
|
-35.99336624145508,
|
||
|
-16.60025978088379,
|
||
|
-14.45335865020752,
|
||
|
-19.8283634185791,
|
||
|
-42.247196197509766,
|
||
|
-35.8027229309082,
|
||
|
-40.5047492980957,
|
||
|
-9.926618576049805,
|
||
|
-31.208454132080078,
|
||
|
-43.45851135253906,
|
||
|
-38.2996711730957,
|
||
|
-24.07625389099121,
|
||
|
-6.087329864501953,
|
||
|
-30.565805435180664,
|
||
|
-19.265766143798828,
|
||
|
-38.83194351196289,
|
||
|
-23.705705642700195,
|
||
|
-37.44486618041992,
|
||
|
-41.093284606933594,
|
||
|
-10.19248104095459,
|
||
|
-40.98809814453125,
|
||
|
-37.118553161621094,
|
||
|
-29.966861724853516,
|
||
|
-21.93187713623047,
|
||
|
-6.654543876647949,
|
||
|
-44.03019714355469,
|
||
|
-16.309555053710938,
|
||
|
-20.348556518554688,
|
||
|
-39.19388198852539,
|
||
|
-13.164348602294922,
|
||
|
-41.154842376708984,
|
||
|
-4.613633632659912,
|
||
|
-31.278669357299805,
|
||
|
-34.85886001586914,
|
||
|
-40.29289245605469,
|
||
|
-31.056047439575195,
|
||
|
-37.55839538574219,
|
||
|
-9.525853157043457,
|
||
|
-29.671701431274414,
|
||
|
-36.471187591552734,
|
||
|
-43.521121978759766,
|
||
|
-44.31345748901367,
|
||
|
-38.84550857543945,
|
||
|
-43.7244987487793,
|
||
|
-41.79648971557617,
|
||
|
-26.051219940185547,
|
||
|
-41.68202590942383,
|
||
|
-1.5977203845977783,
|
||
|
-44.26509094238281,
|
||
|
-41.769283294677734,
|
||
|
-37.44430923461914,
|
||
|
-9.007838249206543,
|
||
|
-27.55449676513672,
|
||
|
-20.565357208251953,
|
||
|
-24.09815788269043,
|
||
|
-32.07070541381836,
|
||
|
-33.211875915527344,
|
||
|
-42.712833404541016,
|
||
|
-22.627656936645508,
|
||
|
-35.18123245239258,
|
||
|
-36.05130386352539,
|
||
|
-40.834228515625,
|
||
|
-35.776100158691406,
|
||
|
-44.29977798461914,
|
||
|
-12.074317932128906,
|
||
|
-40.45212173461914,
|
||
|
-34.05152893066406,
|
||
|
-31.083221435546875,
|
||
|
-42.18227767944336,
|
||
|
-32.914146423339844,
|
||
|
-41.71376037597656,
|
||
|
-44.243125915527344,
|
||
|
-25.2550048828125,
|
||
|
-31.785837173461914,
|
||
|
-37.79682540893555,
|
||
|
-34.165523529052734,
|
||
|
-41.12561798095703,
|
||
|
-34.367183685302734,
|
||
|
-31.72113037109375,
|
||
|
-42.435176849365234,
|
||
|
-3.998422861099243,
|
||
|
-42.309959411621094,
|
||
|
-26.937089920043945,
|
||
|
-37.016326904296875,
|
||
|
-41.7037239074707,
|
||
|
-38.31211471557617,
|
||
|
-42.80319595336914,
|
||
|
-43.22970962524414,
|
||
|
-40.895118713378906,
|
||
|
-35.67498779296875,
|
||
|
-12.072941780090332,
|
||
|
-41.01728820800781,
|
||
|
-32.49264907836914,
|
||
|
-36.22145080566406,
|
||
|
-42.36702346801758,
|
||
|
-42.624916076660156,
|
||
|
-42.140254974365234,
|
||
|
-41.28649139404297,
|
||
|
-42.204959869384766,
|
||
|
-17.886629104614258,
|
||
|
-40.94075012207031,
|
||
|
-42.54806137084961,
|
||
|
-37.20061492919922,
|
||
|
-23.624784469604492,
|
||
|
-28.898880004882812,
|
||
|
-40.591712951660156,
|
||
|
-36.25716018676758,
|
||
|
-40.85445022583008,
|
||
|
-43.78612518310547,
|
||
|
20.269073486328125,
|
||
|
-39.55683135986328,
|
||
|
-43.532447814941406,
|
||
|
-4.194091796875,
|
||
|
-30.161937713623047,
|
||
|
-42.76475143432617,
|
||
|
-14.103876113891602,
|
||
|
-20.652584075927734,
|
||
|
-42.075252532958984,
|
||
|
-41.67771530151367,
|
||
|
-33.0378532409668,
|
||
|
-41.85158920288086,
|
||
|
-38.92103958129883,
|
||
|
7.035429954528809,
|
||
|
-41.76664733886719,
|
||
|
-43.886192321777344,
|
||
|
-37.4324951171875,
|
||
|
-33.8173942565918,
|
||
|
-41.047386169433594,
|
||
|
-32.37033462524414,
|
||
|
-21.208738327026367,
|
||
|
-28.363683700561523,
|
||
|
-25.87489891052246,
|
||
|
-35.98777389526367,
|
||
|
-41.943363189697266,
|
||
|
-24.027605056762695,
|
||
|
-37.79878234863281,
|
||
|
-34.81346893310547,
|
||
|
-41.881195068359375,
|
||
|
-36.782249450683594,
|
||
|
-35.10762023925781,
|
||
|
-33.75252151489258,
|
||
|
-37.263145446777344,
|
||
|
-18.194543838500977,
|
||
|
-38.43478012084961,
|
||
|
-43.50146484375,
|
||
|
-38.160484313964844,
|
||
|
-14.79507064819336,
|
||
|
-17.37240219116211,
|
||
|
-43.85187911987305,
|
||
|
-22.882369995117188,
|
||
|
-31.305585861206055,
|
||
|
-33.4355354309082,
|
||
|
-39.48072052001953,
|
||
|
-41.86021041870117,
|
||
|
-28.82602310180664,
|
||
|
-42.8936767578125,
|
||
|
-30.74363136291504,
|
||
|
-44.08810806274414,
|
||
|
-5.740325927734375,
|
||
|
-31.119596481323242,
|
||
|
-34.1637077331543,
|
||
|
-29.704999923706055,
|
||
|
-16.93458366394043,
|
||
|
-16.60060691833496,
|
||
|
-38.92327117919922,
|
||
|
-29.038389205932617,
|
||
|
16.656429290771484,
|
||
|
-43.63961410522461,
|
||
|
-41.71570587158203,
|
||
|
-22.961034774780273,
|
||
|
-32.03032684326172,
|
||
|
-20.160749435424805,
|
||
|
-29.32081413269043,
|
||
|
-25.990028381347656,
|
||
|
-43.69953155517578,
|
||
|
-9.782618522644043,
|
||
|
-22.678056716918945,
|
||
|
-39.160831451416016,
|
||
|
-36.2221794128418,
|
||
|
-24.91103172302246,
|
||
|
-33.01662063598633,
|
||
|
-31.80876350402832,
|
||
|
-36.000465393066406,
|
||
|
-35.44899368286133,
|
||
|
-43.492286682128906,
|
||
|
-43.86849594116211,
|
||
|
-32.98036193847656,
|
||
|
-26.149507522583008,
|
||
|
-22.715200424194336,
|
||
|
-27.39339256286621,
|
||
|
-37.3925895690918,
|
||
|
-14.669108390808105,
|
||
|
-14.762022972106934,
|
||
|
12.070867538452148,
|
||
|
-43.35622024536133,
|
||
|
-17.54024314880371,
|
||
|
-41.87335968017578,
|
||
|
-43.10627365112305,
|
||
|
-35.84381866455078,
|
||
|
-41.80849838256836,
|
||
|
-42.1817512512207,
|
||
|
-11.610407829284668,
|
||
|
-20.90204429626465,
|
||
|
-42.31815719604492,
|
||
|
-28.026159286499023,
|
||
|
-20.395910263061523,
|
||
|
-43.53836441040039,
|
||
|
-31.87267303466797,
|
||
|
-42.8541259765625,
|
||
|
-24.56821632385254,
|
||
|
3.373640537261963,
|
||
|
16.220014572143555,
|
||
|
-40.74734878540039,
|
||
|
-41.69750213623047,
|
||
|
-17.43598747253418,
|
||
|
-19.951406478881836,
|
||
|
-21.451202392578125,
|
||
|
-20.739215850830078,
|
||
|
-24.502363204956055,
|
||
|
-19.327251434326172,
|
||
|
6.0656046867370605,
|
||
|
-36.41911697387695,
|
||
|
-8.411598205566406,
|
||
|
-34.02356719970703,
|
||
|
-24.383634567260742,
|
||
|
-12.880196571350098,
|
||
|
-19.406890869140625,
|
||
|
-29.690168380737305,
|
||
|
-37.12549591064453,
|
||
|
-37.418548583984375,
|
||
|
-38.62702560424805,
|
||
|
-26.879589080810547,
|
||
|
-35.43998336791992,
|
||
|
-31.988861083984375,
|
||
|
-39.31214904785156,
|
||
|
-39.07609558105469,
|
||
|
-4.974790096282959,
|
||
|
-35.764312744140625,
|
||
|
-24.394765853881836,
|
||
|
-16.241498947143555,
|
||
|
15.375779151916504,
|
||
|
-44.96449661254883,
|
||
|
-5.969682216644287,
|
||
|
-40.32893371582031,
|
||
|
-39.25823211669922,
|
||
|
-35.18067932128906,
|
||
|
-24.108661651611328,
|
||
|
-42.48435592651367,
|
||
|
-39.762489318847656,
|
||
|
-27.764995574951172,
|
||
|
-40.170616149902344,
|
||
|
-10.775045394897461,
|
||
|
-25.38999366760254,
|
||
|
-27.297061920166016,
|
||
|
-40.030601501464844,
|
||
|
-34.002716064453125,
|
||
|
-18.66360092163086,
|
||
|
-26.989065170288086,
|
||
|
-18.068809509277344,
|
||
|
-5.420780658721924,
|
||
|
-35.15644073486328,
|
||
|
-22.794668197631836,
|
||
|
-36.58219528198242,
|
||
|
-39.80963134765625,
|
||
|
-14.204144477844238,
|
||
|
-14.935379028320312,
|
||
|
-19.39570426940918,
|
||
|
-41.466583251953125,
|
||
|
-38.41485595703125,
|
||
|
-26.946428298950195,
|
||
|
-37.980316162109375,
|
||
|
-23.383989334106445,
|
||
|
-39.521018981933594,
|
||
|
-35.08018493652344,
|
||
|
-41.046138763427734,
|
||
|
-0.2664560377597809,
|
||
|
-23.008893966674805,
|
||
|
-8.794400215148926,
|
||
|
6.518185138702393,
|
||
|
-36.5206184387207,
|
||
|
-30.92625617980957,
|
||
|
-36.43979263305664,
|
||
|
-42.131553649902344,
|
||
|
-43.115718841552734,
|
||
|
-41.475704193115234,
|
||
|
-40.5578727722168,
|
||
|
-34.12507629394531,
|
||
|
18.23790168762207,
|
||
|
-40.086761474609375,
|
||
|
19.853988647460938,
|
||
|
-18.121084213256836,
|
||
|
2.010343551635742,
|
||
|
-37.61902618408203,
|
||
|
-25.981348037719727,
|
||
|
-34.10886001586914,
|
||
|
-29.09619903564453,
|
||
|
-24.54006576538086,
|
||
|
-27.569725036621094,
|
||
|
-21.9561767578125,
|
||
|
-37.317073822021484,
|
||
|
-40.06828308105469,
|
||
|
12.085537910461426,
|
||
|
14.373522758483887,
|
||
|
-23.75154685974121,
|
||
|
-26.52082061767578,
|
||
|
-43.253990173339844,
|
||
|
-21.731307983398438,
|
||
|
-28.715396881103516,
|
||
|
-2.5723464488983154,
|
||
|
-43.112159729003906,
|
||
|
18.406997680664062,
|
||
|
-24.216049194335938,
|
||
|
-43.61361312866211,
|
||
|
-41.1642951965332,
|
||
|
-1.362288236618042,
|
||
|
-43.48609161376953,
|
||
|
-41.750144958496094,
|
||
|
-35.63455581665039,
|
||
|
-23.650959014892578,
|
||
|
-15.150032043457031,
|
||
|
-20.605926513671875,
|
||
|
-24.489917755126953,
|
||
|
-13.351399421691895,
|
||
|
-35.16160583496094,
|
||
|
-31.861492156982422,
|
||
|
-2.9399120807647705,
|
||
|
-21.912578582763672,
|
||
|
-40.76713943481445,
|
||
|
-25.264684677124023,
|
||
|
-15.021040916442871,
|
||
|
-15.508384704589844,
|
||
|
-20.734954833984375,
|
||
|
-37.25863265991211,
|
||
|
14.516410827636719,
|
||
|
-34.02248001098633,
|
||
|
-36.48351287841797,
|
||
|
-21.2701473236084,
|
||
|
-22.321331024169922,
|
||
|
-41.812232971191406,
|
||
|
-27.803735733032227,
|
||
|
-16.06999397277832,
|
||
|
13.98250961303711,
|
||
|
-29.31473731994629,
|
||
|
-32.73337173461914,
|
||
|
-15.249588012695312,
|
||
|
-39.221927642822266,
|
||
|
-6.736930847167969,
|
||
|
-42.22239685058594,
|
||
|
-36.46080017089844,
|
||
|
-30.519712448120117,
|
||
|
-30.835968017578125,
|
||
|
-39.00101089477539,
|
||
|
-33.514434814453125,
|
||
|
12.976609230041504,
|
||
|
-40.15140914916992,
|
||
|
-30.972517013549805,
|
||
|
-13.489173889160156,
|
||
|
-41.150901794433594,
|
||
|
-31.45051383972168,
|
||
|
-31.397058486938477,
|
||
|
-39.07955551147461,
|
||
|
-35.103240966796875,
|
||
|
-42.960166931152344,
|
||
|
-12.54828929901123,
|
||
|
-43.236446380615234,
|
||
|
-27.73483657836914,
|
||
|
-16.34161949157715,
|
||
|
0.19363534450531006,
|
||
|
-11.410773277282715,
|
||
|
-21.465171813964844,
|
||
|
14.414817810058594,
|
||
|
-29.524965286254883,
|
||
|
-42.0169792175293,
|
||
|
-13.840551376342773,
|
||
|
-24.72916030883789,
|
||
|
-13.062830924987793,
|
||
|
-24.211158752441406,
|
||
|
6.926121234893799,
|
||
|
-12.623486518859863,
|
||
|
-21.05988121032715,
|
||
|
9.447392463684082,
|
||
|
-26.572582244873047,
|
||
|
-27.94027328491211,
|
||
|
-32.560585021972656,
|
||
|
3.18133282661438,
|
||
|
13.348396301269531,
|
||
|
-5.690432548522949,
|
||
|
15.526551246643066,
|
||
|
-29.06403350830078,
|
||
|
15.670205116271973,
|
||
|
-7.302308082580566,
|
||
|
4.614795207977295,
|
||
|
9.834979057312012,
|
||
|
14.707134246826172,
|
||
|
-42.329734802246094,
|
||
|
-17.698312759399414,
|
||
|
-17.56328010559082,
|
||
|
7.866844654083252,
|
||
|
-18.207399368286133,
|
||
|
-13.257436752319336,
|
||
|
14.614081382751465,
|
||
|
5.31248140335083,
|
||
|
13.514058113098145,
|
||
|
2.1538045406341553,
|
||
|
18.003183364868164,
|
||
|
17.848554611206055,
|
||
|
14.418183326721191,
|
||
|
-4.0415802001953125,
|
||
|
-2.2248997688293457,
|
||
|
-14.848140716552734,
|
||
|
-32.192176818847656,
|
||
|
-23.458438873291016,
|
||
|
10.008930206298828,
|
||
|
10.327077865600586,
|
||
|
-27.727161407470703,
|
||
|
-40.652339935302734,
|
||
|
20.694351196289062,
|
||
|
19.564390182495117,
|
||
|
-29.6370906829834,
|
||
|
-2.4987919330596924,
|
||
|
-39.82231903076172,
|
||
|
-35.870079040527344,
|
||
|
15.610960006713867,
|
||
|
13.983028411865234,
|
||
|
1.536849856376648,
|
||
|
-24.31149673461914,
|
||
|
8.614100456237793,
|
||
|
-22.459800720214844,
|
||
|
-44.70981979370117,
|
||
|
-13.513772010803223,
|
||
|
15.923235893249512,
|
||
|
-13.056265830993652,
|
||
|
-14.930877685546875,
|
||
|
-22.149314880371094,
|
||
|
-21.404626846313477,
|
||
|
19.333850860595703,
|
||
|
15.513920783996582,
|
||
|
-44.235572814941406,
|
||
|
10.451740264892578,
|
||
|
-10.667564392089844,
|
||
|
10.407767295837402,
|
||
|
-25.935577392578125,
|
||
|
19.232954025268555,
|
||
|
-10.648967742919922,
|
||
|
-31.63904571533203,
|
||
|
-11.112330436706543,
|
||
|
-38.151710510253906,
|
||
|
16.087736129760742,
|
||
|
20.555585861206055,
|
||
|
-41.82878494262695,
|
||
|
-3.818098545074463,
|
||
|
-2.6888766288757324,
|
||
|
-33.10346603393555,
|
||
|
-4.767788410186768,
|
||
|
-33.115867614746094,
|
||
|
10.72038459777832,
|
||
|
0.7059686779975891,
|
||
|
14.895405769348145,
|
||
|
14.60958194732666,
|
||
|
16.542964935302734,
|
||
|
13.825385093688965,
|
||
|
-31.007314682006836,
|
||
|
8.431227684020996,
|
||
|
-8.34071159362793,
|
||
|
-15.879709243774414,
|
||
|
-42.27753829956055,
|
||
|
11.909830093383789,
|
||
|
8.511104583740234,
|
||
|
-17.166017532348633,
|
||
|
-20.652231216430664,
|
||
|
-41.715904235839844,
|
||
|
-25.555017471313477,
|
||
|
-32.71678161621094,
|
||
|
-0.23228497803211212,
|
||
|
-22.67511558532715,
|
||
|
-9.002559661865234,
|
||
|
6.481906414031982,
|
||
|
15.515054702758789,
|
||
|
-28.552715301513672,
|
||
|
-33.361907958984375,
|
||
|
-41.573429107666016,
|
||
|
-34.1773567199707,
|
||
|
6.833367824554443,
|
||
|
7.1745147705078125,
|
||
|
-2.82562255859375,
|
||
|
-19.409912109375,
|
||
|
-36.48845291137695,
|
||
|
-30.71256446838379,
|
||
|
-13.6351900100708,
|
||
|
19.51479148864746,
|
||
|
-11.221328735351562,
|
||
|
18.57073402404785,
|
||
|
16.230926513671875,
|
||
|
-25.98771858215332,
|
||
|
11.64193058013916,
|
||
|
-25.29553985595703,
|
||
|
-19.25633430480957,
|
||
|
17.99680519104004,
|
||
|
-24.129945755004883,
|
||
|
-27.539337158203125,
|
||
|
-3.6257426738739014,
|
||
|
18.23870849609375,
|
||
|
13.8888578414917,
|
||
|
16.400226593017578,
|
||
|
-22.66414451599121,
|
||
|
12.394383430480957,
|
||
|
-38.34552764892578,
|
||
|
12.387290954589844,
|
||
|
17.289936065673828,
|
||
|
13.078948974609375,
|
||
|
-22.298458099365234,
|
||
|
-23.596393585205078,
|
||
|
17.413536071777344,
|
||
|
-10.827800750732422,
|
||
|
-17.406200408935547,
|
||
|
-22.297800064086914,
|
||
|
-24.554094314575195,
|
||
|
11.773981094360352,
|
||
|
1.0631130933761597,
|
||
|
6.958885192871094,
|
||
|
-3.782478094100952,
|
||
|
-8.37533950805664,
|
||
|
-40.989013671875,
|
||
|
20.808876037597656,
|
||
|
16.645706176757812,
|
||
|
-16.389171600341797,
|
||
|
13.573049545288086,
|
||
|
4.654014587402344,
|
||
|
-13.450480461120605,
|
||
|
16.277597427368164,
|
||
|
12.820374488830566,
|
||
|
12.106522560119629,
|
||
|
-14.975564956665039,
|
||
|
16.982025146484375,
|
||
|
-35.89668655395508,
|
||
|
17.27878189086914,
|
||
|
-19.473567962646484,
|
||
|
17.395973205566406,
|
||
|
-0.7934587597846985,
|
||
|
11.352950096130371,
|
||
|
-6.593110084533691,
|
||
|
-6.498302936553955,
|
||
|
18.140798568725586,
|
||
|
18.445449829101562,
|
||
|
14.845490455627441,
|
||
|
-29.132230758666992,
|
||
|
-3.540736198425293,
|
||
|
11.308211326599121,
|
||
|
-7.250681400299072,
|
||
|
16.15329360961914,
|
||
|
-16.004169464111328,
|
||
|
13.28084659576416,
|
||
|
-10.079024314880371,
|
||
|
-25.804401397705078,
|
||
|
-20.092090606689453,
|
||
|
3.1194560527801514,
|
||
|
0.4976671040058136,
|
||
|
-2.426044225692749,
|
||
|
19.4737491607666,
|
||
|
-10.066282272338867,
|
||
|
-26.029993057250977,
|
||
|
-8.512757301330566,
|
||
|
-30.14287567138672,
|
||
|
-3.8909430503845215,
|
||
|
-34.01607131958008,
|
||
|
-8.625834465026855,
|
||
|
-34.94457244873047,
|
||
|
0.8719924092292786,
|
||
|
-5.960176944732666,
|
||
|
18.174407958984375,
|
||
|
-30.460529327392578,
|
||
|
-8.471373558044434,
|
||
|
17.206134796142578,
|
||
|
-22.389169692993164,
|
||
|
-25.279844284057617,
|
||
|
15.768336296081543,
|
||
|
21.925275802612305,
|
||
|
3.4931724071502686,
|
||
|
-15.642069816589355,
|
||
|
-17.959026336669922,
|
||
|
-44.56205368041992,
|
||
|
-12.401357650756836,
|
||
|
15.720537185668945,
|
||
|
13.79472541809082,
|
||
|
-5.950397968292236,
|
||
|
-27.35358428955078,
|
||
|
12.02128791809082,
|
||
|
-12.535307884216309,
|
||
|
-1.78125,
|
||
|
4.615275859832764,
|
||
|
3.3887646198272705,
|
||
|
18.52178955078125,
|
||
|
15.356412887573242,
|
||
|
-27.856428146362305,
|
||
|
16.83106231689453,
|
||
|
-18.694713592529297,
|
||
|
-26.3851318359375,
|
||
|
8.867777824401855,
|
||
|
-15.65003776550293,
|
||
|
15.39333438873291,
|
||
|
-10.369153022766113,
|
||
|
19.157560348510742,
|
||
|
5.293838024139404,
|
||
|
17.66036605834961,
|
||
|
6.817149639129639,
|
||
|
12.469813346862793,
|
||
|
17.84719467163086,
|
||
|
-31.30807876586914,
|
||
|
-14.251797676086426,
|
||
|
12.040058135986328,
|
||
|
-37.17964553833008,
|
||
|
-43.1126708984375,
|
||
|
19.364158630371094,
|
||
|
14.832282066345215,
|
||
|
19.63833236694336,
|
||
|
-12.113136291503906,
|
||
|
-22.68865966796875,
|
||
|
-2.687929153442383,
|
||
|
18.254146575927734,
|
||
|
16.29892921447754,
|
||
|
8.481797218322754,
|
||
|
16.92264175415039,
|
||
|
-20.672035217285156,
|
||
|
14.06786060333252,
|
||
|
-15.274435997009277,
|
||
|
17.020002365112305,
|
||
|
-7.801433563232422,
|
||
|
-13.837692260742188,
|
||
|
-40.10544204711914,
|
||
|
-19.799259185791016,
|
||
|
-42.37638473510742,
|
||
|
-42.55463409423828,
|
||
|
-31.28046417236328,
|
||
|
-4.4812822341918945,
|
||
|
4.0585832595825195,
|
||
|
11.06569766998291,
|
||
|
15.79259967803955,
|
||
|
12.950729370117188,
|
||
|
-7.091564178466797,
|
||
|
18.33901596069336,
|
||
|
-43.1643180847168,
|
||
|
-0.7473048567771912,
|
||
|
-11.207581520080566,
|
||
|
-13.280322074890137,
|
||
|
13.329903602600098,
|
||
|
18.786279678344727,
|
||
|
-26.6026611328125,
|
||
|
11.027676582336426,
|
||
|
-21.6418514251709,
|
||
|
19.576454162597656,
|
||
|
12.961506843566895,
|
||
|
18.969594955444336,
|
||
|
-24.110836029052734,
|
||
|
-21.216699600219727,
|
||
|
-41.140464782714844,
|
||
|
15.120824813842773,
|
||
|
0.167510524392128,
|
||
|
-20.61261749267578,
|
||
|
0.9186919927597046,
|
||
|
19.52557373046875,
|
||
|
16.158870697021484,
|
||
|
-1.5507036447525024,
|
||
|
7.3647003173828125,
|
||
|
4.927445888519287,
|
||
|
15.503952026367188,
|
||
|
20.091617584228516,
|
||
|
12.813629150390625,
|
||
|
16.650209426879883,
|
||
|
16.97469139099121,
|
||
|
16.24104118347168,
|
||
|
17.61757469177246,
|
||
|
19.140548706054688,
|
||
|
18.02567481994629,
|
||
|
4.3412933349609375,
|
||
|
0.26985904574394226,
|
||
|
-40.191410064697266,
|
||
|
14.555899620056152,
|
||
|
16.615812301635742,
|
||
|
14.991947174072266,
|
||
|
17.025020599365234,
|
||
|
16.558238983154297,
|
||
|
17.945472717285156,
|
||
|
16.021949768066406,
|
||
|
7.74638032913208,
|
||
|
-9.073362350463867,
|
||
|
14.747026443481445,
|
||
|
-1.2663397789001465,
|
||
|
10.203757286071777,
|
||
|
15.459877967834473,
|
||
|
13.103240013122559,
|
||
|
20.11887550354004,
|
||
|
16.95967674255371,
|
||
|
-13.514925003051758,
|
||
|
2.286881923675537,
|
||
|
8.812860488891602,
|
||
|
-8.992779731750488,
|
||
|
20.24102020263672,
|
||
|
-11.147616386413574,
|
||
|
11.05819320678711,
|
||
|
11.684820175170898,
|
||
|
0.9292328953742981,
|
||
|
17.838882446289062,
|
||
|
-21.985973358154297,
|
||
|
17.940509796142578,
|
||
|
14.673486709594727,
|
||
|
22.142948150634766,
|
||
|
-39.417667388916016,
|
||
|
20.878841400146484,
|
||
|
17.377378463745117,
|
||
|
-20.453935623168945,
|
||
|
15.741691589355469,
|
||
|
9.605655670166016,
|
||
|
20.411752700805664,
|
||
|
-2.9565064907073975,
|
||
|
16.624095916748047,
|
||
|
15.918399810791016,
|
||
|
19.58891487121582,
|
||
|
-4.733530044555664,
|
||
|
-5.736349582672119,
|
||
|
-16.6650447845459,
|
||
|
-3.613558292388916,
|
||
|
-25.73363494873047,
|
||
|
-0.7253060936927795,
|
||
|
8.152132034301758,
|
||
|
-17.243743896484375,
|
||
|
-9.884064674377441,
|
||
|
14.665687561035156,
|
||
|
20.401851654052734,
|
||
|
13.824481010437012,
|
||
|
16.004587173461914,
|
||
|
13.240641593933105,
|
||
|
10.110507011413574,
|
||
|
14.701022148132324,
|
||
|
5.191642761230469,
|
||
|
13.086000442504883,
|
||
|
12.744860649108887,
|
||
|
16.919174194335938,
|
||
|
17.909475326538086,
|
||
|
14.046601295471191,
|
||
|
10.702835083007812,
|
||
|
18.80404281616211,
|
||
|
12.075078964233398,
|
||
|
22.1109676361084,
|
||
|
11.561278343200684,
|
||
|
-12.539297103881836,
|
||
|
-21.692583084106445,
|
||
|
15.399674415588379,
|
||
|
15.3893404006958,
|
||
|
17.422945022583008,
|
||
|
19.200536727905273,
|
||
|
13.2238130569458,
|
||
|
17.78973388671875,
|
||
|
12.374183654785156,
|
||
|
14.721959114074707,
|
||
|
6.894114971160889,
|
||
|
8.559700965881348,
|
||
|
18.769254684448242,
|
||
|
1.4655555486679077,
|
||
|
-39.41444778442383,
|
||
|
0.3819566071033478,
|
||
|
18.264371871948242,
|
||
|
14.877246856689453,
|
||
|
-2.1703362464904785,
|
||
|
-5.689833641052246,
|
||
|
13.996904373168945,
|
||
|
5.461162567138672,
|
||
|
17.535594940185547,
|
||
|
14.524679183959961,
|
||
|
-11.595670700073242,
|
||
|
17.196022033691406,
|
||
|
13.75349235534668,
|
||
|
15.083198547363281,
|
||
|
11.993057250976562,
|
||
|
14.96839427947998,
|
||
|
12.653972625732422,
|
||
|
13.043002128601074,
|
||
|
2.4303760528564453,
|
||
|
12.816990852355957,
|
||
|
7.2079291343688965,
|
||
|
2.016390323638916,
|
||
|
-4.814555644989014,
|
||
|
15.641650199890137,
|
||
|
16.52364158630371,
|
||
|
18.576602935791016,
|
||
|
-14.332964897155762,
|
||
|
4.1661882400512695,
|
||
|
17.126487731933594,
|
||
|
16.641857147216797,
|
||
|
12.677860260009766,
|
||
|
20.027721405029297,
|
||
|
17.158063888549805,
|
||
|
-31.05597496032715,
|
||
|
13.897892951965332,
|
||
|
10.02116584777832,
|
||
|
-16.200572967529297,
|
||
|
14.066634178161621,
|
||
|
15.755280494689941,
|
||
|
17.003307342529297,
|
||
|
18.913881301879883,
|
||
|
12.782252311706543,
|
||
|
21.84864616394043,
|
||
|
-8.14935302734375,
|
||
|
13.817567825317383,
|
||
|
8.67026424407959,
|
||
|
15.560332298278809,
|
||
|
5.633285999298096,
|
||
|
18.91143035888672,
|
||
|
-27.044340133666992,
|
||
|
-3.0651965141296387,
|
||
|
20.957773208618164,
|
||
|
15.867989540100098,
|
||
|
19.150405883789062,
|
||
|
12.18272590637207,
|
||
|
12.967803955078125,
|
||
|
-0.46322178840637207,
|
||
|
13.741462707519531,
|
||
|
-11.409259796142578,
|
||
|
-31.69803237915039,
|
||
|
-21.37320899963379,
|
||
|
-28.541637420654297,
|
||
|
-7.186208248138428,
|
||
|
18.751062393188477,
|
||
|
15.368409156799316,
|
||
|
20.240398406982422,
|
||
|
8.271390914916992,
|
||
|
12.132261276245117,
|
||
|
17.422893524169922,
|
||
|
15.441287994384766,
|
||
|
-3.043830633163452,
|
||
|
13.401395797729492,
|
||
|
20.62704849243164,
|
||
|
15.148282051086426,
|
||
|
13.4481840133667,
|
||
|
-11.860329627990723,
|
||
|
17.21822166442871,
|
||
|
5.674334526062012,
|
||
|
19.619760513305664,
|
||
|
-30.314638137817383,
|
||
|
12.125276565551758,
|
||
|
5.025815010070801,
|
||
|
14.708664894104004,
|
||
|
12.921896934509277,
|
||
|
20.05259132385254,
|
||
|
-11.793943405151367,
|
||
|
17.1818904876709,
|
||
|
-15.969683647155762,
|
||
|
18.304332733154297,
|
||
|
-12.654415130615234,
|
||
|
16.29383659362793,
|
||
|
18.34208869934082,
|
||
|
12.700809478759766,
|
||
|
17.289642333984375,
|
||
|
-5.8872294425964355,
|
||
|
-2.70464825630188,
|
||
|
11.59748649597168,
|
||
|
16.606365203857422,
|
||
|
11.993453025817871,
|
||
|
17.72352409362793,
|
||
|
17.229543685913086,
|
||
|
18.545997619628906,
|
||
|
13.07172966003418,
|
||
|
13.745800018310547,
|
||
|
1.1061216592788696,
|
||
|
16.078948974609375,
|
||
|
12.40340518951416,
|
||
|
20.14421272277832,
|
||
|
16.402578353881836,
|
||
|
16.30287742614746,
|
||
|
16.2094669342041,
|
||
|
17.68648910522461,
|
||
|
11.826569557189941,
|
||
|
21.182640075683594,
|
||
|
20.326269149780273,
|
||
|
-6.324330806732178,
|
||
|
14.644148826599121,
|
||
|
16.941864013671875,
|
||
|
6.308233261108398,
|
||
|
9.364777565002441,
|
||
|
13.512564659118652,
|
||
|
17.986114501953125,
|
||
|
17.895912170410156,
|
||
|
-1.3694700002670288,
|
||
|
14.021147727966309,
|
||
|
16.85702133178711,
|
||
|
12.88155460357666,
|
||
|
16.485109329223633,
|
||
|
19.08448600769043,
|
||
|
16.787111282348633,
|
||
|
13.407344818115234,
|
||
|
18.706844329833984,
|
||
|
18.00078010559082,
|
||
|
13.136092185974121,
|
||
|
2.954962730407715,
|
||
|
-9.850265502929688,
|
||
|
13.60261058807373,
|
||
|
18.940216064453125,
|
||
|
18.40359878540039,
|
||
|
15.389754295349121,
|
||
|
18.094736099243164,
|
||
|
4.858111381530762,
|
||
|
13.429743766784668,
|
||
|
14.437625885009766,
|
||
|
4.312036991119385,
|
||
|
18.552526473999023,
|
||
|
17.99834632873535,
|
||
|
14.655762672424316,
|
||
|
17.565176010131836,
|
||
|
15.068479537963867,
|
||
|
17.11087989807129,
|
||
|
4.738770484924316,
|
||
|
15.639978408813477,
|
||
|
17.031692504882812,
|
||
|
14.19282341003418,
|
||
|
3.2470126152038574,
|
||
|
16.034337997436523,
|
||
|
16.064443588256836,
|
||
|
11.695161819458008,
|
||
|
15.092409133911133,
|
||
|
0.9290021061897278,
|
||
|
18.148353576660156,
|
||
|
13.858479499816895,
|
||
|
16.766250610351562,
|
||
|
18.861196517944336,
|
||
|
17.41465950012207,
|
||
|
1.5971808433532715,
|
||
|
16.919675827026367,
|
||
|
17.73276710510254,
|
||
|
13.982844352722168,
|
||
|
4.711586952209473,
|
||
|
12.132767677307129,
|
||
|
15.255228042602539,
|
||
|
16.26958656311035,
|
||
|
-8.431922912597656,
|
||
|
16.297395706176758,
|
||
|
13.003973007202148,
|
||
|
17.281179428100586,
|
||
|
-25.983675003051758,
|
||
|
11.811905860900879,
|
||
|
4.486342906951904,
|
||
|
13.843539237976074,
|
||
|
17.13644790649414,
|
||
|
15.984420776367188,
|
||
|
15.948397636413574,
|
||
|
12.286062240600586,
|
||
|
14.307060241699219,
|
||
|
-4.524139881134033,
|
||
|
16.821577072143555,
|
||
|
15.24530029296875,
|
||
|
16.094650268554688,
|
||
|
-24.884624481201172,
|
||
|
20.101181030273438,
|
||
|
7.328110694885254,
|
||
|
12.477763175964355,
|
||
|
13.233895301818848,
|
||
|
18.942237854003906,
|
||
|
15.1333646774292,
|
||
|
21.46831512451172,
|
||
|
13.520509719848633,
|
||
|
16.798200607299805,
|
||
|
12.944096565246582,
|
||
|
13.178742408752441,
|
||
|
19.05801773071289,
|
||
|
17.485475540161133,
|
||
|
14.933487892150879,
|
||
|
11.424561500549316,
|
||
|
16.582944869995117,
|
||
|
-20.990041732788086,
|
||
|
10.924471855163574,
|
||
|
19.86696434020996,
|
||
|
10.012815475463867,
|
||
|
10.876609802246094,
|
||
|
-20.979604721069336,
|
||
|
-38.852684020996094,
|
||
|
14.932459831237793,
|
||
|
2.2720351219177246,
|
||
|
19.820890426635742,
|
||
|
13.817667961120605,
|
||
|
18.125930786132812,
|
||
|
19.746925354003906,
|
||
|
18.745296478271484,
|
||
|
12.745941162109375,
|
||
|
17.097501754760742,
|
||
|
12.68868637084961,
|
||
|
-4.133525848388672,
|
||
|
17.677566528320312,
|
||
|
19.782190322875977,
|
||
|
1.4685680866241455,
|
||
|
18.30091094970703,
|
||
|
15.053689002990723,
|
||
|
16.44786834716797,
|
||
|
12.200652122497559,
|
||
|
12.217110633850098,
|
||
|
16.729169845581055,
|
||
|
11.95518684387207,
|
||
|
19.729450225830078,
|
||
|
-11.575225830078125,
|
||
|
18.67896842956543,
|
||
|
17.50966453552246,
|
||
|
10.939913749694824,
|
||
|
2.2840611934661865,
|
||
|
17.26348114013672,
|
||
|
11.287184715270996,
|
||
|
13.362360954284668,
|
||
|
11.030060768127441,
|
||
|
19.612266540527344,
|
||
|
11.507951736450195,
|
||
|
14.827805519104004,
|
||
|
12.721471786499023,
|
||
|
18.339860916137695,
|
||
|
16.247228622436523,
|
||
|
18.320344924926758,
|
||
|
5.80804967880249,
|
||
|
14.505548477172852,
|
||
|
14.826659202575684,
|
||
|
-18.805932998657227,
|
||
|
12.784674644470215,
|
||
|
12.495530128479004,
|
||
|
13.673418998718262,
|
||
|
16.27108383178711,
|
||
|
16.324922561645508,
|
||
|
20.433393478393555,
|
||
|
15.505782127380371,
|
||
|
14.4862642288208,
|
||
|
8.019521713256836,
|
||
|
15.286312103271484,
|
||
|
13.198068618774414,
|
||
|
15.395462036132812,
|
||
|
8.420760154724121,
|
||
|
13.610604286193848,
|
||
|
7.849913597106934,
|
||
|
16.61592674255371,
|
||
|
10.99950885772705,
|
||
|
5.220545291900635,
|
||
|
2.1934654712677,
|
||
|
14.887455940246582,
|
||
|
17.639787673950195,
|
||
|
15.987712860107422,
|
||
|
16.844892501831055,
|
||
|
14.925066947937012,
|
||
|
18.56353759765625,
|
||
|
14.901029586791992,
|
||
|
15.19859504699707,
|
||
|
13.533392906188965,
|
||
|
18.537395477294922,
|
||
|
14.416799545288086,
|
||
|
17.09711265563965,
|
||
|
16.26275634765625,
|
||
|
18.748294830322266,
|
||
|
9.640519142150879,
|
||
|
14.67723274230957,
|
||
|
8.129822731018066,
|
||
|
3.5063109397888184,
|
||
|
12.7329683303833,
|
||
|
12.380045890808105,
|
||
|
13.368912696838379,
|
||
|
8.993097305297852,
|
||
|
14.544848442077637,
|
||
|
18.354019165039062,
|
||
|
9.706897735595703,
|
||
|
2.528474807739258,
|
||
|
15.816697120666504,
|
||
|
17.451305389404297,
|
||
|
14.669095039367676,
|
||
|
18.598915100097656,
|
||
|
16.254539489746094,
|
||
|
19.431591033935547,
|
||
|
14.133681297302246,
|
||
|
18.92610740661621,
|
||
|
1.8663034439086914,
|
||
|
10.7261323928833,
|
||
|
10.336134910583496,
|
||
|
-3.960442304611206,
|
||
|
18.529237747192383,
|
||
|
15.59035873413086,
|
||
|
13.250802040100098,
|
||
|
4.5634236335754395,
|
||
|
14.81945514678955,
|
||
|
14.958565711975098,
|
||
|
11.344962120056152,
|
||
|
12.539532661437988,
|
||
|
-19.889209747314453,
|
||
|
20.946863174438477,
|
||
|
9.683111190795898,
|
||
|
16.765565872192383,
|
||
|
14.37045955657959,
|
||
|
11.853662490844727,
|
||
|
15.65388298034668,
|
||
|
16.083345413208008,
|
||
|
19.712862014770508,
|
||
|
22.391555786132812,
|
||
|
-15.648879051208496,
|
||
|
15.282729148864746,
|
||
|
17.939085006713867,
|
||
|
16.276195526123047,
|
||
|
4.8847737312316895,
|
||
|
15.197946548461914,
|
||
|
15.53532886505127,
|
||
|
17.225454330444336,
|
||
|
15.951301574707031,
|
||
|
15.116379737854004,
|
||
|
14.134431838989258,
|
||
|
17.105920791625977,
|
||
|
-0.9730038642883301,
|
||
|
17.9863224029541,
|
||
|
16.26527976989746,
|
||
|
21.872600555419922,
|
||
|
16.483734130859375,
|
||
|
15.557856559753418,
|
||
|
19.025484085083008,
|
||
|
15.532951354980469,
|
||
|
14.914291381835938,
|
||
|
11.16533088684082,
|
||
|
15.512496948242188,
|
||
|
21.877260208129883,
|
||
|
14.077467918395996,
|
||
|
15.717975616455078,
|
||
|
19.465803146362305,
|
||
|
14.665022850036621,
|
||
|
13.785664558410645,
|
||
|
15.992783546447754,
|
||
|
-9.371797561645508,
|
||
|
11.624258995056152,
|
||
|
16.844017028808594,
|
||
|
11.976239204406738,
|
||
|
22.175928115844727,
|
||
|
19.203903198242188,
|
||
|
14.82677173614502,
|
||
|
16.287818908691406,
|
||
|
3.5435309410095215,
|
||
|
14.067737579345703,
|
||
|
14.984556198120117,
|
||
|
16.84646224975586,
|
||
|
19.970855712890625,
|
||
|
13.851318359375,
|
||
|
3.7226083278656006,
|
||
|
19.447059631347656,
|
||
|
14.69611644744873,
|
||
|
11.191829681396484,
|
||
|
16.086280822753906,
|
||
|
15.151299476623535,
|
||
|
-6.234736442565918,
|
||
|
15.013522148132324,
|
||
|
10.13237190246582,
|
||
|
13.301623344421387,
|
||
|
13.937287330627441,
|
||
|
16.56014060974121,
|
||
|
-13.51519775390625
|
||
|
],
|
||
|
"y": [
|
||
|
-8.106649398803711,
|
||
|
-4.0797295570373535,
|
||
|
-5.5700812339782715,
|
||
|
-3.867706537246704,
|
||
|
-6.030357360839844,
|
||
|
-14.030059814453125,
|
||
|
-5.52286958694458,
|
||
|
-4.867415904998779,
|
||
|
-4.803206920623779,
|
||
|
-11.707564353942871,
|
||
|
-8.039586067199707,
|
||
|
-4.41152286529541,
|
||
|
-5.930084705352783,
|
||
|
-11.203876495361328,
|
||
|
-5.4412336349487305,
|
||
|
-9.854260444641113,
|
||
|
-10.866800308227539,
|
||
|
-5.215902805328369,
|
||
|
-4.203866481781006,
|
||
|
-5.862831115722656,
|
||
|
-4.504446506500244,
|
||
|
-7.457108497619629,
|
||
|
-3.8369626998901367,
|
||
|
-3.9614434242248535,
|
||
|
-8.927687644958496,
|
||
|
-13.810839653015137,
|
||
|
-4.58323335647583,
|
||
|
-5.622986316680908,
|
||
|
-11.513288497924805,
|
||
|
-6.168510913848877,
|
||
|
-5.344440937042236,
|
||
|
-7.714611053466797,
|
||
|
-3.641413927078247,
|
||
|
-5.056465148925781,
|
||
|
-7.3240180015563965,
|
||
|
-13.494999885559082,
|
||
|
-9.390833854675293,
|
||
|
-10.57769775390625,
|
||
|
-13.582695960998535,
|
||
|
-8.54619312286377,
|
||
|
-8.055229187011719,
|
||
|
-8.995048522949219,
|
||
|
-17.38835334777832,
|
||
|
-7.15553092956543,
|
||
|
-13.886601448059082,
|
||
|
-4.765832424163818,
|
||
|
-10.94620132446289,
|
||
|
-9.919781684875488,
|
||
|
-12.193607330322266,
|
||
|
-8.098418235778809,
|
||
|
-10.97835636138916,
|
||
|
-18.113433837890625,
|
||
|
-11.768909454345703,
|
||
|
-10.152374267578125,
|
||
|
-9.630043983459473,
|
||
|
-9.601964950561523,
|
||
|
-11.095555305480957,
|
||
|
-6.227451324462891,
|
||
|
-10.42043685913086,
|
||
|
-8.5801420211792,
|
||
|
-13.385287284851074,
|
||
|
-11.02581787109375,
|
||
|
-9.805929183959961,
|
||
|
-12.315871238708496,
|
||
|
-12.627147674560547,
|
||
|
-6.080791473388672,
|
||
|
-18.182880401611328,
|
||
|
-11.820270538330078,
|
||
|
-18.392925262451172,
|
||
|
-13.458209037780762,
|
||
|
-19.494041442871094,
|
||
|
-21.9294376373291,
|
||
|
-13.156784057617188,
|
||
|
-19.327627182006836,
|
||
|
-14.70901870727539,
|
||
|
-18.04018783569336,
|
||
|
-15.919440269470215,
|
||
|
-22.0186824798584,
|
||
|
-17.412090301513672,
|
||
|
-12.441046714782715,
|
||
|
-19.61235237121582,
|
||
|
-20.037704467773438,
|
||
|
-21.22252655029297,
|
||
|
-12.387999534606934,
|
||
|
-20.448848724365234,
|
||
|
-17.11802101135254,
|
||
|
-20.90997314453125,
|
||
|
-18.62417984008789,
|
||
|
-13.605620384216309,
|
||
|
-19.459821701049805,
|
||
|
-13.922911643981934,
|
||
|
-20.778995513916016,
|
||
|
-17.69593620300293,
|
||
|
-21.38939094543457,
|
||
|
-23.96851348876953,
|
||
|
-20.86487579345703,
|
||
|
-21.67003631591797,
|
||
|
-19.550722122192383,
|
||
|
-20.246925354003906,
|
||
|
-23.504169464111328,
|
||
|
-24.53717041015625,
|
||
|
-19.742252349853516,
|
||
|
-18.887598037719727,
|
||
|
-37.70439529418945,
|
||
|
-17.45496940612793,
|
||
|
-22.51595687866211,
|
||
|
-33.02799987792969,
|
||
|
-24.809534072875977,
|
||
|
-27.508502960205078,
|
||
|
-21.816879272460938,
|
||
|
-20.10969352722168,
|
||
|
-23.577041625976562,
|
||
|
-27.379690170288086,
|
||
|
-29.58938217163086,
|
||
|
-28.17897605895996,
|
||
|
-30.61107635498047,
|
||
|
-26.207056045532227,
|
||
|
-20.51251983642578,
|
||
|
-30.337827682495117,
|
||
|
-25.33687973022461,
|
||
|
-29.314029693603516,
|
||
|
-30.15930938720703,
|
||
|
-25.23958396911621,
|
||
|
-26.94390106201172,
|
||
|
-20.447128295898438,
|
||
|
-24.980138778686523,
|
||
|
-31.134849548339844,
|
||
|
-34.12885284423828,
|
||
|
-25.725557327270508,
|
||
|
-32.91387176513672,
|
||
|
-31.499731063842773,
|
||
|
-23.856840133666992,
|
||
|
-21.323293685913086,
|
||
|
-38.7148551940918,
|
||
|
-28.020063400268555,
|
||
|
-25.35002899169922,
|
||
|
-29.308170318603516,
|
||
|
-25.60286521911621,
|
||
|
-29.541851043701172,
|
||
|
-38.574668884277344,
|
||
|
-28.050439834594727,
|
||
|
-28.29437255859375,
|
||
|
-29.305299758911133,
|
||
|
-36.55950164794922,
|
||
|
-27.621004104614258,
|
||
|
-25.001197814941406,
|
||
|
-28.150978088378906,
|
||
|
-24.747060775756836,
|
||
|
-35.36695861816406,
|
||
|
-33.44856262207031,
|
||
|
-28.758785247802734,
|
||
|
-22.760360717773438,
|
||
|
-31.093168258666992,
|
||
|
-35.71854782104492,
|
||
|
-34.27486038208008,
|
||
|
-27.780054092407227,
|
||
|
-31.132709503173828,
|
||
|
-30.58637046813965,
|
||
|
-24.446746826171875,
|
||
|
-27.17142677307129,
|
||
|
-38.48392105102539,
|
||
|
-34.19249725341797,
|
||
|
-28.05775260925293,
|
||
|
-30.32908821105957,
|
||
|
-28.049196243286133,
|
||
|
-21.596303939819336,
|
||
|
-39.09452819824219,
|
||
|
-40.494441986083984,
|
||
|
-29.632715225219727,
|
||
|
-32.41034698486328,
|
||
|
-35.95976257324219,
|
||
|
-29.58963394165039,
|
||
|
-26.11709976196289,
|
||
|
-40.177978515625,
|
||
|
-29.054244995117188,
|
||
|
-35.85776138305664,
|
||
|
-45.66863250732422,
|
||
|
-33.71461486816406,
|
||
|
-30.11586570739746,
|
||
|
-36.01698303222656,
|
||
|
-35.281429290771484,
|
||
|
-32.3899040222168,
|
||
|
-36.7845344543457,
|
||
|
-38.78813171386719,
|
||
|
-32.22611618041992,
|
||
|
-30.247638702392578,
|
||
|
-36.91368865966797,
|
||
|
-32.73212432861328,
|
||
|
-45.28376388549805,
|
||
|
-35.42702102661133,
|
||
|
-29.62142562866211,
|
||
|
-37.232357025146484,
|
||
|
-25.311721801757812,
|
||
|
-28.231157302856445,
|
||
|
-39.52024459838867,
|
||
|
-39.83149337768555,
|
||
|
-43.887569427490234,
|
||
|
-35.13890838623047,
|
||
|
-42.443294525146484,
|
||
|
-43.5329704284668,
|
||
|
-32.215789794921875,
|
||
|
-41.336883544921875,
|
||
|
-31.743257522583008,
|
||
|
-36.322296142578125,
|
||
|
-33.765159606933594,
|
||
|
-45.08739471435547,
|
||
|
-45.15410232543945,
|
||
|
-44.18000411987305,
|
||
|
-34.34127426147461,
|
||
|
-44.80274200439453,
|
||
|
-38.084815979003906,
|
||
|
-40.871238708496094,
|
||
|
-43.760154724121094,
|
||
|
-40.354923248291016,
|
||
|
-34.55510711669922,
|
||
|
-33.463741302490234,
|
||
|
-36.91561508178711,
|
||
|
-42.56072235107422,
|
||
|
-43.4011116027832,
|
||
|
-36.37561798095703,
|
||
|
-36.55927658081055,
|
||
|
-32.46245574951172,
|
||
|
-40.34617614746094,
|
||
|
-41.864376068115234,
|
||
|
-41.34614944458008,
|
||
|
-42.46294021606445,
|
||
|
-39.418033599853516,
|
||
|
-33.866981506347656,
|
||
|
-42.93840026855469,
|
||
|
-44.41432189941406,
|
||
|
-43.97084426879883,
|
||
|
-39.993717193603516,
|
||
|
-37.86738204956055,
|
||
|
-43.32441711425781,
|
||
|
-41.8730354309082,
|
||
|
-45.29291915893555,
|
||
|
-40.767818450927734,
|
||
|
-36.278499603271484,
|
||
|
-40.34502410888672,
|
||
|
-45.323341369628906,
|
||
|
-45.57259750366211,
|
||
|
-42.24582290649414,
|
||
|
-44.9766845703125,
|
||
|
-45.92983627319336,
|
||
|
-44.45246124267578,
|
||
|
-43.28125,
|
||
|
-37.31731033325195,
|
||
|
-40.32667922973633,
|
||
|
-43.70051193237305,
|
||
|
-43.789398193359375,
|
||
|
-37.79559326171875,
|
||
|
-44.60905838012695,
|
||
|
-42.49692153930664,
|
||
|
-29.31496810913086,
|
||
|
-39.045345306396484,
|
||
|
-41.44490051269531,
|
||
|
-44.22585678100586,
|
||
|
-44.102691650390625,
|
||
|
-44.55317306518555,
|
||
|
-42.47003936767578,
|
||
|
-44.81319808959961,
|
||
|
-44.528602600097656,
|
||
|
-45.09684753417969,
|
||
|
-38.960113525390625,
|
||
|
-42.49010467529297,
|
||
|
-37.68947219848633,
|
||
|
-44.5283088684082,
|
||
|
-34.02785110473633,
|
||
|
-33.27439880371094,
|
||
|
-43.24098587036133,
|
||
|
-36.03624725341797,
|
||
|
-39.03629684448242,
|
||
|
-44.91706848144531,
|
||
|
-42.61662673950195,
|
||
|
-40.80453109741211,
|
||
|
-45.134273529052734,
|
||
|
-41.98299026489258,
|
||
|
-39.08639144897461,
|
||
|
-29.73696517944336,
|
||
|
-45.75651168823242,
|
||
|
-45.29119873046875,
|
||
|
-41.73332595825195,
|
||
|
-43.91177749633789,
|
||
|
-41.8415641784668,
|
||
|
-43.20351028442383,
|
||
|
-44.86699676513672,
|
||
|
-45.64988327026367,
|
||
|
-39.819759368896484,
|
||
|
-45.657623291015625,
|
||
|
-43.02996826171875,
|
||
|
-42.15339279174805,
|
||
|
-45.121864318847656,
|
||
|
-45.274749755859375,
|
||
|
-41.72128677368164,
|
||
|
-41.224735260009766,
|
||
|
-29.393795013427734,
|
||
|
-44.42255401611328,
|
||
|
-45.43940734863281,
|
||
|
-32.23686218261719,
|
||
|
-21.357120513916016,
|
||
|
-41.80366516113281,
|
||
|
-42.960269927978516,
|
||
|
-39.923728942871094,
|
||
|
-21.098249435424805,
|
||
|
-35.94165802001953,
|
||
|
-44.51243591308594,
|
||
|
-43.64555740356445,
|
||
|
-35.52498245239258,
|
||
|
-44.88747024536133,
|
||
|
-45.03994369506836,
|
||
|
-37.02201843261719,
|
||
|
-39.31266403198242,
|
||
|
-44.16254806518555,
|
||
|
-41.158546447753906,
|
||
|
-35.564727783203125,
|
||
|
-43.966548919677734,
|
||
|
-31.119592666625977,
|
||
|
-44.89957809448242,
|
||
|
-30.582216262817383,
|
||
|
-44.791236877441406,
|
||
|
-45.6071662902832,
|
||
|
-42.55123519897461,
|
||
|
-44.7157096862793,
|
||
|
-34.54444885253906,
|
||
|
-22.54642677307129,
|
||
|
-44.5150032043457,
|
||
|
-40.46537399291992,
|
||
|
-39.625614166259766,
|
||
|
-37.052677154541016,
|
||
|
-37.07511901855469,
|
||
|
-44.998085021972656,
|
||
|
-31.78484344482422,
|
||
|
-44.91446304321289,
|
||
|
-33.507415771484375,
|
||
|
-37.2509765625,
|
||
|
-41.14845275878906,
|
||
|
-26.57891845703125,
|
||
|
-17.75631332397461,
|
||
|
-20.679763793945312,
|
||
|
-45.16971969604492,
|
||
|
-41.4683952331543,
|
||
|
-35.289615631103516,
|
||
|
-43.08803176879883,
|
||
|
-41.99776840209961,
|
||
|
-39.607391357421875,
|
||
|
-43.51673889160156,
|
||
|
-39.5803337097168,
|
||
|
-20.690107345581055,
|
||
|
-19.50855255126953,
|
||
|
-35.11050033569336,
|
||
|
-43.61982727050781,
|
||
|
-31.067768096923828,
|
||
|
-44.77857208251953,
|
||
|
-19.701194763183594,
|
||
|
-41.43378448486328,
|
||
|
-44.87157440185547,
|
||
|
-28.618661880493164,
|
||
|
-32.000328063964844,
|
||
|
-34.675987243652344,
|
||
|
-24.002378463745117,
|
||
|
-44.339447021484375,
|
||
|
-23.182849884033203,
|
||
|
-25.542829513549805,
|
||
|
-41.21945571899414,
|
||
|
-22.737564086914062,
|
||
|
-20.220809936523438,
|
||
|
-35.79691696166992,
|
||
|
-45.05466079711914,
|
||
|
-41.06209182739258,
|
||
|
-43.5328254699707,
|
||
|
-26.467580795288086,
|
||
|
-37.548370361328125,
|
||
|
-44.85207748413086,
|
||
|
-44.66870880126953,
|
||
|
-17.76587677001953,
|
||
|
-29.415430068969727,
|
||
|
-36.77516174316406,
|
||
|
-37.638580322265625,
|
||
|
-42.803829193115234,
|
||
|
-25.548221588134766,
|
||
|
-37.57468032836914,
|
||
|
-30.151290893554688,
|
||
|
-32.635719299316406,
|
||
|
-25.386119842529297,
|
||
|
-45.37520217895508,
|
||
|
-39.963680267333984,
|
||
|
-23.682376861572266,
|
||
|
-45.015174865722656,
|
||
|
-45.27297592163086,
|
||
|
-34.814796447753906,
|
||
|
-21.506629943847656,
|
||
|
-44.31400680541992,
|
||
|
-24.444515228271484,
|
||
|
-19.99305534362793,
|
||
|
-18.35586166381836,
|
||
|
-28.608840942382812,
|
||
|
-25.639972686767578,
|
||
|
-42.79490661621094,
|
||
|
-39.96681213378906,
|
||
|
-21.44586944580078,
|
||
|
-43.94939422607422,
|
||
|
-24.115930557250977,
|
||
|
-35.56271743774414,
|
||
|
-43.37630081176758,
|
||
|
-17.021867752075195,
|
||
|
-42.101097106933594,
|
||
|
-43.57603073120117,
|
||
|
-17.964475631713867,
|
||
|
-23.398893356323242,
|
||
|
-21.80935287475586,
|
||
|
-17.893545150756836,
|
||
|
-30.503164291381836,
|
||
|
-38.8246955871582,
|
||
|
-34.40252685546875,
|
||
|
-44.84563064575195,
|
||
|
-24.749929428100586,
|
||
|
-38.297523498535156,
|
||
|
-19.47010612487793,
|
||
|
-19.72770118713379,
|
||
|
-21.559864044189453,
|
||
|
-26.04152488708496,
|
||
|
-44.921688079833984,
|
||
|
-18.67369270324707,
|
||
|
-35.77146530151367,
|
||
|
-0.48038944602012634,
|
||
|
-28.361988067626953,
|
||
|
-30.5255126953125,
|
||
|
-20.533008575439453,
|
||
|
-18.83926010131836,
|
||
|
-19.831626892089844,
|
||
|
-44.31766128540039,
|
||
|
-23.283212661743164,
|
||
|
-38.79369354248047,
|
||
|
-40.508445739746094,
|
||
|
-27.200138092041016,
|
||
|
-20.546674728393555,
|
||
|
-11.98454475402832,
|
||
|
-22.05143165588379,
|
||
|
-22.51729965209961,
|
||
|
-36.3072509765625,
|
||
|
-25.139549255371094,
|
||
|
-28.674339294433594,
|
||
|
-35.21719741821289,
|
||
|
-45.34605026245117,
|
||
|
-23.391199111938477,
|
||
|
-43.752681732177734,
|
||
|
1.4095669984817505,
|
||
|
-30.872257232666016,
|
||
|
-20.10430908203125,
|
||
|
-44.14026641845703,
|
||
|
-44.344791412353516,
|
||
|
-19.116392135620117,
|
||
|
-19.824148178100586,
|
||
|
-38.69459533691406,
|
||
|
-33.62281799316406,
|
||
|
-18.8161678314209,
|
||
|
5.102487564086914,
|
||
|
-19.989416122436523,
|
||
|
-17.888835906982422,
|
||
|
-20.349594116210938,
|
||
|
-40.49576187133789,
|
||
|
-17.580493927001953,
|
||
|
-19.027267456054688,
|
||
|
-33.4781494140625,
|
||
|
-24.3432559967041,
|
||
|
-28.03645133972168,
|
||
|
-17.188316345214844,
|
||
|
-44.048667907714844,
|
||
|
-23.299938201904297,
|
||
|
-19.730209350585938,
|
||
|
-22.8184814453125,
|
||
|
-22.933115005493164,
|
||
|
-18.64468765258789,
|
||
|
-16.075592041015625,
|
||
|
-19.87166976928711,
|
||
|
-23.999818801879883,
|
||
|
-32.34755325317383,
|
||
|
-38.84872055053711,
|
||
|
-31.213069915771484,
|
||
|
-36.11691665649414,
|
||
|
-23.58230209350586,
|
||
|
-20.905210494995117,
|
||
|
-14.897912979125977,
|
||
|
-43.63490295410156,
|
||
|
-21.317333221435547,
|
||
|
-18.126943588256836,
|
||
|
-29.826873779296875,
|
||
|
-20.279922485351562,
|
||
|
-38.48233413696289,
|
||
|
-31.338623046875,
|
||
|
-32.520233154296875,
|
||
|
-20.75619125366211,
|
||
|
-19.275569915771484,
|
||
|
-18.557659149169922,
|
||
|
-22.052003860473633,
|
||
|
-17.567392349243164,
|
||
|
-19.11776351928711,
|
||
|
-20.71319580078125,
|
||
|
-18.35188865661621,
|
||
|
-20.603656768798828,
|
||
|
-35.86412048339844,
|
||
|
-20.906282424926758,
|
||
|
-18.688472747802734,
|
||
|
-20.829761505126953,
|
||
|
-21.579151153564453,
|
||
|
-28.39809799194336,
|
||
|
-19.53093719482422,
|
||
|
-26.213987350463867,
|
||
|
-21.246871948242188,
|
||
|
-17.66026496887207,
|
||
|
2.5227437019348145,
|
||
|
-24.87339210510254,
|
||
|
-27.743459701538086,
|
||
|
-22.089248657226562,
|
||
|
-17.762147903442383,
|
||
|
-0.40576863288879395,
|
||
|
26.8973388671875,
|
||
|
-20.605337142944336,
|
||
|
-19.388063430786133,
|
||
|
-20.153820037841797,
|
||
|
-19.003501892089844,
|
||
|
-20.548782348632812,
|
||
|
-18.5856990814209,
|
||
|
-20.685461044311523,
|
||
|
-24.969297409057617,
|
||
|
-13.321779251098633,
|
||
|
-19.421489715576172,
|
||
|
-12.712600708007812,
|
||
|
-18.596309661865234,
|
||
|
-21.258804321289062,
|
||
|
-19.235485076904297,
|
||
|
-16.01231575012207,
|
||
|
-28.418947219848633,
|
||
|
-26.561931610107422,
|
||
|
-38.368553161621094,
|
||
|
-44.0285758972168,
|
||
|
-20.64055633544922,
|
||
|
-20.14558219909668,
|
||
|
-30.83717155456543,
|
||
|
-21.933542251586914,
|
||
|
-29.21761703491211,
|
||
|
-17.24712562561035,
|
||
|
-19.92664909362793,
|
||
|
-22.288204193115234,
|
||
|
-20.714338302612305,
|
||
|
6.793501853942871,
|
||
|
-18.15312957763672,
|
||
|
-19.535140991210938,
|
||
|
-30.575103759765625,
|
||
|
-39.65766906738281,
|
||
|
-12.48865032196045,
|
||
|
-33.975406646728516,
|
||
|
-7.2313055992126465,
|
||
|
-20.26259994506836,
|
||
|
-20.65315055847168,
|
||
|
-15.140610694885254,
|
||
|
2.061065435409546,
|
||
|
6.819870948791504,
|
||
|
15.081108093261719,
|
||
|
-30.325632095336914,
|
||
|
-19.015371322631836,
|
||
|
-19.867053985595703,
|
||
|
-11.910858154296875,
|
||
|
-18.241350173950195,
|
||
|
-15.137715339660645,
|
||
|
-20.257770538330078,
|
||
|
-20.329795837402344,
|
||
|
-35.48781967163086,
|
||
|
8.4711332321167,
|
||
|
-18.930757522583008,
|
||
|
-2.536022424697876,
|
||
|
-16.826810836791992,
|
||
|
-19.42383575439453,
|
||
|
-43.59513473510742,
|
||
|
-3.5450971126556396,
|
||
|
-18.716978073120117,
|
||
|
-37.67515182495117,
|
||
|
10.4896879196167,
|
||
|
-18.981178283691406,
|
||
|
-20.17337989807129,
|
||
|
-32.10319900512695,
|
||
|
-9.90804386138916,
|
||
|
-9.402204513549805,
|
||
|
-45.07011032104492,
|
||
|
-41.473297119140625,
|
||
|
26.06524085998535,
|
||
|
-42.96630859375,
|
||
|
-14.690605163574219,
|
||
|
-18.8695068359375,
|
||
|
-14.923571586608887,
|
||
|
-20.723493576049805,
|
||
|
-17.97073745727539,
|
||
|
8.08829116821289,
|
||
|
-13.421304702758789,
|
||
|
-19.56659507751465,
|
||
|
-6.296642780303955,
|
||
|
-18.842330932617188,
|
||
|
-18.514863967895508,
|
||
|
-5.776156425476074,
|
||
|
-16.216114044189453,
|
||
|
-11.440484046936035,
|
||
|
8.298216819763184,
|
||
|
-17.838760375976562,
|
||
|
-18.547760009765625,
|
||
|
-21.2705135345459,
|
||
|
-21.286544799804688,
|
||
|
-19.46271514892578,
|
||
|
-0.6959265470504761,
|
||
|
-18.12851905822754,
|
||
|
-12.141888618469238,
|
||
|
-23.47666358947754,
|
||
|
-18.30029296875,
|
||
|
-6.611009120941162,
|
||
|
-15.475380897521973,
|
||
|
-19.50426483154297,
|
||
|
-30.818443298339844,
|
||
|
-20.047527313232422,
|
||
|
-19.763242721557617,
|
||
|
5.859057426452637,
|
||
|
23.372236251831055,
|
||
|
-15.694491386413574,
|
||
|
-14.124898910522461,
|
||
|
-24.07075309753418,
|
||
|
-13.331916809082031,
|
||
|
11.815703392028809,
|
||
|
-19.35304832458496,
|
||
|
-19.743032455444336,
|
||
|
-27.213958740234375,
|
||
|
-9.40339469909668,
|
||
|
-20.496368408203125,
|
||
|
-20.2101993560791,
|
||
|
-16.460922241210938,
|
||
|
-22.037708282470703,
|
||
|
-6.34823751449585,
|
||
|
-31.32671546936035,
|
||
|
15.396718978881836,
|
||
|
-17.461124420166016,
|
||
|
-13.708237648010254,
|
||
|
17.94046974182129,
|
||
|
-16.090484619140625,
|
||
|
-23.520374298095703,
|
||
|
-17.903539657592773,
|
||
|
-15.81758975982666,
|
||
|
-0.7427717447280884,
|
||
|
-5.055586338043213,
|
||
|
2.29024600982666,
|
||
|
-7.74345064163208,
|
||
|
-13.329052925109863,
|
||
|
-19.09457778930664,
|
||
|
-2.3976056575775146,
|
||
|
38.25006866455078,
|
||
|
-7.335046291351318,
|
||
|
-8.749767303466797,
|
||
|
-15.802812576293945,
|
||
|
-25.34999656677246,
|
||
|
-18.765586853027344,
|
||
|
-18.9837703704834,
|
||
|
-19.491971969604492,
|
||
|
-19.299938201904297,
|
||
|
-17.79399871826172,
|
||
|
-10.8674955368042,
|
||
|
23.549108505249023,
|
||
|
-16.48993682861328,
|
||
|
11.56589412689209,
|
||
|
-11.963130950927734,
|
||
|
-17.027727127075195,
|
||
|
0.13430561125278473,
|
||
|
-21.353246688842773,
|
||
|
-12.894030570983887,
|
||
|
-18.746335983276367,
|
||
|
-20.01817512512207,
|
||
|
-12.83863353729248,
|
||
|
14.026820182800293,
|
||
|
-10.431321144104004,
|
||
|
-4.470585346221924,
|
||
|
23.255651473999023,
|
||
|
-18.89388656616211,
|
||
|
7.857784748077393,
|
||
|
-17.917451858520508,
|
||
|
0.2739904522895813,
|
||
|
9.52014446258545,
|
||
|
16.161623001098633,
|
||
|
-7.626858711242676,
|
||
|
38.568660736083984,
|
||
|
-1.590761661529541,
|
||
|
25.661977767944336,
|
||
|
8.49586009979248,
|
||
|
-9.77422046661377,
|
||
|
-13.780284881591797,
|
||
|
0.8494524359703064,
|
||
|
-0.5465432405471802,
|
||
|
4.929368019104004,
|
||
|
-16.368452072143555,
|
||
|
31.75875473022461,
|
||
|
5.325240135192871,
|
||
|
13.825760841369629,
|
||
|
7.592653274536133,
|
||
|
-9.335834503173828,
|
||
|
1.4615072011947632,
|
||
|
-0.5884831547737122,
|
||
|
-1.340402603149414,
|
||
|
-10.41290283203125,
|
||
|
-20.392946243286133,
|
||
|
-14.263337135314941,
|
||
|
-1.577492117881775,
|
||
|
-18.042490005493164,
|
||
|
-18.980976104736328,
|
||
|
19.02342414855957,
|
||
|
-11.581950187683105,
|
||
|
-16.308691024780273,
|
||
|
-10.362116813659668,
|
||
|
-5.857846260070801,
|
||
|
19.38629150390625,
|
||
|
-14.646167755126953,
|
||
|
-7.765897750854492,
|
||
|
-34.893089294433594,
|
||
|
14.118301391601562,
|
||
|
-7.032361030578613,
|
||
|
30.692075729370117,
|
||
|
29.11831283569336,
|
||
|
-13.792963981628418,
|
||
|
-7.519777774810791,
|
||
|
15.045051574707031,
|
||
|
0.5538080334663391,
|
||
|
9.465689659118652,
|
||
|
36.334556579589844,
|
||
|
4.554317474365234,
|
||
|
-3.9131617546081543,
|
||
|
8.041435241699219,
|
||
|
11.464128494262695,
|
||
|
2.813159942626953,
|
||
|
-18.317930221557617,
|
||
|
-19.59366798400879,
|
||
|
-19.445045471191406,
|
||
|
22.321557998657227,
|
||
|
8.294828414916992,
|
||
|
4.452760696411133,
|
||
|
26.35509490966797,
|
||
|
4.993377685546875,
|
||
|
-16.32709312438965,
|
||
|
3.4562928676605225,
|
||
|
-17.823936462402344,
|
||
|
-18.67096519470215,
|
||
|
11.846997261047363,
|
||
|
-16.08251953125,
|
||
|
31.7960205078125,
|
||
|
8.858163833618164,
|
||
|
0.4199365973472595,
|
||
|
6.7866530418396,
|
||
|
-20.351367950439453,
|
||
|
31.249187469482422,
|
||
|
-1.8719197511672974,
|
||
|
23.950191497802734,
|
||
|
15.64001750946045,
|
||
|
-17.750436782836914,
|
||
|
-13.347018241882324,
|
||
|
-2.9148669242858887,
|
||
|
17.097278594970703,
|
||
|
-7.29541015625,
|
||
|
-19.20755958557129,
|
||
|
-6.879161834716797,
|
||
|
37.36906433105469,
|
||
|
13.27725887298584,
|
||
|
13.056231498718262,
|
||
|
18.15317153930664,
|
||
|
31.915966033935547,
|
||
|
32.775691986083984,
|
||
|
-15.436138153076172,
|
||
|
-19.218751907348633,
|
||
|
32.3051643371582,
|
||
|
-7.337310791015625,
|
||
|
-15.001984596252441,
|
||
|
27.876174926757812,
|
||
|
14.981220245361328,
|
||
|
-18.970821380615234,
|
||
|
20.770965576171875,
|
||
|
-20.129745483398438,
|
||
|
-1.8905503749847412,
|
||
|
33.36024856567383,
|
||
|
26.09626579284668,
|
||
|
4.182092666625977,
|
||
|
10.85387134552002,
|
||
|
28.35263442993164,
|
||
|
10.37677001953125,
|
||
|
-17.139625549316406,
|
||
|
12.201366424560547,
|
||
|
-18.062055587768555,
|
||
|
-5.135737895965576,
|
||
|
-0.5500930547714233,
|
||
|
12.708571434020996,
|
||
|
21.347089767456055,
|
||
|
28.986328125,
|
||
|
18.928030014038086,
|
||
|
9.27135944366455,
|
||
|
32.72750473022461,
|
||
|
36.08042526245117,
|
||
|
34.257080078125,
|
||
|
-0.11161330342292786,
|
||
|
-19.705671310424805,
|
||
|
-4.953669548034668,
|
||
|
-11.733522415161133,
|
||
|
10.007023811340332,
|
||
|
-11.756986618041992,
|
||
|
-8.343802452087402,
|
||
|
35.978065490722656,
|
||
|
27.292999267578125,
|
||
|
-12.22633171081543,
|
||
|
19.997207641601562,
|
||
|
30.14155387878418,
|
||
|
1.715648889541626,
|
||
|
14.726751327514648,
|
||
|
-3.817837715148926,
|
||
|
28.566452026367188,
|
||
|
36.525211334228516,
|
||
|
30.5249080657959,
|
||
|
3.5872440338134766,
|
||
|
1.9661558866500854,
|
||
|
28.44207000732422,
|
||
|
-19.2054500579834,
|
||
|
24.199369430541992,
|
||
|
-19.884496688842773,
|
||
|
23.05033302307129,
|
||
|
25.580127716064453,
|
||
|
37.22694396972656,
|
||
|
-16.62062644958496,
|
||
|
38.267112731933594,
|
||
|
9.393867492675781,
|
||
|
22.764314651489258,
|
||
|
32.598846435546875,
|
||
|
30.290103912353516,
|
||
|
15.497756958007812,
|
||
|
7.717910289764404,
|
||
|
6.66264009475708,
|
||
|
7.819920063018799,
|
||
|
20.53498649597168,
|
||
|
9.667859077453613,
|
||
|
16.452503204345703,
|
||
|
3.0868008136749268,
|
||
|
7.040205478668213,
|
||
|
37.334651947021484,
|
||
|
7.951709270477295,
|
||
|
24.766178131103516,
|
||
|
-20.741535186767578,
|
||
|
4.75585412979126,
|
||
|
-6.733199596405029,
|
||
|
36.28152847290039,
|
||
|
-14.115549087524414,
|
||
|
-13.33298110961914,
|
||
|
10.972052574157715,
|
||
|
28.208404541015625,
|
||
|
2.4711904525756836,
|
||
|
6.041626453399658,
|
||
|
23.843185424804688,
|
||
|
3.9043142795562744,
|
||
|
34.20476531982422,
|
||
|
23.731884002685547,
|
||
|
22.35415267944336,
|
||
|
8.13630485534668,
|
||
|
-16.883378982543945,
|
||
|
26.964046478271484,
|
||
|
18.809816360473633,
|
||
|
32.27858352661133,
|
||
|
38.12012481689453,
|
||
|
10.939253807067871,
|
||
|
24.013545989990234,
|
||
|
10.247326850891113,
|
||
|
4.0700364112854,
|
||
|
-21.1096134185791,
|
||
|
32.41192626953125,
|
||
|
28.53585433959961,
|
||
|
-14.140551567077637,
|
||
|
6.156484603881836,
|
||
|
22.856304168701172,
|
||
|
5.096049785614014,
|
||
|
25.813995361328125,
|
||
|
2.8718440532684326,
|
||
|
11.797770500183105,
|
||
|
-1.7048701047897339,
|
||
|
40.397125244140625,
|
||
|
25.171480178833008,
|
||
|
38.30558776855469,
|
||
|
37.09439468383789,
|
||
|
7.444991588592529,
|
||
|
14.414933204650879,
|
||
|
10.878668785095215,
|
||
|
-4.532633304595947,
|
||
|
-8.344372749328613,
|
||
|
1.385736346244812,
|
||
|
-11.346953392028809,
|
||
|
11.137411117553711,
|
||
|
7.770446300506592,
|
||
|
2.533214807510376,
|
||
|
28.75270652770996,
|
||
|
30.244400024414062,
|
||
|
39.73438262939453,
|
||
|
10.42452621459961,
|
||
|
20.313329696655273,
|
||
|
11.505030632019043,
|
||
|
17.904531478881836,
|
||
|
26.157421112060547,
|
||
|
22.29054832458496,
|
||
|
29.620119094848633,
|
||
|
8.8423433303833,
|
||
|
5.569073677062988,
|
||
|
37.493770599365234,
|
||
|
35.19694137573242,
|
||
|
24.271263122558594,
|
||
|
23.769302368164062,
|
||
|
-5.984632968902588,
|
||
|
27.166954040527344,
|
||
|
16.860870361328125,
|
||
|
34.711021423339844,
|
||
|
-1.9655672311782837,
|
||
|
27.624073028564453,
|
||
|
27.17008399963379,
|
||
|
-4.443291187286377,
|
||
|
2.5501222610473633,
|
||
|
38.44746017456055,
|
||
|
-3.2554194927215576,
|
||
|
-6.893085956573486,
|
||
|
10.024728775024414,
|
||
|
24.68971824645996,
|
||
|
33.200416564941406,
|
||
|
29.714223861694336,
|
||
|
24.032442092895508,
|
||
|
32.1002311706543,
|
||
|
11.775108337402344,
|
||
|
12.808762550354004,
|
||
|
36.8781623840332,
|
||
|
31.090953826904297,
|
||
|
6.8004984855651855,
|
||
|
28.267786026000977,
|
||
|
29.44856834411621,
|
||
|
31.088388442993164,
|
||
|
24.978300094604492,
|
||
|
10.945440292358398,
|
||
|
32.28504180908203,
|
||
|
10.018085479736328,
|
||
|
-15.364595413208008,
|
||
|
28.794761657714844,
|
||
|
23.429771423339844,
|
||
|
-6.023435115814209,
|
||
|
20.968229293823242,
|
||
|
35.2943229675293,
|
||
|
-10.397829055786133,
|
||
|
16.16242218017578,
|
||
|
12.520045280456543,
|
||
|
32.989662170410156,
|
||
|
4.453206539154053,
|
||
|
38.489837646484375,
|
||
|
-4.995913982391357,
|
||
|
8.696212768554688,
|
||
|
13.152729988098145,
|
||
|
14.354269027709961,
|
||
|
-14.370227813720703,
|
||
|
12.699954986572266,
|
||
|
32.78911590576172,
|
||
|
1.7899707555770874,
|
||
|
17.986557006835938,
|
||
|
34.68058395385742,
|
||
|
-0.58353590965271,
|
||
|
-17.831453323364258,
|
||
|
17.506328582763672,
|
||
|
-16.637420654296875,
|
||
|
10.065142631530762,
|
||
|
-4.45506477355957,
|
||
|
35.64728546142578,
|
||
|
-6.2111897468566895,
|
||
|
21.827089309692383,
|
||
|
32.20193862915039,
|
||
|
35.75030517578125,
|
||
|
36.24654006958008,
|
||
|
24.66029930114746,
|
||
|
-3.751788854598999,
|
||
|
16.30603790283203,
|
||
|
-3.440640449523926,
|
||
|
33.76301193237305,
|
||
|
21.567188262939453,
|
||
|
35.402896881103516,
|
||
|
28.80426788330078,
|
||
|
38.375526428222656,
|
||
|
33.13804626464844,
|
||
|
24.28546714782715,
|
||
|
38.106178283691406,
|
||
|
21.55936050415039,
|
||
|
23.99211311340332,
|
||
|
15.432005882263184,
|
||
|
34.570255279541016,
|
||
|
31.494651794433594,
|
||
|
36.9154052734375,
|
||
|
33.86064147949219,
|
||
|
22.30323600769043,
|
||
|
23.65771484375,
|
||
|
34.68379211425781,
|
||
|
39.19734191894531,
|
||
|
37.30693054199219,
|
||
|
3.8125698566436768,
|
||
|
2.487999677658081,
|
||
|
30.356849670410156,
|
||
|
30.34342384338379,
|
||
|
33.908451080322266,
|
||
|
29.545690536499023,
|
||
|
31.391197204589844,
|
||
|
29.040081024169922,
|
||
|
37.581031799316406,
|
||
|
35.172603607177734,
|
||
|
38.35261154174805,
|
||
|
33.85100555419922,
|
||
|
26.745548248291016,
|
||
|
5.326643943786621,
|
||
|
38.031455993652344,
|
||
|
38.12388610839844,
|
||
|
31.238981246948242,
|
||
|
15.172958374023438,
|
||
|
25.904361724853516,
|
||
|
32.23112106323242,
|
||
|
36.603599548339844,
|
||
|
21.572166442871094,
|
||
|
1.1564096212387085,
|
||
|
17.685848236083984,
|
||
|
22.504697799682617,
|
||
|
18.070146560668945,
|
||
|
34.826324462890625,
|
||
|
0.41978421807289124,
|
||
|
-17.376161575317383,
|
||
|
25.674652099609375,
|
||
|
-10.87343692779541,
|
||
|
37.42022705078125,
|
||
|
23.748733520507812,
|
||
|
37.71365737915039,
|
||
|
24.914337158203125,
|
||
|
-8.378732681274414,
|
||
|
36.92451477050781,
|
||
|
32.31475067138672,
|
||
|
33.004547119140625,
|
||
|
33.68442916870117,
|
||
|
29.186098098754883,
|
||
|
28.03569984436035,
|
||
|
21.806535720825195,
|
||
|
9.873394966125488,
|
||
|
-1.8470020294189453,
|
||
|
-1.5256963968276978,
|
||
|
32.873985290527344,
|
||
|
31.860774993896484,
|
||
|
27.016727447509766,
|
||
|
15.886197090148926,
|
||
|
33.676456451416016,
|
||
|
14.122387886047363,
|
||
|
33.27682113647461,
|
||
|
8.348349571228027,
|
||
|
30.207841873168945,
|
||
|
20.005468368530273,
|
||
|
-8.385444641113281,
|
||
|
36.968467712402344,
|
||
|
39.39329147338867,
|
||
|
12.090535163879395,
|
||
|
39.032527923583984,
|
||
|
14.957297325134277,
|
||
|
39.25700759887695,
|
||
|
34.78938674926758,
|
||
|
26.45100212097168,
|
||
|
9.275379180908203,
|
||
|
15.854902267456055,
|
||
|
30.53789520263672,
|
||
|
15.914936065673828,
|
||
|
36.842506408691406,
|
||
|
35.247554779052734,
|
||
|
29.21982192993164,
|
||
|
-3.0305185317993164,
|
||
|
32.75383758544922,
|
||
|
35.73937225341797,
|
||
|
31.67646598815918,
|
||
|
28.25129508972168,
|
||
|
-1.3874183893203735,
|
||
|
24.09025001525879,
|
||
|
14.156367301940918,
|
||
|
37.334224700927734,
|
||
|
27.164125442504883,
|
||
|
34.69335174560547,
|
||
|
38.07962417602539,
|
||
|
36.52900695800781,
|
||
|
19.716806411743164,
|
||
|
16.004840850830078,
|
||
|
-0.19883635640144348,
|
||
|
10.00942611694336,
|
||
|
40.223121643066406,
|
||
|
37.62148666381836,
|
||
|
37.56950759887695,
|
||
|
29.20551872253418,
|
||
|
-18.00048065185547,
|
||
|
16.546566009521484,
|
||
|
35.537109375,
|
||
|
25.68303108215332,
|
||
|
36.268253326416016,
|
||
|
28.59971809387207,
|
||
|
33.69773864746094,
|
||
|
26.8480167388916,
|
||
|
-7.168483734130859,
|
||
|
24.978044509887695,
|
||
|
28.944292068481445,
|
||
|
24.66967010498047,
|
||
|
21.785011291503906,
|
||
|
23.92220115661621,
|
||
|
35.35285568237305,
|
||
|
13.61915111541748,
|
||
|
34.173179626464844,
|
||
|
22.1969051361084,
|
||
|
26.699831008911133,
|
||
|
-0.13630902767181396,
|
||
|
6.903083801269531,
|
||
|
1.91774582862854,
|
||
|
9.803421974182129,
|
||
|
2.7897114753723145,
|
||
|
27.477142333984375,
|
||
|
26.014249801635742,
|
||
|
27.023168563842773,
|
||
|
34.310855865478516,
|
||
|
29.873462677001953,
|
||
|
22.679176330566406,
|
||
|
21.590700149536133,
|
||
|
36.33908462524414,
|
||
|
39.004180908203125,
|
||
|
36.8128776550293,
|
||
|
36.727508544921875,
|
||
|
33.84870529174805,
|
||
|
5.8950090408325195,
|
||
|
22.649070739746094,
|
||
|
8.071556091308594,
|
||
|
33.914772033691406,
|
||
|
4.919182777404785,
|
||
|
41.51544952392578,
|
||
|
36.08908462524414,
|
||
|
1.9589076042175293,
|
||
|
3.0913445949554443,
|
||
|
38.10493469238281,
|
||
|
34.75066375732422,
|
||
|
29.669658660888672,
|
||
|
11.83696460723877,
|
||
|
31.550352096557617,
|
||
|
27.75107192993164,
|
||
|
28.38513946533203,
|
||
|
38.41190719604492,
|
||
|
33.097694396972656,
|
||
|
37.993751525878906,
|
||
|
35.23082733154297,
|
||
|
9.52414608001709,
|
||
|
32.38400650024414,
|
||
|
-11.248381614685059,
|
||
|
22.353425979614258,
|
||
|
37.08103942871094,
|
||
|
-4.819033622741699,
|
||
|
35.92313766479492,
|
||
|
31.184314727783203,
|
||
|
32.85841369628906,
|
||
|
35.55282974243164,
|
||
|
36.980316162109375,
|
||
|
23.208759307861328,
|
||
|
26.66017723083496,
|
||
|
39.870155334472656,
|
||
|
37.65974426269531,
|
||
|
39.288604736328125,
|
||
|
15.898655891418457,
|
||
|
35.13091278076172,
|
||
|
25.020896911621094,
|
||
|
36.78608703613281,
|
||
|
15.13550090789795,
|
||
|
35.17268371582031,
|
||
|
13.739736557006836,
|
||
|
34.810977935791016,
|
||
|
10.443501472473145,
|
||
|
39.774574279785156,
|
||
|
38.70469284057617,
|
||
|
7.636678218841553,
|
||
|
16.238046646118164,
|
||
|
33.74295425415039,
|
||
|
23.52367401123047,
|
||
|
24.974754333496094,
|
||
|
25.319581985473633,
|
||
|
28.944381713867188,
|
||
|
21.336753845214844,
|
||
|
36.9149169921875,
|
||
|
33.846702575683594,
|
||
|
32.70356369018555,
|
||
|
-8.382963180541992,
|
||
|
31.409679412841797,
|
||
|
-0.42241397500038147,
|
||
|
6.5948333740234375,
|
||
|
39.19837188720703,
|
||
|
19.554086685180664,
|
||
|
36.675628662109375,
|
||
|
36.38005065917969,
|
||
|
39.282745361328125,
|
||
|
38.07461166381836,
|
||
|
38.04790115356445,
|
||
|
13.591586112976074,
|
||
|
32.842552185058594,
|
||
|
18.57022476196289,
|
||
|
29.424028396606445,
|
||
|
27.600566864013672,
|
||
|
25.021198272705078,
|
||
|
35.73798751831055,
|
||
|
34.80152893066406,
|
||
|
8.651206970214844,
|
||
|
37.694644927978516,
|
||
|
29.92609214782715,
|
||
|
34.815460205078125,
|
||
|
20.487028121948242,
|
||
|
35.24136734008789,
|
||
|
35.85560989379883,
|
||
|
22.294021606445312,
|
||
|
16.93027687072754,
|
||
|
33.06844711303711,
|
||
|
-2.6640706062316895,
|
||
|
9.46008014678955,
|
||
|
-3.2339742183685303,
|
||
|
31.78067970275879,
|
||
|
-13.954349517822266,
|
||
|
22.541250228881836,
|
||
|
34.926456451416016,
|
||
|
22.661945343017578,
|
||
|
37.3524284362793,
|
||
|
24.97709083557129,
|
||
|
1.8480653762817383,
|
||
|
39.911251068115234,
|
||
|
5.916119575500488,
|
||
|
25.411102294921875,
|
||
|
36.85035705566406,
|
||
|
34.80583953857422,
|
||
|
24.811330795288086,
|
||
|
36.871177673339844,
|
||
|
32.95829772949219,
|
||
|
4.1338887214660645,
|
||
|
30.015687942504883,
|
||
|
-6.440545082092285,
|
||
|
-5.7759318351745605,
|
||
|
16.44660758972168,
|
||
|
34.0218391418457,
|
||
|
35.336647033691406,
|
||
|
-7.223390102386475,
|
||
|
-15.22048282623291,
|
||
|
-4.49592399597168,
|
||
|
33.67366409301758,
|
||
|
25.857858657836914,
|
||
|
-2.394904851913452,
|
||
|
39.06671142578125,
|
||
|
32.38870620727539,
|
||
|
31.3646297454834,
|
||
|
-4.275623321533203,
|
||
|
8.433554649353027,
|
||
|
22.353477478027344,
|
||
|
0.010738364420831203,
|
||
|
26.208158493041992,
|
||
|
14.62072467803955,
|
||
|
0.787626326084137,
|
||
|
6.747674465179443,
|
||
|
25.02424430847168,
|
||
|
31.00432014465332,
|
||
|
-1.718574047088623,
|
||
|
-7.115645408630371,
|
||
|
40.6612663269043,
|
||
|
28.371334075927734,
|
||
|
36.753047943115234,
|
||
|
15.544976234436035,
|
||
|
-15.455412864685059,
|
||
|
37.21502685546875,
|
||
|
37.47038650512695,
|
||
|
36.1613655090332,
|
||
|
34.964691162109375,
|
||
|
27.17278289794922,
|
||
|
-3.7173941135406494,
|
||
|
19.316547393798828,
|
||
|
-16.632049560546875,
|
||
|
9.615232467651367,
|
||
|
34.27558517456055,
|
||
|
16.427337646484375,
|
||
|
15.099162101745605,
|
||
|
38.00128936767578,
|
||
|
37.61865997314453,
|
||
|
3.192312479019165,
|
||
|
7.53239107131958,
|
||
|
24.367238998413086,
|
||
|
-7.341250896453857,
|
||
|
32.764129638671875,
|
||
|
16.283220291137695,
|
||
|
14.83926010131836,
|
||
|
11.962998390197754,
|
||
|
34.06019973754883,
|
||
|
35.930419921875,
|
||
|
32.093204498291016,
|
||
|
40.6848258972168,
|
||
|
34.015811920166016,
|
||
|
-8.645742416381836,
|
||
|
34.98601150512695,
|
||
|
17.841054916381836,
|
||
|
27.164684295654297,
|
||
|
33.8729248046875,
|
||
|
38.183143615722656,
|
||
|
34.879215240478516,
|
||
|
36.10401916503906,
|
||
|
16.131460189819336,
|
||
|
32.17277908325195,
|
||
|
-2.799816131591797,
|
||
|
31.5865421295166,
|
||
|
38.29349136352539,
|
||
|
21.749420166015625,
|
||
|
31.08203125,
|
||
|
10.617589950561523,
|
||
|
-8.597071647644043,
|
||
|
17.102611541748047,
|
||
|
7.693735122680664,
|
||
|
20.293909072875977,
|
||
|
3.2542059421539307,
|
||
|
27.597545623779297,
|
||
|
10.972261428833008,
|
||
|
34.14850997924805,
|
||
|
11.941946029663086,
|
||
|
34.807037353515625,
|
||
|
31.321014404296875,
|
||
|
25.67595863342285,
|
||
|
17.807348251342773,
|
||
|
35.52448654174805,
|
||
|
36.06928253173828,
|
||
|
29.70269775390625,
|
||
|
39.55341339111328,
|
||
|
21.537565231323242,
|
||
|
36.419918060302734,
|
||
|
35.45991516113281,
|
||
|
33.30271530151367,
|
||
|
34.28370666503906,
|
||
|
30.56549072265625,
|
||
|
15.046092987060547,
|
||
|
-3.7636704444885254,
|
||
|
18.315914154052734,
|
||
|
-2.4061403274536133,
|
||
|
35.76397705078125,
|
||
|
-13.085552215576172,
|
||
|
34.58464431762695,
|
||
|
0.7472051978111267,
|
||
|
38.32695388793945,
|
||
|
9.408622741699219,
|
||
|
31.50213050842285,
|
||
|
31.586109161376953,
|
||
|
37.56443405151367,
|
||
|
10.656109809875488,
|
||
|
37.41193771362305,
|
||
|
17.61452865600586,
|
||
|
-7.702360153198242,
|
||
|
34.10559844970703,
|
||
|
25.80118179321289,
|
||
|
-2.1452043056488037,
|
||
|
27.93301010131836,
|
||
|
9.275137901306152,
|
||
|
19.979585647583008,
|
||
|
-8.342583656311035,
|
||
|
22.43233871459961,
|
||
|
-5.015857696533203,
|
||
|
2.745518922805786,
|
||
|
41.167293548583984,
|
||
|
35.652381896972656,
|
||
|
6.361546039581299,
|
||
|
36.750450134277344,
|
||
|
6.68594217300415,
|
||
|
38.78855514526367,
|
||
|
16.261465072631836,
|
||
|
31.678993225097656,
|
||
|
35.94507598876953,
|
||
|
34.662696838378906,
|
||
|
33.271690368652344,
|
||
|
39.90147018432617,
|
||
|
6.083901882171631,
|
||
|
30.735034942626953,
|
||
|
34.05718994140625,
|
||
|
6.763039588928223,
|
||
|
37.363582611083984,
|
||
|
-6.24973201751709,
|
||
|
-1.068880558013916,
|
||
|
29.765676498413086,
|
||
|
-7.454736709594727,
|
||
|
-5.577848434448242,
|
||
|
36.20086669921875,
|
||
|
1.7946300506591797,
|
||
|
38.98667526245117,
|
||
|
36.72547149658203,
|
||
|
35.8234748840332,
|
||
|
-15.022753715515137,
|
||
|
18.99323844909668,
|
||
|
18.30678939819336,
|
||
|
34.826026916503906,
|
||
|
34.35804748535156,
|
||
|
26.448415756225586,
|
||
|
20.624732971191406,
|
||
|
33.68545150756836,
|
||
|
28.8160457611084,
|
||
|
-17.51582145690918,
|
||
|
14.421308517456055,
|
||
|
-1.977816104888916,
|
||
|
36.5787353515625,
|
||
|
30.138559341430664,
|
||
|
-6.768853664398193,
|
||
|
-9.792078971862793,
|
||
|
24.488143920898438,
|
||
|
19.842044830322266,
|
||
|
31.295520782470703,
|
||
|
18.662166595458984,
|
||
|
36.186492919921875,
|
||
|
-11.959195137023926,
|
||
|
38.34333419799805,
|
||
|
33.80915832519531,
|
||
|
38.60735321044922,
|
||
|
27.15549087524414,
|
||
|
22.90593147277832,
|
||
|
36.11211013793945,
|
||
|
25.389795303344727,
|
||
|
33.772003173828125,
|
||
|
23.485532760620117,
|
||
|
30.15794563293457,
|
||
|
-4.387858867645264,
|
||
|
37.67640686035156,
|
||
|
-9.112987518310547,
|
||
|
33.430885314941406,
|
||
|
12.926562309265137,
|
||
|
29.017831802368164,
|
||
|
18.144439697265625,
|
||
|
36.79316711425781,
|
||
|
28.332399368286133,
|
||
|
31.88997459411621,
|
||
|
16.499181747436523,
|
||
|
39.69707107543945,
|
||
|
-6.38992166519165,
|
||
|
7.07842493057251,
|
||
|
-13.872275352478027,
|
||
|
38.77825164794922,
|
||
|
4.106804847717285,
|
||
|
28.864612579345703,
|
||
|
25.571590423583984,
|
||
|
32.551963806152344,
|
||
|
36.42375564575195,
|
||
|
9.853485107421875,
|
||
|
40.71714782714844,
|
||
|
12.618228912353516,
|
||
|
16.956201553344727,
|
||
|
36.00563049316406,
|
||
|
39.0189208984375,
|
||
|
30.043548583984375,
|
||
|
28.405330657958984,
|
||
|
18.9666748046875,
|
||
|
35.183902740478516,
|
||
|
30.652462005615234,
|
||
|
31.36698341369629,
|
||
|
11.682387351989746,
|
||
|
33.97480392456055,
|
||
|
-13.196914672851562,
|
||
|
11.83337116241455,
|
||
|
-5.41542387008667,
|
||
|
13.065817832946777,
|
||
|
36.40565872192383,
|
||
|
35.862979888916016,
|
||
|
35.26314926147461,
|
||
|
27.691333770751953,
|
||
|
-3.4161643981933594,
|
||
|
18.972131729125977,
|
||
|
28.708145141601562,
|
||
|
18.50458526611328,
|
||
|
-7.817680358886719,
|
||
|
-3.070387363433838,
|
||
|
38.94782257080078,
|
||
|
9.128339767456055,
|
||
|
-9.747523307800293,
|
||
|
18.480064392089844,
|
||
|
17.97478675842285,
|
||
|
-14.35358715057373,
|
||
|
-16.201702117919922,
|
||
|
5.797308921813965,
|
||
|
-1.1111356019973755,
|
||
|
19.287494659423828,
|
||
|
6.489180564880371,
|
||
|
38.09960174560547,
|
||
|
-4.956510543823242,
|
||
|
25.295001983642578,
|
||
|
39.47596740722656,
|
||
|
39.075992584228516,
|
||
|
29.891559600830078,
|
||
|
28.330495834350586,
|
||
|
20.29665756225586,
|
||
|
37.182491302490234,
|
||
|
28.367229461669922,
|
||
|
32.282379150390625,
|
||
|
-10.378864288330078,
|
||
|
8.86691665649414,
|
||
|
23.36135482788086,
|
||
|
10.885788917541504,
|
||
|
37.40651321411133,
|
||
|
31.05550193786621,
|
||
|
30.213743209838867,
|
||
|
-4.136325836181641,
|
||
|
35.7060546875,
|
||
|
35.076541900634766,
|
||
|
-1.0470465421676636,
|
||
|
20.721078872680664,
|
||
|
17.150775909423828,
|
||
|
5.5567522048950195,
|
||
|
20.277212142944336,
|
||
|
41.402286529541016,
|
||
|
-7.401374816894531,
|
||
|
33.381065368652344,
|
||
|
34.33943557739258,
|
||
|
17.04786491394043,
|
||
|
8.905755996704102,
|
||
|
-0.9644747972488403,
|
||
|
18.1281795501709,
|
||
|
-2.336575508117676,
|
||
|
-17.344038009643555,
|
||
|
33.91850662231445,
|
||
|
-14.860147476196289,
|
||
|
5.0624895095825195,
|
||
|
28.104219436645508,
|
||
|
39.1203498840332,
|
||
|
-11.12773609161377,
|
||
|
-14.204906463623047,
|
||
|
0.8373094201087952,
|
||
|
-13.216997146606445,
|
||
|
34.54133605957031,
|
||
|
29.993549346923828,
|
||
|
-9.284271240234375,
|
||
|
7.254125595092773,
|
||
|
21.125782012939453,
|
||
|
8.309715270996094,
|
||
|
35.15681838989258,
|
||
|
3.896106481552124,
|
||
|
10.185667037963867,
|
||
|
1.7379233837127686,
|
||
|
39.42603302001953,
|
||
|
34.42450714111328,
|
||
|
-13.352239608764648,
|
||
|
19.634511947631836,
|
||
|
35.02980041503906,
|
||
|
-16.509765625,
|
||
|
-2.5292625427246094,
|
||
|
8.388056755065918,
|
||
|
20.32505226135254,
|
||
|
-5.216928482055664,
|
||
|
36.345401763916016,
|
||
|
7.99658203125,
|
||
|
17.411907196044922,
|
||
|
24.69715118408203,
|
||
|
29.131271362304688,
|
||
|
-7.374231338500977,
|
||
|
-9.91627311706543,
|
||
|
36.5742073059082,
|
||
|
-16.540111541748047,
|
||
|
28.01336669921875,
|
||
|
3.589961290359497,
|
||
|
20.44246482849121,
|
||
|
22.67428207397461,
|
||
|
37.70133972167969,
|
||
|
-7.84840726852417,
|
||
|
-9.694536209106445,
|
||
|
18.775163650512695,
|
||
|
6.776491641998291,
|
||
|
15.50499439239502,
|
||
|
0.21441558003425598,
|
||
|
-15.871456146240234,
|
||
|
-1.275634765625,
|
||
|
-0.3026663064956665,
|
||
|
9.444371223449707,
|
||
|
3.5074799060821533,
|
||
|
-10.99700927734375,
|
||
|
-1.6696609258651733,
|
||
|
17.5455265045166,
|
||
|
23.667699813842773,
|
||
|
36.04926300048828,
|
||
|
25.89969825744629,
|
||
|
34.920833587646484,
|
||
|
-0.6150121092796326,
|
||
|
26.528017044067383,
|
||
|
5.788592338562012,
|
||
|
35.02158737182617,
|
||
|
37.39509963989258,
|
||
|
8.352609634399414,
|
||
|
32.022274017333984,
|
||
|
19.174213409423828,
|
||
|
9.8175048828125,
|
||
|
15.045589447021484,
|
||
|
32.98198699951172,
|
||
|
15.218128204345703,
|
||
|
3.931551694869995,
|
||
|
39.837852478027344,
|
||
|
13.810405731201172,
|
||
|
28.371248245239258,
|
||
|
40.371795654296875,
|
||
|
7.884724140167236,
|
||
|
0.25093719363212585,
|
||
|
-14.72836685180664,
|
||
|
30.059581756591797,
|
||
|
-2.326007843017578,
|
||
|
13.255498886108398,
|
||
|
2.107370376586914,
|
||
|
9.685831069946289,
|
||
|
35.609169006347656,
|
||
|
9.298497200012207,
|
||
|
34.188194274902344,
|
||
|
39.204681396484375,
|
||
|
38.19071578979492,
|
||
|
11.248852729797363,
|
||
|
-4.867440223693848,
|
||
|
-11.630373001098633,
|
||
|
-0.5244789719581604,
|
||
|
7.939577579498291,
|
||
|
-4.414832592010498,
|
||
|
1.2337654829025269,
|
||
|
-8.667733192443848,
|
||
|
17.89537811279297,
|
||
|
-15.27243709564209,
|
||
|
15.914663314819336,
|
||
|
38.15607452392578,
|
||
|
10.769158363342285,
|
||
|
-7.047260761260986,
|
||
|
31.5102596282959,
|
||
|
30.529016494750977,
|
||
|
-1.6787450313568115,
|
||
|
-6.041177272796631,
|
||
|
-13.98686695098877,
|
||
|
6.27472448348999,
|
||
|
16.931018829345703,
|
||
|
-10.013669967651367,
|
||
|
-12.79061222076416,
|
||
|
38.52159118652344,
|
||
|
8.656478881835938,
|
||
|
-8.220311164855957,
|
||
|
6.919415473937988,
|
||
|
33.951210021972656,
|
||
|
-0.7624413967132568,
|
||
|
35.60538864135742,
|
||
|
-16.441024780273438,
|
||
|
-5.91933536529541,
|
||
|
36.107872009277344,
|
||
|
34.75782775878906,
|
||
|
10.452010154724121,
|
||
|
32.013099670410156,
|
||
|
3.361027479171753,
|
||
|
25.938106536865234,
|
||
|
-11.792644500732422,
|
||
|
5.878315448760986,
|
||
|
26.973661422729492,
|
||
|
-8.383866310119629,
|
||
|
2.1627721786499023,
|
||
|
17.575498580932617,
|
||
|
-4.378220558166504,
|
||
|
19.046953201293945,
|
||
|
-13.327576637268066,
|
||
|
29.384891510009766,
|
||
|
39.05275344848633,
|
||
|
2.760694980621338,
|
||
|
36.86180877685547,
|
||
|
40.445133209228516,
|
||
|
28.563318252563477,
|
||
|
1.8577358722686768,
|
||
|
4.959324359893799,
|
||
|
36.609779357910156,
|
||
|
-5.45302677154541,
|
||
|
10.065885543823242,
|
||
|
36.84382629394531,
|
||
|
39.51948547363281,
|
||
|
27.372224807739258,
|
||
|
16.681249618530273,
|
||
|
1.2794054746627808,
|
||
|
16.126461029052734,
|
||
|
-13.796307563781738,
|
||
|
21.799394607543945,
|
||
|
-9.792876243591309,
|
||
|
32.102291107177734,
|
||
|
36.23530578613281,
|
||
|
-6.254692077636719,
|
||
|
39.68812942504883,
|
||
|
38.073055267333984,
|
||
|
15.332247734069824,
|
||
|
9.921257972717285,
|
||
|
-6.421496391296387,
|
||
|
37.59299087524414,
|
||
|
0.1093164011836052,
|
||
|
-9.939088821411133,
|
||
|
-8.466581344604492,
|
||
|
2.3126235008239746,
|
||
|
28.193172454833984,
|
||
|
20.737409591674805,
|
||
|
35.11525344848633,
|
||
|
10.79833698272705,
|
||
|
-9.00385856628418,
|
||
|
-6.885468006134033,
|
||
|
8.163324356079102,
|
||
|
7.190133571624756,
|
||
|
20.839025497436523,
|
||
|
18.701305389404297,
|
||
|
31.917757034301758,
|
||
|
-7.134988307952881,
|
||
|
19.62391471862793,
|
||
|
28.039793014526367,
|
||
|
36.35076904296875,
|
||
|
0.810134768486023,
|
||
|
-14.153030395507812,
|
||
|
-17.690025329589844,
|
||
|
7.286252021789551,
|
||
|
27.051477432250977,
|
||
|
-6.263342380523682,
|
||
|
-17.323453903198242,
|
||
|
35.26246643066406,
|
||
|
19.918842315673828,
|
||
|
3.565776824951172,
|
||
|
21.64410972595215,
|
||
|
20.57130241394043,
|
||
|
36.56617736816406,
|
||
|
7.014070987701416,
|
||
|
-14.408246040344238,
|
||
|
-8.45596981048584,
|
||
|
0.9159783720970154,
|
||
|
5.747859477996826,
|
||
|
18.873188018798828,
|
||
|
5.680220603942871,
|
||
|
-13.138847351074219,
|
||
|
13.843750953674316,
|
||
|
4.451322078704834,
|
||
|
-0.8289068341255188,
|
||
|
7.461637020111084,
|
||
|
36.93123245239258,
|
||
|
-4.034106731414795,
|
||
|
-15.33336067199707,
|
||
|
-5.382516860961914,
|
||
|
17.88549041748047,
|
||
|
19.653959274291992,
|
||
|
-14.725127220153809,
|
||
|
-16.633832931518555,
|
||
|
38.04140090942383,
|
||
|
-1.3313223123550415,
|
||
|
-14.631922721862793,
|
||
|
-15.783592224121094,
|
||
|
23.66954803466797,
|
||
|
34.20174789428711,
|
||
|
40.46237564086914,
|
||
|
8.35568618774414,
|
||
|
-1.4073851108551025,
|
||
|
-2.6474931240081787,
|
||
|
-12.451430320739746,
|
||
|
-8.911914825439453,
|
||
|
37.56110382080078,
|
||
|
-15.000514030456543,
|
||
|
-4.2745680809021,
|
||
|
-7.139334678649902,
|
||
|
0.14160816371440887,
|
||
|
12.825135231018066,
|
||
|
34.77766799926758
|
||
|
]
|
||
|
}
|
||
|
],
|
||
|
"layout": {
|
||
|
"template": {
|
||
|
"data": {
|
||
|
"bar": [
|
||
|
{
|
||
|
"error_x": {
|
||
|
"color": "#2a3f5f"
|
||
|
},
|
||
|
"error_y": {
|
||
|
"color": "#2a3f5f"
|
||
|
},
|
||
|
"marker": {
|
||
|
"line": {
|
||
|
"color": "#E5ECF6",
|
||
|
"width": 0.5
|
||
|
},
|
||
|
"pattern": {
|
||
|
"fillmode": "overlay",
|
||
|
"size": 10,
|
||
|
"solidity": 0.2
|
||
|
}
|
||
|
},
|
||
|
"type": "bar"
|
||
|
}
|
||
|
],
|
||
|
"barpolar": [
|
||
|
{
|
||
|
"marker": {
|
||
|
"line": {
|
||
|
"color": "#E5ECF6",
|
||
|
"width": 0.5
|
||
|
},
|
||
|
"pattern": {
|
||
|
"fillmode": "overlay",
|
||
|
"size": 10,
|
||
|
"solidity": 0.2
|
||
|
}
|
||
|
},
|
||
|
"type": "barpolar"
|
||
|
}
|
||
|
],
|
||
|
"carpet": [
|
||
|
{
|
||
|
"aaxis": {
|
||
|
"endlinecolor": "#2a3f5f",
|
||
|
"gridcolor": "white",
|
||
|
"linecolor": "white",
|
||
|
"minorgridcolor": "white",
|
||
|
"startlinecolor": "#2a3f5f"
|
||
|
},
|
||
|
"baxis": {
|
||
|
"endlinecolor": "#2a3f5f",
|
||
|
"gridcolor": "white",
|
||
|
"linecolor": "white",
|
||
|
"minorgridcolor": "white",
|
||
|
"startlinecolor": "#2a3f5f"
|
||
|
},
|
||
|
"type": "carpet"
|
||
|
}
|
||
|
],
|
||
|
"choropleth": [
|
||
|
{
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
},
|
||
|
"type": "choropleth"
|
||
|
}
|
||
|
],
|
||
|
"contour": [
|
||
|
{
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
},
|
||
|
"colorscale": [
|
||
|
[
|
||
|
0,
|
||
|
"#0d0887"
|
||
|
],
|
||
|
[
|
||
|
0.1111111111111111,
|
||
|
"#46039f"
|
||
|
],
|
||
|
[
|
||
|
0.2222222222222222,
|
||
|
"#7201a8"
|
||
|
],
|
||
|
[
|
||
|
0.3333333333333333,
|
||
|
"#9c179e"
|
||
|
],
|
||
|
[
|
||
|
0.4444444444444444,
|
||
|
"#bd3786"
|
||
|
],
|
||
|
[
|
||
|
0.5555555555555556,
|
||
|
"#d8576b"
|
||
|
],
|
||
|
[
|
||
|
0.6666666666666666,
|
||
|
"#ed7953"
|
||
|
],
|
||
|
[
|
||
|
0.7777777777777778,
|
||
|
"#fb9f3a"
|
||
|
],
|
||
|
[
|
||
|
0.8888888888888888,
|
||
|
"#fdca26"
|
||
|
],
|
||
|
[
|
||
|
1,
|
||
|
"#f0f921"
|
||
|
]
|
||
|
],
|
||
|
"type": "contour"
|
||
|
}
|
||
|
],
|
||
|
"contourcarpet": [
|
||
|
{
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
},
|
||
|
"type": "contourcarpet"
|
||
|
}
|
||
|
],
|
||
|
"heatmap": [
|
||
|
{
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
},
|
||
|
"colorscale": [
|
||
|
[
|
||
|
0,
|
||
|
"#0d0887"
|
||
|
],
|
||
|
[
|
||
|
0.1111111111111111,
|
||
|
"#46039f"
|
||
|
],
|
||
|
[
|
||
|
0.2222222222222222,
|
||
|
"#7201a8"
|
||
|
],
|
||
|
[
|
||
|
0.3333333333333333,
|
||
|
"#9c179e"
|
||
|
],
|
||
|
[
|
||
|
0.4444444444444444,
|
||
|
"#bd3786"
|
||
|
],
|
||
|
[
|
||
|
0.5555555555555556,
|
||
|
"#d8576b"
|
||
|
],
|
||
|
[
|
||
|
0.6666666666666666,
|
||
|
"#ed7953"
|
||
|
],
|
||
|
[
|
||
|
0.7777777777777778,
|
||
|
"#fb9f3a"
|
||
|
],
|
||
|
[
|
||
|
0.8888888888888888,
|
||
|
"#fdca26"
|
||
|
],
|
||
|
[
|
||
|
1,
|
||
|
"#f0f921"
|
||
|
]
|
||
|
],
|
||
|
"type": "heatmap"
|
||
|
}
|
||
|
],
|
||
|
"heatmapgl": [
|
||
|
{
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
},
|
||
|
"colorscale": [
|
||
|
[
|
||
|
0,
|
||
|
"#0d0887"
|
||
|
],
|
||
|
[
|
||
|
0.1111111111111111,
|
||
|
"#46039f"
|
||
|
],
|
||
|
[
|
||
|
0.2222222222222222,
|
||
|
"#7201a8"
|
||
|
],
|
||
|
[
|
||
|
0.3333333333333333,
|
||
|
"#9c179e"
|
||
|
],
|
||
|
[
|
||
|
0.4444444444444444,
|
||
|
"#bd3786"
|
||
|
],
|
||
|
[
|
||
|
0.5555555555555556,
|
||
|
"#d8576b"
|
||
|
],
|
||
|
[
|
||
|
0.6666666666666666,
|
||
|
"#ed7953"
|
||
|
],
|
||
|
[
|
||
|
0.7777777777777778,
|
||
|
"#fb9f3a"
|
||
|
],
|
||
|
[
|
||
|
0.8888888888888888,
|
||
|
"#fdca26"
|
||
|
],
|
||
|
[
|
||
|
1,
|
||
|
"#f0f921"
|
||
|
]
|
||
|
],
|
||
|
"type": "heatmapgl"
|
||
|
}
|
||
|
],
|
||
|
"histogram": [
|
||
|
{
|
||
|
"marker": {
|
||
|
"pattern": {
|
||
|
"fillmode": "overlay",
|
||
|
"size": 10,
|
||
|
"solidity": 0.2
|
||
|
}
|
||
|
},
|
||
|
"type": "histogram"
|
||
|
}
|
||
|
],
|
||
|
"histogram2d": [
|
||
|
{
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
},
|
||
|
"colorscale": [
|
||
|
[
|
||
|
0,
|
||
|
"#0d0887"
|
||
|
],
|
||
|
[
|
||
|
0.1111111111111111,
|
||
|
"#46039f"
|
||
|
],
|
||
|
[
|
||
|
0.2222222222222222,
|
||
|
"#7201a8"
|
||
|
],
|
||
|
[
|
||
|
0.3333333333333333,
|
||
|
"#9c179e"
|
||
|
],
|
||
|
[
|
||
|
0.4444444444444444,
|
||
|
"#bd3786"
|
||
|
],
|
||
|
[
|
||
|
0.5555555555555556,
|
||
|
"#d8576b"
|
||
|
],
|
||
|
[
|
||
|
0.6666666666666666,
|
||
|
"#ed7953"
|
||
|
],
|
||
|
[
|
||
|
0.7777777777777778,
|
||
|
"#fb9f3a"
|
||
|
],
|
||
|
[
|
||
|
0.8888888888888888,
|
||
|
"#fdca26"
|
||
|
],
|
||
|
[
|
||
|
1,
|
||
|
"#f0f921"
|
||
|
]
|
||
|
],
|
||
|
"type": "histogram2d"
|
||
|
}
|
||
|
],
|
||
|
"histogram2dcontour": [
|
||
|
{
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
},
|
||
|
"colorscale": [
|
||
|
[
|
||
|
0,
|
||
|
"#0d0887"
|
||
|
],
|
||
|
[
|
||
|
0.1111111111111111,
|
||
|
"#46039f"
|
||
|
],
|
||
|
[
|
||
|
0.2222222222222222,
|
||
|
"#7201a8"
|
||
|
],
|
||
|
[
|
||
|
0.3333333333333333,
|
||
|
"#9c179e"
|
||
|
],
|
||
|
[
|
||
|
0.4444444444444444,
|
||
|
"#bd3786"
|
||
|
],
|
||
|
[
|
||
|
0.5555555555555556,
|
||
|
"#d8576b"
|
||
|
],
|
||
|
[
|
||
|
0.6666666666666666,
|
||
|
"#ed7953"
|
||
|
],
|
||
|
[
|
||
|
0.7777777777777778,
|
||
|
"#fb9f3a"
|
||
|
],
|
||
|
[
|
||
|
0.8888888888888888,
|
||
|
"#fdca26"
|
||
|
],
|
||
|
[
|
||
|
1,
|
||
|
"#f0f921"
|
||
|
]
|
||
|
],
|
||
|
"type": "histogram2dcontour"
|
||
|
}
|
||
|
],
|
||
|
"mesh3d": [
|
||
|
{
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
},
|
||
|
"type": "mesh3d"
|
||
|
}
|
||
|
],
|
||
|
"parcoords": [
|
||
|
{
|
||
|
"line": {
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
}
|
||
|
},
|
||
|
"type": "parcoords"
|
||
|
}
|
||
|
],
|
||
|
"pie": [
|
||
|
{
|
||
|
"automargin": true,
|
||
|
"type": "pie"
|
||
|
}
|
||
|
],
|
||
|
"scatter": [
|
||
|
{
|
||
|
"fillpattern": {
|
||
|
"fillmode": "overlay",
|
||
|
"size": 10,
|
||
|
"solidity": 0.2
|
||
|
},
|
||
|
"type": "scatter"
|
||
|
}
|
||
|
],
|
||
|
"scatter3d": [
|
||
|
{
|
||
|
"line": {
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
}
|
||
|
},
|
||
|
"marker": {
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
}
|
||
|
},
|
||
|
"type": "scatter3d"
|
||
|
}
|
||
|
],
|
||
|
"scattercarpet": [
|
||
|
{
|
||
|
"marker": {
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
}
|
||
|
},
|
||
|
"type": "scattercarpet"
|
||
|
}
|
||
|
],
|
||
|
"scattergeo": [
|
||
|
{
|
||
|
"marker": {
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
}
|
||
|
},
|
||
|
"type": "scattergeo"
|
||
|
}
|
||
|
],
|
||
|
"scattergl": [
|
||
|
{
|
||
|
"marker": {
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
}
|
||
|
},
|
||
|
"type": "scattergl"
|
||
|
}
|
||
|
],
|
||
|
"scattermapbox": [
|
||
|
{
|
||
|
"marker": {
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
}
|
||
|
},
|
||
|
"type": "scattermapbox"
|
||
|
}
|
||
|
],
|
||
|
"scatterpolar": [
|
||
|
{
|
||
|
"marker": {
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
}
|
||
|
},
|
||
|
"type": "scatterpolar"
|
||
|
}
|
||
|
],
|
||
|
"scatterpolargl": [
|
||
|
{
|
||
|
"marker": {
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
}
|
||
|
},
|
||
|
"type": "scatterpolargl"
|
||
|
}
|
||
|
],
|
||
|
"scatterternary": [
|
||
|
{
|
||
|
"marker": {
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
}
|
||
|
},
|
||
|
"type": "scatterternary"
|
||
|
}
|
||
|
],
|
||
|
"surface": [
|
||
|
{
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
},
|
||
|
"colorscale": [
|
||
|
[
|
||
|
0,
|
||
|
"#0d0887"
|
||
|
],
|
||
|
[
|
||
|
0.1111111111111111,
|
||
|
"#46039f"
|
||
|
],
|
||
|
[
|
||
|
0.2222222222222222,
|
||
|
"#7201a8"
|
||
|
],
|
||
|
[
|
||
|
0.3333333333333333,
|
||
|
"#9c179e"
|
||
|
],
|
||
|
[
|
||
|
0.4444444444444444,
|
||
|
"#bd3786"
|
||
|
],
|
||
|
[
|
||
|
0.5555555555555556,
|
||
|
"#d8576b"
|
||
|
],
|
||
|
[
|
||
|
0.6666666666666666,
|
||
|
"#ed7953"
|
||
|
],
|
||
|
[
|
||
|
0.7777777777777778,
|
||
|
"#fb9f3a"
|
||
|
],
|
||
|
[
|
||
|
0.8888888888888888,
|
||
|
"#fdca26"
|
||
|
],
|
||
|
[
|
||
|
1,
|
||
|
"#f0f921"
|
||
|
]
|
||
|
],
|
||
|
"type": "surface"
|
||
|
}
|
||
|
],
|
||
|
"table": [
|
||
|
{
|
||
|
"cells": {
|
||
|
"fill": {
|
||
|
"color": "#EBF0F8"
|
||
|
},
|
||
|
"line": {
|
||
|
"color": "white"
|
||
|
}
|
||
|
},
|
||
|
"header": {
|
||
|
"fill": {
|
||
|
"color": "#C8D4E3"
|
||
|
},
|
||
|
"line": {
|
||
|
"color": "white"
|
||
|
}
|
||
|
},
|
||
|
"type": "table"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"layout": {
|
||
|
"annotationdefaults": {
|
||
|
"arrowcolor": "#2a3f5f",
|
||
|
"arrowhead": 0,
|
||
|
"arrowwidth": 1
|
||
|
},
|
||
|
"autotypenumbers": "strict",
|
||
|
"coloraxis": {
|
||
|
"colorbar": {
|
||
|
"outlinewidth": 0,
|
||
|
"ticks": ""
|
||
|
}
|
||
|
},
|
||
|
"colorscale": {
|
||
|
"diverging": [
|
||
|
[
|
||
|
0,
|
||
|
"#8e0152"
|
||
|
],
|
||
|
[
|
||
|
0.1,
|
||
|
"#c51b7d"
|
||
|
],
|
||
|
[
|
||
|
0.2,
|
||
|
"#de77ae"
|
||
|
],
|
||
|
[
|
||
|
0.3,
|
||
|
"#f1b6da"
|
||
|
],
|
||
|
[
|
||
|
0.4,
|
||
|
"#fde0ef"
|
||
|
],
|
||
|
[
|
||
|
0.5,
|
||
|
"#f7f7f7"
|
||
|
],
|
||
|
[
|
||
|
0.6,
|
||
|
"#e6f5d0"
|
||
|
],
|
||
|
[
|
||
|
0.7,
|
||
|
"#b8e186"
|
||
|
],
|
||
|
[
|
||
|
0.8,
|
||
|
"#7fbc41"
|
||
|
],
|
||
|
[
|
||
|
0.9,
|
||
|
"#4d9221"
|
||
|
],
|
||
|
[
|
||
|
1,
|
||
|
"#276419"
|
||
|
]
|
||
|
],
|
||
|
"sequential": [
|
||
|
[
|
||
|
0,
|
||
|
"#0d0887"
|
||
|
],
|
||
|
[
|
||
|
0.1111111111111111,
|
||
|
"#46039f"
|
||
|
],
|
||
|
[
|
||
|
0.2222222222222222,
|
||
|
"#7201a8"
|
||
|
],
|
||
|
[
|
||
|
0.3333333333333333,
|
||
|
"#9c179e"
|
||
|
],
|
||
|
[
|
||
|
0.4444444444444444,
|
||
|
"#bd3786"
|
||
|
],
|
||
|
[
|
||
|
0.5555555555555556,
|
||
|
"#d8576b"
|
||
|
],
|
||
|
[
|
||
|
0.6666666666666666,
|
||
|
"#ed7953"
|
||
|
],
|
||
|
[
|
||
|
0.7777777777777778,
|
||
|
"#fb9f3a"
|
||
|
],
|
||
|
[
|
||
|
0.8888888888888888,
|
||
|
"#fdca26"
|
||
|
],
|
||
|
[
|
||
|
1,
|
||
|
"#f0f921"
|
||
|
]
|
||
|
],
|
||
|
"sequentialminus": [
|
||
|
[
|
||
|
0,
|
||
|
"#0d0887"
|
||
|
],
|
||
|
[
|
||
|
0.1111111111111111,
|
||
|
"#46039f"
|
||
|
],
|
||
|
[
|
||
|
0.2222222222222222,
|
||
|
"#7201a8"
|
||
|
],
|
||
|
[
|
||
|
0.3333333333333333,
|
||
|
"#9c179e"
|
||
|
],
|
||
|
[
|
||
|
0.4444444444444444,
|
||
|
"#bd3786"
|
||
|
],
|
||
|
[
|
||
|
0.5555555555555556,
|
||
|
"#d8576b"
|
||
|
],
|
||
|
[
|
||
|
0.6666666666666666,
|
||
|
"#ed7953"
|
||
|
],
|
||
|
[
|
||
|
0.7777777777777778,
|
||
|
"#fb9f3a"
|
||
|
],
|
||
|
[
|
||
|
0.8888888888888888,
|
||
|
"#fdca26"
|
||
|
],
|
||
|
[
|
||
|
1,
|
||
|
"#f0f921"
|
||
|
]
|
||
|
]
|
||
|
},
|
||
|
"colorway": [
|
||
|
"#636efa",
|
||
|
"#EF553B",
|
||
|
"#00cc96",
|
||
|
"#ab63fa",
|
||
|
"#FFA15A",
|
||
|
"#19d3f3",
|
||
|
"#FF6692",
|
||
|
"#B6E880",
|
||
|
"#FF97FF",
|
||
|
"#FECB52"
|
||
|
],
|
||
|
"font": {
|
||
|
"color": "#2a3f5f"
|
||
|
},
|
||
|
"geo": {
|
||
|
"bgcolor": "white",
|
||
|
"lakecolor": "white",
|
||
|
"landcolor": "#E5ECF6",
|
||
|
"showlakes": true,
|
||
|
"showland": true,
|
||
|
"subunitcolor": "white"
|
||
|
},
|
||
|
"hoverlabel": {
|
||
|
"align": "left"
|
||
|
},
|
||
|
"hovermode": "closest",
|
||
|
"mapbox": {
|
||
|
"style": "light"
|
||
|
},
|
||
|
"paper_bgcolor": "white",
|
||
|
"plot_bgcolor": "#E5ECF6",
|
||
|
"polar": {
|
||
|
"angularaxis": {
|
||
|
"gridcolor": "white",
|
||
|
"linecolor": "white",
|
||
|
"ticks": ""
|
||
|
},
|
||
|
"bgcolor": "#E5ECF6",
|
||
|
"radialaxis": {
|
||
|
"gridcolor": "white",
|
||
|
"linecolor": "white",
|
||
|
"ticks": ""
|
||
|
}
|
||
|
},
|
||
|
"scene": {
|
||
|
"xaxis": {
|
||
|
"backgroundcolor": "#E5ECF6",
|
||
|
"gridcolor": "white",
|
||
|
"gridwidth": 2,
|
||
|
"linecolor": "white",
|
||
|
"showbackground": true,
|
||
|
"ticks": "",
|
||
|
"zerolinecolor": "white"
|
||
|
},
|
||
|
"yaxis": {
|
||
|
"backgroundcolor": "#E5ECF6",
|
||
|
"gridcolor": "white",
|
||
|
"gridwidth": 2,
|
||
|
"linecolor": "white",
|
||
|
"showbackground": true,
|
||
|
"ticks": "",
|
||
|
"zerolinecolor": "white"
|
||
|
},
|
||
|
"zaxis": {
|
||
|
"backgroundcolor": "#E5ECF6",
|
||
|
"gridcolor": "white",
|
||
|
"gridwidth": 2,
|
||
|
"linecolor": "white",
|
||
|
"showbackground": true,
|
||
|
"ticks": "",
|
||
|
"zerolinecolor": "white"
|
||
|
}
|
||
|
},
|
||
|
"shapedefaults": {
|
||
|
"line": {
|
||
|
"color": "#2a3f5f"
|
||
|
}
|
||
|
},
|
||
|
"ternary": {
|
||
|
"aaxis": {
|
||
|
"gridcolor": "white",
|
||
|
"linecolor": "white",
|
||
|
"ticks": ""
|
||
|
},
|
||
|
"baxis": {
|
||
|
"gridcolor": "white",
|
||
|
"linecolor": "white",
|
||
|
"ticks": ""
|
||
|
},
|
||
|
"bgcolor": "#E5ECF6",
|
||
|
"caxis": {
|
||
|
"gridcolor": "white",
|
||
|
"linecolor": "white",
|
||
|
"ticks": ""
|
||
|
}
|
||
|
},
|
||
|
"title": {
|
||
|
"x": 0.05
|
||
|
},
|
||
|
"xaxis": {
|
||
|
"automargin": true,
|
||
|
"gridcolor": "white",
|
||
|
"linecolor": "white",
|
||
|
"ticks": "",
|
||
|
"title": {
|
||
|
"standoff": 15
|
||
|
},
|
||
|
"zerolinecolor": "white",
|
||
|
"zerolinewidth": 2
|
||
|
},
|
||
|
"yaxis": {
|
||
|
"automargin": true,
|
||
|
"gridcolor": "white",
|
||
|
"linecolor": "white",
|
||
|
"ticks": "",
|
||
|
"title": {
|
||
|
"standoff": 15
|
||
|
},
|
||
|
"zerolinecolor": "white",
|
||
|
"zerolinewidth": 2
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"text/html": [
|
||
|
"<div> <div id=\"85a3b0a0-a2fe-4a0d-a15e-5deff3af7905\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"85a3b0a0-a2fe-4a0d-a15e-5deff3af7905\")) { Plotly.newPlot( \"85a3b0a0-a2fe-4a0d-a15e-5deff3af7905\", [{\"mode\":\"text\",\"text\":[\"the\",\"to\",\"of\",\"in\",\"and\",\"he\",\"is\",\"for\",\"on\",\"said\",\"that\",\"has\",\"says\",\"was\",\"have\",\"it\",\"be\",\"are\",\"with\",\"will\",\"at\",\"mr\",\"from\",\"by\",\"we\",\"been\",\"as\",\"an\",\"not\",\"his\",\"but\",\"they\",\"after\",\"were\",\"had\",\"there\",\"new\",\"this\",\"australia\",\"australian\",\"who\",\"palestinian\",\"people\",\"their\",\"government\",\"two\",\"up\",\"south\",\"us\",\"which\",\"year\",\"one\",\"about\",\"out\",\"if\",\"also\",\"more\",\"when\",\"its\",\"into\",\"would\",\"first\",\"last\",\"against\",\"israeli\",\"minister\",\"arafat\",\"over\",\"all\",\"three\",\"afghanistan\",\"united\",\"world\",\"no\",\"or\",\"police\",\"than\",\"attacks\",\"fire\",\"before\",\"some\",\"security\",\"day\",\"you\",\"states\",\"could\",\"them\",\"say\",\"today\",\"now\",\"told\",\"time\",\"any\",\"laden\",\"very\",\"bin\",\"just\",\"can\",\"sydney\",\"what\",\"still\",\"company\",\"president\",\"man\",\"four\",\"taliban\",\"killed\",\"our\",\"forces\",\"al\",\"around\",\"being\",\"days\",\"west\",\"old\",\"other\",\"officials\",\"where\",\"so\",\"test\",\"qaeda\",\"israel\",\"think\",\"per\",\"general\",\"next\",\"federal\",\"force\",\"cent\",\"she\",\"leader\",\"yesterday\",\"workers\",\"take\",\"him\",\"hamas\",\"under\",\"state\",\"those\",\"years\",\"meeting\",\"bank\",\"suicide\",\"back\",\"action\",\"commission\",\"made\",\"down\",\"morning\",\"re\",\"pakistan\",\"international\",\"city\",\"attack\",\"centre\",\"group\",\"afghan\",\"members\",\"while\",\"military\",\"well\",\"number\",\"through\",\"qantas\",\"five\",\"local\",\"called\",\"area\",\"union\",\"gaza\",\"week\",\"national\",\"since\",\"wales\",\"including\",\"hours\",\"september\",\"another\",\"east\",\"night\",\"report\",\"off\",\"north\",\"should\",\"get\",\"second\",\"go\",\"earlier\",\"war\",\"staff\",\"six\",\"these\",\"between\",\"islamic\",\"months\",\"further\",\"end\",\"defence\",\"do\",\"sharon\",\"near\",\"team\",\"foreign\",\"power\",\"areas\",\"work\",\"going\",\"authority\",\"because\",\"way\",\"eight\",\"india\",\"only\",\"know\",\"month\",\"during\",\"died\",\"many\",\"match\",\"make\",\"air\",\"metres\",\"left\",\"claims\",\"spokesman\",\"ve\",\"former\",\"melbourne\",\"northern\",\"good\",\"authorities\",\"most\",\"osama\",\"support\",\"prime\",\"peace\",\"like\",\"set\",\"ago\",\"expected\",\"saying\",\"given\",\"am\",\"come\",\"looking\",\"militants\",\"bora\",\"tora\",\"put\",\"place\",\"several\",\"fighters\",\"children\",\"arrested\",\"injured\",\"found\",\"river\",\"royal\",\"groups\",\"africa\",\"unions\",\"christmas\",\"troops\",\"meanwhile\",\"indian\",\"child\",\"hospital\",\"terrorist\",\"interim\",\"part\",\"reports\",\"talks\",\"official\",\"whether\",\"then\",\"yasser\",\"statement\",\"leaders\",\"economy\",\"mountains\",\"how\",\"industrial\",\"third\",\"terrorism\",\"senior\",\"start\",\"don\",\"early\",\"radio\",\"john\",\"hit\",\"trying\",\"weather\",\"public\",\"both\",\"believe\",\"family\",\"pay\",\"million\",\"army\",\"court\",\"dr\",\"long\",\"best\",\"control\",\"help\",\"however\",\"lead\",\"adelaide\",\"asked\",\"following\",\"chief\",\"pressure\",\"agreement\",\"does\",\"service\",\"firefighters\",\"close\",\"few\",\"services\",\"labor\",\"play\",\"better\",\"community\",\"taken\",\"want\",\"arrest\",\"queensland\",\"house\",\"need\",\"overnight\",\"australians\",\"high\",\"confirmed\",\"process\",\"information\",\"came\",\"believed\",\"williams\",\"must\",\"opposition\",\"detainees\",\"won\",\"s
|
||
|
" \n",
|
||
|
"var gd = document.getElementById('85a3b0a0-a2fe-4a0d-a15e-5deff3af7905');\n",
|
||
|
"var x = new MutationObserver(function (mutations, observer) {{\n",
|
||
|
" var display = window.getComputedStyle(gd).display;\n",
|
||
|
" if (!display || display === 'none') {{\n",
|
||
|
" console.log([gd, 'removed!']);\n",
|
||
|
" Plotly.purge(gd);\n",
|
||
|
" observer.disconnect();\n",
|
||
|
" }}\n",
|
||
|
"}});\n",
|
||
|
"\n",
|
||
|
"// Listen for the removal of the full notebook cells\n",
|
||
|
"var notebookContainer = gd.closest('#notebook-container');\n",
|
||
|
"if (notebookContainer) {{\n",
|
||
|
" x.observe(notebookContainer, {childList: true});\n",
|
||
|
"}}\n",
|
||
|
"\n",
|
||
|
"// Listen for the clearing of the current output cell\n",
|
||
|
"var outputEl = gd.closest('.output');\n",
|
||
|
"if (outputEl) {{\n",
|
||
|
" x.observe(outputEl, {childList: true});\n",
|
||
|
"}}\n",
|
||
|
"\n",
|
||
|
" }) }; }); </script> </div>"
|
||
|
]
|
||
|
},
|
||
|
"metadata": {},
|
||
|
"output_type": "display_data"
|
||
|
}
|
||
|
],
|
||
|
"source": [
|
||
|
"plot_with_plotly(x_vals, y_vals, labels)"
|
||
|
]
|
||
|
},
|
||
|
{
|
||
|
"cell_type": "code",
|
||
|
"execution_count": null,
|
||
|
"metadata": {},
|
||
|
"outputs": [],
|
||
|
"source": []
|
||
|
}
|
||
|
],
|
||
|
"metadata": {
|
||
|
"interpreter": {
|
||
|
"hash": "a991b7e5a58af45663279ce1606e861d35361e78ec04a120e3cc987f7e474d97"
|
||
|
},
|
||
|
"kernelspec": {
|
||
|
"display_name": "Python 3.10.2 ('venv': venv)",
|
||
|
"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.2"
|
||
|
},
|
||
|
"orig_nbformat": 4
|
||
|
},
|
||
|
"nbformat": 4,
|
||
|
"nbformat_minor": 2
|
||
|
}
|