Created
October 14, 2016 13:15
-
-
Save AashishTiwari/1b2ae9de1ff28c50286f8edefac894d7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"slideshow": { | |
"slide_type": "slide" | |
} | |
}, | |
"source": [ | |
"## Data Science and (Unsupervised) Machine Learning with `scikit-learn` \n", | |
"### TExT Pipeline 3\n", | |
"####### (Changes by Aashish Tiwari <[email protected]> )\n", | |
"##### By [Nicolas Kruchten](mailto:[email protected])\n", | |
"##### Presented Dec 1, 2014 at [Montreal Python](http://montrealpython.org/en/2014/11/mp50/)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 1, | |
"metadata": { | |
"collapsed": false, | |
"slideshow": { | |
"slide_type": "skip" | |
} | |
}, | |
"outputs": [], | |
"source": [ | |
"# from IPython.display import YouTubeVideo\n", | |
"# YouTubeVideo('2lpS6gUwiJQ')" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"slideshow": { | |
"slide_type": "slide" | |
} | |
}, | |
"source": [ | |
"### In this Notebook:\n", | |
"\n", | |
"* A different way to look at graph analysis and visualization,\n", | |
"* as an introduction to a few cool algorithms: Truncated SVD, K-Means and t-SNE\n", | |
"* with a practical walkthrough using `scikit-learn` and friends `numpy` and `bokeh`,\n", | |
"* and finishing off with some more general commentary on this approach to data analysis.\n", | |
"\n", | |
"Links:\n", | |
"\n", | |
"* One-page HTML version at [http://opensource.datacratic.com/mtlpy50](http://opensource.datacratic.com/mtlpy50)\n", | |
"* All materials available at [https://github.com/datacratic/mtlpy50](https://github.com/datacratic/mtlpy50)\n", | |
"* Video of this presentation at [https://www.youtube.com/watch?v=2lpS6gUwiJQ](https://www.youtube.com/watch?v=2lpS6gUwiJQ)" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"slideshow": { | |
"slide_type": "slide" | |
} | |
}, | |
"source": [ | |
"# A map of Reddit\n", | |
"\n", | |
"* Reddit is \"the front page of the internet\"\n", | |
"* Basically a discussion board, with sub-boards called **subreddits**\n", | |
"* Figure from this paper: *Navigating the massive world of reddit: Using backbone networks to map user interests in social media*\n", | |
" * [http://arxiv.org/pdf/1312.3387v1.pdf](http://arxiv.org/pdf/1312.3387v1.pdf)\n", | |
" * They took data about who posted to what subreddit\n", | |
" * Two subreddits have a link if enough users posted to both\n", | |
" * Visualization using [Gephi](http://gephi.org/) with the [OpenOrd layout algorithm](http://www.sandia.gov/~smartin/presentations/OpenOrd.pdf)\n", | |
" * Very cool [interactive version](http://rhiever.github.io/redditviz/clustered/)\n", | |
"\n", | |
"<img src=\"redditmap.png\">\n", | |
"\n", | |
"* Seems like a totally natural approach but I want to show another way of doing this" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"slideshow": { | |
"slide_type": "slide" | |
} | |
}, | |
"source": [ | |
"# `scikit-learn`\n", | |
"\n", | |
"<img src=\"scikit-learn-logo-small.png\">\n", | |
"\n", | |
"* `scikit-learn` is becoming the de-facto machine learning library for Python\n", | |
"* Works in conjunction with `scipy` and `numpy`\n", | |
"* Part of the [PyData toolbox](http://pydata.org/downloads/), along with `pandas` and `bokeh`" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"slideshow": { | |
"slide_type": "slide" | |
} | |
}, | |
"source": [ | |
"# A first look at the data\n", | |
"\n", | |
"File comes from here: [http://figshare.com/articles/reddit_user_posting_behavior/874101](http://figshare.com/articles/reddit_user_posting_behavior/874101)\n" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"slideshow": { | |
"slide_type": "slide" | |
} | |
}, | |
"source": [ | |
"# Read Data into Pandas and Formatting:" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 2, | |
"metadata": { | |
"collapsed": false, | |
"slideshow": { | |
"slide_type": "-" | |
} | |
}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"<div>\n", | |
"<table border=\"1\" class=\"dataframe\">\n", | |
" <thead>\n", | |
" <tr style=\"text-align: right;\">\n", | |
" <th></th>\n", | |
" <th>user</th>\n", | |
" <th>0</th>\n", | |
" <th>1</th>\n", | |
" <th>2</th>\n", | |
" <th>3</th>\n", | |
" <th>4</th>\n", | |
" <th>5</th>\n", | |
" <th>6</th>\n", | |
" <th>7</th>\n", | |
" <th>8</th>\n", | |
" <th>...</th>\n", | |
" <th>15</th>\n", | |
" <th>16</th>\n", | |
" <th>17</th>\n", | |
" <th>18</th>\n", | |
" <th>19</th>\n", | |
" <th>20</th>\n", | |
" <th>21</th>\n", | |
" <th>22</th>\n", | |
" <th>23</th>\n", | |
" <th>24</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>0</th>\n", | |
" <td>603</td>\n", | |
" <td>politics</td>\n", | |
" <td>trees</td>\n", | |
" <td>pics</td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td>...</td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>1</th>\n", | |
" <td>604</td>\n", | |
" <td>Metal</td>\n", | |
" <td>AskReddit</td>\n", | |
" <td>tattoos</td>\n", | |
" <td>redditguild</td>\n", | |
" <td>WTF</td>\n", | |
" <td>cocktails</td>\n", | |
" <td>pics</td>\n", | |
" <td>funny</td>\n", | |
" <td>gaming</td>\n", | |
" <td>...</td>\n", | |
" <td>trackers</td>\n", | |
" <td>Minecraft</td>\n", | |
" <td>gainit</td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2</th>\n", | |
" <td>605</td>\n", | |
" <td>politics</td>\n", | |
" <td>IAmA</td>\n", | |
" <td>AdviceAnimals</td>\n", | |
" <td>movies</td>\n", | |
" <td>smallbusiness</td>\n", | |
" <td>Republican</td>\n", | |
" <td>todayilearned</td>\n", | |
" <td>AskReddit</td>\n", | |
" <td>WTF</td>\n", | |
" <td>...</td>\n", | |
" <td>atheism</td>\n", | |
" <td>Jeep</td>\n", | |
" <td>Music</td>\n", | |
" <td>grandrapids</td>\n", | |
" <td>reddit.com</td>\n", | |
" <td>videos</td>\n", | |
" <td>yoga</td>\n", | |
" <td>GetMotivated</td>\n", | |
" <td>bestof</td>\n", | |
" <td>ShitRedditSays</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>3</th>\n", | |
" <td>606</td>\n", | |
" <td>CrohnsDisease</td>\n", | |
" <td>birthcontrol</td>\n", | |
" <td>IAmA</td>\n", | |
" <td>AdviceAnimals</td>\n", | |
" <td>AskReddit</td>\n", | |
" <td>Endo</td>\n", | |
" <td>WTF</td>\n", | |
" <td>TwoXChromosomes</td>\n", | |
" <td>pics</td>\n", | |
" <td>...</td>\n", | |
" <td>Cartalk</td>\n", | |
" <td>aww</td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>4</th>\n", | |
" <td>607</td>\n", | |
" <td>space</td>\n", | |
" <td>Fitment</td>\n", | |
" <td>cars</td>\n", | |
" <td>Economics</td>\n", | |
" <td>Libertarian</td>\n", | |
" <td>240sx</td>\n", | |
" <td>UserCars</td>\n", | |
" <td>AskReddit</td>\n", | |
" <td>WTF</td>\n", | |
" <td>...</td>\n", | |
" <td>Drifting</td>\n", | |
" <td>Justrolledintotheshop</td>\n", | |
" <td>atheism</td>\n", | |
" <td>gadgets</td>\n", | |
" <td>videos</td>\n", | |
" <td>business</td>\n", | |
" <td>gamernews</td>\n", | |
" <td>Cartalk</td>\n", | |
" <td>worldnews</td>\n", | |
" <td>carporn</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>5</th>\n", | |
" <td>608</td>\n", | |
" <td>politics</td>\n", | |
" <td>Flagstaff</td>\n", | |
" <td>Rainmeter</td>\n", | |
" <td>fffffffuuuuuuuuuuuu</td>\n", | |
" <td>pcgaming</td>\n", | |
" <td>screenshots</td>\n", | |
" <td>truegaming</td>\n", | |
" <td>AdviceAnimals</td>\n", | |
" <td>Guildwars2</td>\n", | |
" <td>...</td>\n", | |
" <td>SuggestALaptop</td>\n", | |
" <td>battlefield3</td>\n", | |
" <td>WTF</td>\n", | |
" <td>starcraft</td>\n", | |
" <td>creepy</td>\n", | |
" <td>pics</td>\n", | |
" <td>funny</td>\n", | |
" <td>darksouls</td>\n", | |
" <td>books</td>\n", | |
" <td>gaming</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>6</th>\n", | |
" <td>609</td>\n", | |
" <td>Clarinet</td>\n", | |
" <td>AdviceAnimals</td>\n", | |
" <td>festivals</td>\n", | |
" <td>SubredditDrama</td>\n", | |
" <td>InternetAMA</td>\n", | |
" <td>AskReddit</td>\n", | |
" <td>aves</td>\n", | |
" <td>cringe</td>\n", | |
" <td>MemesIRL</td>\n", | |
" <td>...</td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>7</th>\n", | |
" <td>610</td>\n", | |
" <td>RedHotChiliPeppers</td>\n", | |
" <td>fffffffuuuuuuuuuuuu</td>\n", | |
" <td>tifu</td>\n", | |
" <td>civ</td>\n", | |
" <td>gameofthrones</td>\n", | |
" <td>IAmA</td>\n", | |
" <td>AdviceAnimals</td>\n", | |
" <td>movies</td>\n", | |
" <td>explainlikeimfive</td>\n", | |
" <td>...</td>\n", | |
" <td>skyrim</td>\n", | |
" <td>WTF</td>\n", | |
" <td>germany</td>\n", | |
" <td>pics</td>\n", | |
" <td>funny</td>\n", | |
" <td>seduction</td>\n", | |
" <td>circlebroke</td>\n", | |
" <td>sto</td>\n", | |
" <td>gaming</td>\n", | |
" <td>4chan</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>8</th>\n", | |
" <td>611</td>\n", | |
" <td>beertrade</td>\n", | |
" <td>AskReddit</td>\n", | |
" <td>WTF</td>\n", | |
" <td>beer</td>\n", | |
" <td>batman</td>\n", | |
" <td>BBQ</td>\n", | |
" <td>beerporn</td>\n", | |
" <td>Homebrewing</td>\n", | |
" <td></td>\n", | |
" <td>...</td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>9</th>\n", | |
" <td>612</td>\n", | |
" <td>politics</td>\n", | |
" <td>2012Elections</td>\n", | |
" <td>Parenting</td>\n", | |
" <td>IAmA</td>\n", | |
" <td>fresno</td>\n", | |
" <td>picrequests</td>\n", | |
" <td>AskReddit</td>\n", | |
" <td>loseit</td>\n", | |
" <td>WTF</td>\n", | |
" <td>...</td>\n", | |
" <td>RedditLaqueristas</td>\n", | |
" <td>atheism</td>\n", | |
" <td>LadyBoners</td>\n", | |
" <td>GradSchool</td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" <td></td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"<p>10 rows × 26 columns</p>\n", | |
"</div>" | |
], | |
"text/plain": [ | |
" user 0 1 2 \\\n", | |
"0 603 politics trees pics \n", | |
"1 604 Metal AskReddit tattoos \n", | |
"2 605 politics IAmA AdviceAnimals \n", | |
"3 606 CrohnsDisease birthcontrol IAmA \n", | |
"4 607 space Fitment cars \n", | |
"5 608 politics Flagstaff Rainmeter \n", | |
"6 609 Clarinet AdviceAnimals festivals \n", | |
"7 610 RedHotChiliPeppers fffffffuuuuuuuuuuuu tifu \n", | |
"8 611 beertrade AskReddit WTF \n", | |
"9 612 politics 2012Elections Parenting \n", | |
"\n", | |
" 3 4 5 6 \\\n", | |
"0 \n", | |
"1 redditguild WTF cocktails pics \n", | |
"2 movies smallbusiness Republican todayilearned \n", | |
"3 AdviceAnimals AskReddit Endo WTF \n", | |
"4 Economics Libertarian 240sx UserCars \n", | |
"5 fffffffuuuuuuuuuuuu pcgaming screenshots truegaming \n", | |
"6 SubredditDrama InternetAMA AskReddit aves \n", | |
"7 civ gameofthrones IAmA AdviceAnimals \n", | |
"8 beer batman BBQ beerporn \n", | |
"9 IAmA fresno picrequests AskReddit \n", | |
"\n", | |
" 7 8 ... 15 \\\n", | |
"0 ... \n", | |
"1 funny gaming ... trackers \n", | |
"2 AskReddit WTF ... atheism \n", | |
"3 TwoXChromosomes pics ... Cartalk \n", | |
"4 AskReddit WTF ... Drifting \n", | |
"5 AdviceAnimals Guildwars2 ... SuggestALaptop \n", | |
"6 cringe MemesIRL ... \n", | |
"7 movies explainlikeimfive ... skyrim \n", | |
"8 Homebrewing ... \n", | |
"9 loseit WTF ... RedditLaqueristas \n", | |
"\n", | |
" 16 17 18 19 20 \\\n", | |
"0 \n", | |
"1 Minecraft gainit \n", | |
"2 Jeep Music grandrapids reddit.com videos \n", | |
"3 aww \n", | |
"4 Justrolledintotheshop atheism gadgets videos business \n", | |
"5 battlefield3 WTF starcraft creepy pics \n", | |
"6 \n", | |
"7 WTF germany pics funny seduction \n", | |
"8 \n", | |
"9 atheism LadyBoners GradSchool \n", | |
"\n", | |
" 21 22 23 24 \n", | |
"0 \n", | |
"1 \n", | |
"2 yoga GetMotivated bestof ShitRedditSays \n", | |
"3 \n", | |
"4 gamernews Cartalk worldnews carporn \n", | |
"5 funny darksouls books gaming \n", | |
"6 \n", | |
"7 circlebroke sto gaming 4chan \n", | |
"8 \n", | |
"9 \n", | |
"\n", | |
"[10 rows x 26 columns]" | |
] | |
}, | |
"execution_count": 2, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"import pandas as pd \n", | |
"\n", | |
"pd.read_csv(\"reddit-user-posting-behavior.csv\", nrows=10, names=[\"user\"]+range(25)).fillna(\"\")" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"# Loading the data into a sparse matrix\n", | |
"\n", | |
"* We want a matrix: rows are subreddits, columns are users\n", | |
" * cells will be 1 if user posted to subreddit, otherwise 0\n", | |
"* This step was the most technically challenging\n", | |
"* Naïve first few tries: 20 minute run-time\n", | |
"* The code below runs around 10 seconds\n" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 3, | |
"metadata": { | |
"collapsed": false, | |
"slideshow": { | |
"slide_type": "-" | |
} | |
}, | |
"outputs": [ | |
{ | |
"name": "stdout", | |
"output_type": "stream", | |
"text": [ | |
"(15122, 876961)\n", | |
"\n", | |
"Wall time: 8.71 s\n" | |
] | |
} | |
], | |
"source": [ | |
"%%time\n", | |
"\n", | |
"user_ids = []\n", | |
"subreddit_ids = []\n", | |
"subreddit_to_id = {}\n", | |
"i=0\n", | |
"with open(\"reddit-user-posting-behavior.csv\", 'r') as f:\n", | |
" for line in f:\n", | |
" for sr in line.rstrip().split(\",\")[1:]: \n", | |
" if sr not in subreddit_to_id: \n", | |
" subreddit_to_id[sr] = len(subreddit_to_id)\n", | |
" user_ids.append(i)\n", | |
" subreddit_ids.append(subreddit_to_id[sr])\n", | |
" i+=1\n", | |
" \n", | |
"import numpy as np\n", | |
"from scipy.sparse import csr_matrix \n", | |
"\n", | |
"rows = np.array(subreddit_ids)\n", | |
"cols = np.array(user_ids)\n", | |
"data = np.ones((len(user_ids),))\n", | |
"num_rows = len(subreddit_to_id)\n", | |
"num_cols = i\n", | |
"\n", | |
"# the code above exists to feed this call\n", | |
"adj = csr_matrix( (data,(rows,cols)), shape=(num_rows, num_cols) )\n", | |
"print adj.shape\n", | |
"print \"\"\n", | |
"\n", | |
"# now we have our matrix, so let's gather up a bit of info about it\n", | |
"users_per_subreddit = adj.sum(axis=1).A1\n", | |
"subreddits = range(len(subreddit_to_id))\n", | |
"for sr in subreddit_to_id:\n", | |
" subreddits[subreddit_to_id[sr]] = sr\n", | |
"subreddits = np.array(subreddits)" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"slideshow": { | |
"slide_type": "slide" | |
} | |
}, | |
"source": [ | |
"# Unwieldy data\n", | |
"\n", | |
"Our adjacency matrix is a bit problematic to deal with as-is:\n", | |
"\n", | |
"* It's a very wide: 850,000 columns\n", | |
"* It's very sparse: only about 0.06% full\n", | |
"* It's a binary matrix: only 0's and 1's\n", | |
"\n", | |
"## Dimensionality reduction\n", | |
"\n", | |
"* Family of algorithms for solving this problem\n", | |
"* AKA decomposition, compression, feature extraction\n", | |
" * it's to big matrices what JPEG is to photos, MP3 to music, MPEG for video etc\n", | |
"* The output will be as wide as we ask for\n", | |
" * The wider it is the less lossy the compression will be\n", | |
"* The output matrix will be dense\n", | |
"* The output matrix will have continuous real values\n", | |
"* `scikit-learn` has a [decomposition package](http://scikit-learn.org/stable/modules/decomposition.html)\n", | |
"\n" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"slideshow": { | |
"slide_type": "slide" | |
} | |
}, | |
"source": [ | |
"# We'll use `TruncatedSVD`\n", | |
"\n", | |
"* [TruncatedSVD](http://scikit-learn.org/stable/modules/generated/sklearn.decomposition.TruncatedSVD.html) from `scikit-learn`\n", | |
"* SVD stands for Singular Vector Decomposition, Truncated because we only want part of the computation\n", | |
"* Good mathy description of how it works in [Chapter 11](http://infolab.stanford.edu/~ullman/mmds/ch11.pdf) of online book [Mining of Massive Datasets](http://www.mmds.org/)\n", | |
"* Right now let's focus on how to use it and exploring the output" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 4, | |
"metadata": { | |
"collapsed": false | |
}, | |
"outputs": [ | |
{ | |
"name": "stdout", | |
"output_type": "stream", | |
"text": [ | |
"(15122L, 100L)\n", | |
"Wall time: 58.2 s\n" | |
] | |
} | |
], | |
"source": [ | |
"%%time\n", | |
"\n", | |
"from sklearn.decomposition import TruncatedSVD \n", | |
"from sklearn.preprocessing import normalize \n", | |
"\n", | |
"svd = TruncatedSVD(n_components=100)\n", | |
"embedded_coords = normalize(svd.fit_transform(adj), norm='l1')\n", | |
"print embedded_coords.shape\n" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"slideshow": { | |
"slide_type": "-" | |
} | |
}, | |
"source": [ | |
"The output is kind of neat:\n", | |
"\n", | |
"* Each row is like a set of coordinates in a 100-dimensional space for a subreddit\n", | |
"* Each column defines one axis of this 100-dimensional space, ordered by how much information they capture\n", | |
"* We can look at how much of the original matrix we captured with the first N dimensions\n", | |
"* The first 2 capture around 25%\n", | |
"* The 100 we will use capture around 60%" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 5, | |
"metadata": { | |
"collapsed": false | |
}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/plain": [ | |
"<matplotlib.axes._subplots.AxesSubplot at 0x323dcb70>" | |
] | |
}, | |
"execution_count": 5, | |
"metadata": {}, | |
"output_type": "execute_result" | |
}, | |
{ | |
"data": { | |
"image/png": "iVBORw0KGgoAAAANSUhEUgAAAvwAAAHfCAYAAAAsiAyKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3Xm4lWW9//H3V3DCIfQ4K2YmIiCCRkgox62iopmUWubQ\nadKsHE/Hjnk650in8uSvTmWDSkqaQ9pkCuWsbXFAEEFQJkVFARVUnAAVkPv3x723e4PseXjWWvv9\nuq7nWnut53nW+u6rdeWHe3/v+46UEpIkSZIq0wZFFyBJkiSp4xj4JUmSpApm4JckSZIqmIFfkiRJ\nqmAGfkmSJKmCGfglSZKkCtZk4I+IkRExJyKeiojzG7imKiKmRcQTEVFd7/X5ETGj5tzkdqxbkiRJ\nUjNEY+vwR0Q3YC4wAlgEPAKcmFKaXe+ansCDwBEppYURsU1K6ZWac88CH0spLe3A30GSJElSA5oa\n4R8CzEspzU8prQJuBEatc81JwF9SSgsBasN+PdEulUqSJElqsaYC/87AgnrPF9a8Vl9vYOuI+EdE\nTImIL9Q7l4C7a14/re3lSpIkSWqJ7k2cb7jfp86GwH7AoUAPYGJEPJxSego4MKX0QkRsC9wVEXNS\nSvfXvzkimvMZkiRJkpqQUvpAd01TgX8R0Kve817kUf76FgCvpJTeBt6OiAnAQOCplNILNR/8ckT8\nldwidP8699PYPAKpuUaPHs3o0aOLLkNlzu+R2ovfJbUHv0dqiYj1d9I31dIzBegdEbtFxEbACcC4\nda65BTgwIrpFRA9gf2BWRPSIiC1qPnwz4HDg8Tb8DpIkSZJaqNER/pTS6og4E7gD6AaMTSnNjojT\na86PSSnNiYjbgRnAGuCKlNKsiNgduKnmXxrdgetTSnd25C8jSZIkaW1NtfSQUroNuG2d18as8/wn\nwE/Wee0ZYFA71Cg1S1VVVdElqAL4PVJ78buk9uD3SO2h0XX4O6WAiFR0DZIkSVK5i4hWTdqVJEmS\nKkJDk1rLUUsGzA38kiRJ6jIqobOkpf9waWqVHkmSJEllzMAvSZIkVTADvyRJklTBDPySJElSBTPw\nS5IkSRXMwC9JkiSVgKVLl/KZz3yGzTffnN12240bbrihXd7XZTklSZKkEnDGGWewySabsGTJEqZN\nm8YnP/lJBg4cSL9+/dr0vu60K0mSpC6hZifaostYr+XLl7P11lszc+ZM9thjDwC++MUvstNOO/G/\n//u/a13b0O/R0E67tvRIkiRJBXvyySfp3r37+2EfYODAgcycObPN721LjyRJklSjhZvYNqilf0hY\ntmwZW2655VqvbbHFFrz11lttrsXAL0mSJNUoquNn8803580331zrtTfeeIMtttiize9tS48kSZJU\nsD333JPVq1czb96891+bPn06e++9d5vf20m7kiRJ6hJKedIuwIknnkhEcOWVVzJ16lSOPvpoJk6c\nSN++fde6zkm7kiRJUhm69NJLefvtt9luu+045ZRTuPzyyz8Q9lvDEX5JkiR1CaU+wt9cjvBLkiRJ\nep+BX5IkSapgBn5JkiSpghn4JUmSpApm4JckSZIqmIFfkiRJqmDdiy5AkiRJ6iwRH1i1suIZ+CVJ\nktQlVMIa/K1hS48kSZJUwQz8kiRJUgUz8EuSJEkVzMAvSZIkVTADvyRJklTBDPySJElSBTPwS5Ik\nSRXMwC9JkiRVMAO/JEmSVMEM/JIkSVIFM/BLkiRJFczAL0mSJFUwA78kSZJUwQz8kiRJUgUz8EuS\nJEkVrMnAHxEjI2JORDwVEec3cE1VREyLiCciorol90qSJEnqON0bOxkR3YBfASOARcAjETEupTS7\n3jU9gV8DR6SUFkbENs29V5IkSVLLvfYazJkDc+fmxzlzGr620cAPDAHmpZTmA0TEjcAooH5oPwn4\nS0ppIUBK6ZUW3CtJkiRpPd57D55/HmbPrgv1tQH/7behTx/Ya698nHIK3HLL+t+nqcC/M7Cg3vOF\nwP7rXNMb2DAi/gFsAVySUrq2mfdKkiRJXdqKFfDkk2sH+zlz4KmnYJtt6kL9wIHw+c/nn3fcESKa\n9/5NBf7UjPfYENgPOBToAUyMiIebeS8Ao0ePfv/nqqoqqqqqmnurJEmSVBZefjkH+dpgX/v40kuw\nxx51wX7UKDj/fNhzT9h884bfr7q6murq6iY/N1JqOJdHxFBgdEppZM3zC4A1KaWL611zPrBpSml0\nzfMrgdvJI/qN3lvzemqsBkmSJKlcrFmzdhvO7Nl1x+rV0LdvPvbaq+7xIx+B7k0NwzdDRJBS+sC4\nf1OBvzswlzx6/wIwGThxnUm7e5En5x4BbAxMAk4Anmzq3pr7DfySJEkqKytXwrx5awf62bNzj33P\nnnXBvv6x/fbNb8NpjYYCf6P/lkgprY6IM4E7gG7A2JTS7Ig4veb8mJTSnIi4HZgBrAGuSCnNqvnQ\nD9zbrr+VJEmS1IHeeSeH+Fmz1j6efRZ23bUuzB9+OJxzTp5I+6EPFV312hod4e+UAhzhlyRJUsFW\nrMgtODNnrh3sFy6Ej34U+vVb++jdGzbeuOiq19aqlp7OYOCXJElSZ1mxIrfe1Ab72scXXsghvn//\nHOj79s0/77EHbLhh0VU3j4FfkiRJXcb6gv3MmfDii3n1m9pg379/PnbfvX0mzhbJwC9JkqSK8847\nda04tccTT+QR+z33XDvUV0qwb4iBX5IkSWVr1aq8EdUTT+SjNtg//3zusa8f6mtbcSo12DfEwC9J\nkqSSt2YNzJ9fF+wffzw/zpsHvXrB3nvno3///Ni7N2y0UdFVlwYDvyRJkkrK4sV1gb72ceZM2Gor\nGDBg7XDfrx9sumnRFZc2A78kSZIKsWxZDvKPP752wF+9Ogf72nA/YEAO9z17Fl1xeTLwS5IkqUO9\n915uvZkxoy7cP/54nkC711514b722HHHjt15tqsx8EuSJKndvPJKDvb1j9mzYYcd6gL9Pvvkx644\ngbYIBn5JkiS12MqVMHduDvTTp9eF+xUrcqCvf/TvD1tsUXTFXZeBX5IkSY1asqQu1Nc+zp0LH/4w\nDBxYF+wHDswr5tiOU1oM/JIkSQLymvZz5+ZQX3vMmJE3sRo4sC7cDxyYV8fp0aPoitUcBn5JkqQu\n6LXX1g7206fnXvtddqkL97WHo/blzcAvSZJUwdasgWefhccey6G+9nHp0jxxdtCgumC/996w+eZF\nV6z2ZuCXJEmqEG+/ndeyrx/uZ8zI69fXD/aDBsHuu8MGGxRdsTqDgV+SJKkMLVmydrB/7DF45hnY\nc0/Yd9+6YD9wIGy9ddHVqkgGfkmSpBK2Zk3etKo21Nceb7+dA31tqB80CPr2hY03LrpilRoDvyRJ\nUomo35Lz2GMwbVrekXabberCfW3A//CHnUir5jHwS5IkFWDp0rpQX/v49NNrt+TUPm61VdHVqpwZ\n+CVJkjpQSvDCCznQT52aH6dNg1dfrQv1gwblx/79bclR+zPwS5IktZOU8sTZqVPrwv3Uqfn1ffeF\n/fbLj/vuC3vs4So56hwGfkmSpFZ47728K239cD9tGmy55drhfr/9YOed7bdXcQz8kiRJTVi5EmbN\nqgv3U6fm9e133DGH+o99rG7kfttti65WWpuBX5IkqZ6VK/NKOY8+ClOm5MdZs+AjH8mj9bXHoEHw\noQ8VXa3UNAO/JEnqslatgpkz64L9lCn5+e6751H72mPQINhss6KrlVrHwC9JkrqE1avzSH1tsJ8y\nJY/k77ZbDvWDBxvuVZkM/JIkqeLUTqitDfZTpsD06dCrVw72teF+331h882LrlbqWAZ+SZJU1tas\nyRtWPfJIXbifNg122KEu3A8enMP9llsWXa3U+Qz8kiSpbKQECxbkUP/II/l49NEc5D/+8XwMHpwn\n1bo7rZQZ+CVJUsl65ZW6YF97pFQX7msD/nbbFV2pVLoM/JIkqSQsX57Xt588OQf7yZPh1Vdzr/3H\nPw5DhuTHXr3cxEpqCQO/JEnqdKtX5xVy6of7p56CAQPWDvd9+sAGGxRdrVTeDPySJKlDpQTz5+dQ\nP3kyTJoEjz0Gu+5aF+6HDIF99oGNNy66WqnyGPglSVK7eu21tcP95MnQrRvsv38+hgzJfffuUit1\nDgO/JElqtVWr4PHH4eGHc7ifNAkWLcp997Xhfv/9Yeed7buXimLglyRJzbZoUQ73tce0aXmn2trR\n+/33h/79oXv3oiuVVMvAL0mS1uudd3Kgnzgxh/uJE+Htt+ETn4ChQ+tG8N3MSiptBn5JkgTkDa0m\nTqw7Hn8c9torh/vakP/Rj9qaI5UbA78kSV3Qu+/Wjd4/9FB+XLkyB/vaY/Bg2GyzoiuV1FYGfkmS\nuoDFi+vC/UMP5bC/55514X7YMNh9d0fvpUrU6sAfESOBnwPdgCtTShevc74KuAV4pualm1JK3685\nNx94E3gPWJVSGrKe9zfwS5LUCmvWwKxZ8OCDOdw/+GDesXbo0Bzshw3LvfdbbFF0pZI6Q6sCf0R0\nA+YCI4BFwCPAiSml2fWuqQK+lVI6Zj33Pwt8LKW0tJHPMPBLktQMy5fnte4ffDAfDz8M22wDBxyQ\nj2HDoG9fd6yVuqqGAn9Ti2kNAeallObXvMmNwChg9jrXNfaHQf9oKElSKyxaVBfuH3wQZs+GgQNz\nuP/a1+Dqq2H77YuuUlKpayrw7wwsqPd8IbD/OtckYFhETCf/FeC8lNKseufujoj3gDEppSvaoWZJ\nkirOmjUwcyY88EBdwH/zzTxqf8AB8POf58m1m2xSdKWSyk1Tgb85vTZTgV4ppRURcSRwM7BnzbkD\nUkovRsS2wF0RMSeldH8b6pUkqSK88w488kgO+A88kHvwa9tzqqrgu9+FPn1sz5HUdk0F/kVAr3rP\ne5FH+d+XUnqr3s+3RcSlEbF1SmlpSunFmtdfjoi/kluEPhD4R48e/f7PVVVVVFVVtfDXkCSptL36\nag71tQF/+nTo1w8OPBC++lX47W9tz5HUMtXV1VRXVzd5XVOTdruTJ+0eCrwATOaDk3a3B5aklFJE\nDAH+mFLaLSJ6AN1SSm9FxGbAncD3Ukp3rvMZTtqVJFWUlOC55+rC/f33582uhg7NAf/AA/Puta59\nL6k9tWrSbkppdUScCdxBXpZzbEppdkScXnN+DHA88I2IWA2sAD5fc/sOwE2RF/rtDly/btiXJKkS\n1C6Pef/9dceqVTB8eA73p52WJ9t2b+rv6pLUAdx4S5KkFlq1CqZOhQkTcrh/8EHYaqsc8GuPPfZw\ncytJncuddiVJaqUVK/Ka9/ffn0P+5Ml5t9p//ue6Ufyddiq6SkldnYFfkqRmev31PGo/YUI+ZszI\nLTnDh+eQf8AB0LNn0VVK0toM/JIkNWDJkrrR+wkTYN68PKm2NuDvvz/06FF0lZLUOAO/JEk1Fi2C\n++7Lx4QJ8OKLedT+oINywN9vP9hoo6KrlKSWMfBLkrqs556rC/j33ZdbdoYPzwH/oINgn32gW7ei\nq5SktjHwS5K6jOeeg+rqumPFirpwf9BBecMrd7CVVGkM/JKkirW+gF9VBQcfnAP+Xnu5RKakymfg\nlyRVjAULcrD/xz/y47JldQG/qsqAL6lrMvBLksrWCy/UBfx//CP34NcP+P36GfAlycAvSSobr7yS\nA/699+ZjyZIc7GtDfv/+9uBL0roM/JKkkvXmm3n1nNqAP39+3r32kEPyMXCgAV+SmmLglySVjHff\nhYkT4e674Z574PHH8+ZWhx6aA/7HPgYbblh0lZJUXgz8kqTCvPcePPZYDvd3353Dfr9+OeAfeigM\nGwabblp0lZJU3gz8kqROkxI8/XRdwL/3XthuuxzuR4zIvfg9exZdpSRVFgO/JKlDvfJKDve1x6pV\ndQH/0ENh552LrlCSKpuBX5LUrt59Fx56CO68Mx/z5uVNrkaMgMMOcy18SepsBn5JUpukBLNn1wX8\nBx7IffiHHQaHHw5DhzrRVpKKZOCXJLXYa6/lPvw77shHBBxxRA74hxwCW29ddIWSpFoGfklSk957\nD6ZMyeH+9tvzcpkHHggjR+ag36ePbTqSVKoM/JKk9Xrhhdyic/vtebLtDjvkcD9yJAwfDptsUnSF\nkqTmMPBLkgBYuTL3399+ex7JX7AgT7Q94oh87LJL0RVKklrDwC9JXdiCBXDbbfm4997cmjNyZD6G\nDIHu3YuuUJLUVgZ+SepCVq6EBx/MAf/WW+Gll/Lo/ZFH5sdtty26QklSezPwS1KFW7Qot+ncemte\nWad3bzjqqBzyP/5x6Nat6AolSR3JwC9JFWb1anj44Rzwb70Vnn8+j94fdVR+3G67oiuUJHUmA78k\nVYDXXsuj+H/7W37s1Qs++ckc8vff3158SerKDPySVIZSgjlzcsD/299g2jSoqoKjj84h3xV1JEm1\nDPySVCZWrYL774fx42HcuPz86KPzcfDBsOmmRVcoSSpFDQV+//grSSWgtlVn3Li8Nv4ee8Axx8BN\nN8E++7i7rSSp9Rzhl6SCPPNMDvjjxsGUKblV51OfyiP5O+5YdHWSpHJjS48kFWzNmhzsb7klh/wl\nS3LA/9Sn4LDDoEePoiuUJJUzA78kFeDdd/POtjffnHvye/bMrTqjRuUdbl0bX5LUXuzhl6ROsmxZ\n3uH2pptyX36/fvCZz8B99+XNsCRJ6kyO8EtSO3jllTyCf9NNOdgPG5ZD/qhRsMMORVcnSeoKbOmR\npHb20kvw17/Cn/+ce/MPOwyOPTZvhPWhDxVdnSSpqzHwS1I7eP75PIr/l7/AE0/kcH/ccXDEEU66\nlSQVy8AvSa00f34exf/Tn+Dpp/Ok2+OOgxEjYOONi65OkqTMwC9JLfDsszng/+lPOfB/5jPw2c/m\ntfI33LDo6iRJ+iADvyQ1oX7If+65tUN+d9c0kySVOAO/JK3HwoU54N94Y9759thj4XOfg4MOMuRL\nksqLgV+SaixenHvyb7wRZs6ET38aTjgBDjnEdh1JUvlqKPBv0IwbR0bEnIh4KiLOX8/5qoh4IyKm\n1Rz/2dx7JamzLF0KV16ZJ9r26QMTJ8K//zu8+CL89rd5lR3DviSpEjU6wh8R3YC5wAhgEfAIcGJK\naXa9a6qAb6WUjmnpvTXXOcIvqUMsWwa33JJH8idMgMMPh89/Ho46CjbdtOjqJElqXw2N8DfVoToE\nmJdSml/zJjcCo4DZ61z3gTduwb2S1G7efRduvRVuuAHuuAMOPBBOPBGuvx623LLo6iRJ6nxNBf6d\ngQX1ni8E9l/nmgQMi4jp5JH881JKs5p5ryS12Zo1cN99OdT/9a8wYACcdBJcdhn80z8VXZ0kScVq\nKvA3p9dmKtArpbQiIo4Ebgb2bEkRo0ePfv/nqqoqqqqqWnK7pC4oJZg+PYf8G26AbbaBk0/Or+2y\nS9HVSZLU8aqrq6murm7yuqZ6+IcCo1NKI2ueXwCsSSld3Mg9zwIfI4f+Ju+1h19SSzz/fA7511+f\ne/RPOikH/f79i65MkqRitbaHfwrQOyJ2A14ATgBOXOeNtweWpJRSRAwh/yNiaUQ0ea8kNcfrr+dl\nNK+7Dp54Ao4/Hi6/HIYNgw2aXGtMkqSurdHAn1JaHRFnAncA3YCxKaXZEXF6zfkxwPHANyJiNbAC\n+Hxj93bcryKpkqxcCbfdlkP+nXfCYYfBuefCkUfCxhsXXZ0kSeXDjbcklYyU4NFH4Xe/y0tp9u0L\nX/hCHtHfaquiq5MkqbS1tqVHkjrcokW5J/93v4N33oF/+ReYNAl2373oyiRJKn8GfkmFePttuPlm\nuPpqeOQROO44GDMGDjgAYn07e0iSpFYx8EvqNCnlcH/VVfDHP8LgwfClL+W183v0KLo6SZIqk4Ff\nUodbvDhPvr3qqtyy8+Uvw2OPQa9eRVcmSVLlc9KupA6xenVeZWfs2LwL7qc/nYP+8OG27EiS1BGc\ntCupU8yfn0P+VVflEfxTT4Vrr4Uttii6MkmSuiYDv6Q2W7kSxo+H3/wmL6t58slw++2w995FVyZJ\nkgz8klpt/vy8ss5VV0GfPnDaaXnlnU03LboySZJUy8AvqUXWrMk73/761/DQQ3nN/Opq2GuvoiuT\nJEnrY+CX1CxLl+aR/Msugy23hDPOyLvhbrZZ0ZVJkqTGGPglNWrqVPjVr/Ja+UcfnZfX3H9/V9qR\nJKlcGPglfcC778Kf/5zbdhYtgq9/HZ58ErbdtujKJElSS7kOv6T3LVyYJ+FecQUMGJDbdo4+Gro7\nNCBJUslraB3+DYooRlLpSAkmTIDPfhb22Qdefx3+8Q+46668WZZhX5Kk8uZ/yqUu6t1386TbSy6B\n5cvh7LPht791gyxJkiqNLT1SF/PSS3D55bl1Z5994Nxz4YgjYAP/3idJUlmzpUfq4qZNgy9+Efr2\nhcWL4d574Y474MgjDfuSJFUy/zMvVbD33svLaR50EIwaBf36wdNP57X0+/YtujpJktQZ7OGXKtCb\nb+Z+/F/8ArbfPrftHHssbLhh0ZVJkqTOZuCXKsgzz8Avfwm/+x0cfjj8/vcwdGjRVUmSpCLZ0iNV\ngEmT8rKaQ4bARhvB9Ol5BR7DviRJcoRfKlNr1sD48fCTn+QNs/71X+Gqq2DzzYuuTJIklRIDv1Rm\n3n4brrkGfvpT2HJL+Pa3c3++G2RJkqT1MSJIZeL11+HXv84TcfffH664AoYPh/jAaruSJEl1DPxS\niVu8GH72sxzwP/UpqK52SU1JktR8TtqVStRzz8GZZ+Zwv2wZPPooXH21YV+SJLWMgV8qMXPnwpe+\nBPvtlyfgzpoFv/oV7LZb0ZVJkqRyZEuPVCJmz4bvfx/uvhvOPjvviNuzZ9FVSZKkcucIv1SwmTPh\n85+Hgw6CAQNy0P/P/zTsS5Kk9mHglwryxBNwwglwyCGw7755l9wLLoAttii6MkmSVEkM/FInmzUL\nPvc5GDECBg/OI/rnn++GWZIkqWMY+KVO8vTT8IUvQFVVXdD/9rcN+pIkqWMZ+KUOtmABfO1rebOs\nPfeEefPg3/8dNtus6MokSVJXYOCXOshLL8E558CgQbDNNvDkk/Bf/wVbbll0ZZIkqSsx8EvtbOnS\nPPm2f3/YYIPcs3/RRbD11kVXJkmSuiIDv9ROli2DH/4wt+28+io89hj87Gew/fZFVyZJkroyA7/U\nRu++C7/4BfTundfUnzgRfvMb6NWr6MokSZLcaVdqtdWr4Zpr4Hvfg332gdtvh4EDi65KkiRpbQZ+\nqYVSgnHj4Dvfye06N9wAw4YVXZUkSdL6GfilFnj44bx2/uuvw09/CiNHQkTRVUmSJDXMHn6pGZ58\nEo4/Hj77WfjKV/KE3COPNOxLkqTS12Tgj4iRETEnIp6KiPMbue7jEbE6Io6r99r8iJgREdMiYnJ7\nFS11lsWL4YwzcsvO4ME5+H/5y9CtW9GVSZIkNU+jgT8iugG/AkYC/YATI6JvA9ddDNy+zqkEVKWU\n9k0pDWmfkqWO98478KMf5bX0N9oI5szJPfubblp0ZZIkSS3T1Aj/EGBeSml+SmkVcCMwaj3XnQX8\nGXh5PedselDZSAn+/Gfo2xcmTco9+z/7Wd4pV5IkqRw1NWl3Z2BBvecLgf3rXxARO5P/EXAI8HHy\nqH6tBNwdEe8BY1JKV7S5YqmDTJ0K554Lb7wBY8fCIYcUXZEkSVLbNRX4UxPnAX4OfCellCIiWHtE\n/4CU0osRsS1wV0TMSSndv+4bjB49+v2fq6qqqKqqasbHSu3jxRfhu9+F226D//mfPCnXHn1JklTq\nqqurqa6ubvK6SKnhTB8RQ4HRKaWRNc8vANaklC6ud80z1IX8bYAVwGkppXHrvNeFwLKU0v+t83pq\nrAapo7z7Lvz85/DjH8Opp8J//AdsuWXRVUmSJLVORJBS+kA7fVMj/FOA3hGxG/ACcAJwYv0LUkq7\n1/uQq4DxKaVxEdED6JZSeisiNgMOB77Xpt9Caie33w5nnw19+uQ+/T32KLoiSZKkjtFo4E8prY6I\nM4E7gG7A2JTS7Ig4veb8mEZu3wG4KXf50B24PqV0Z/uULbXOM8/Av/4rzJoFl1wCRx1VdEWSJEkd\nq9GWnk4pwJYedYIVK/Iym5deCuedl0P/xhsXXZUkSVL7aW1Lj1T2xo+HM8/Mm2c99hjsskvRFUmS\nJHUeA78q1tKlcM45MHEiXH01HHxw0RVJkiR1vqY23pLK0rhxMGAA/NM/wfTphn1JktR1OcKvirJ0\naV595+GH4cYbYfjwoiuSJEkqliP8qhi33JJH9bfZBmbMMOxLkiSBI/yqAK+/DmedlXv1HdWXJEla\nmyP8KmsTJsCgQXmH3OnTDfuSJEnrcoRfZWnlShg9Oq++c8UV8MlPFl2RJElSaTLwq+zMnQsnnww7\n7ADTpsH22xddkSRJUumypUdlIyUYMwYOPBC++tW8oZZhX5IkqXGO8KssvPoqfOUrsGBB7tvv27fo\niiRJksqDI/wqeVOmwODBsMceeX19w74kSVLzOcKvkpVSnpD73e/C5ZfDcccVXZEkSVL5MfCrJK1Y\nAd/8Zh7df+AB6NOn6IokSZLKky09Kjnz5sGwYbBqFUyaZNiXJElqCwO/Ssott+Sw/7WvwXXXwWab\nFV2RJElSebOlRyVhzRr47/+Ga66BceNg6NCiK5IkSaoMBn4V7q234AtfyEtvTpkC221XdEWSJEmV\nw5YeFerZZ3MLz7bbwj33GPYlSZLam4Ffhamuhk98Ivfr/+Y3sNFGRVckSZJUeWzpUSEuvxwuvBCu\nvx5GjCi6GkmSpMpl4FenWrUKzjknj+4/8AD07l10RZIkSZXNwK9O89prcPzxsMkmMHEifOhDRVck\nSZJU+ezhV6eYPx8OOAAGDMjLbhr2JUmSOoeBXx1u8uS8Es/Xvw4//zl061Z0RZIkSV2HLT3qUDff\nDKedBmPHwjHHFF2NJElS12PgV4e55BL4f/8PbrsNBg8uuhpJkqSuycCvdvfee/Ctb8Fdd8GDD8Ju\nuxVdkSRJUtdl4Fe7Wr4cTjoJli2Dhx6Cnj2LrkiSJKlrc9Ku2s3ixVBVlUP+bbcZ9iVJkkqBgV/t\nYvZs+MRpdZ1KAAAYGUlEQVQn4JOfhKuvho02KroiSZIkgS09agcTJsBnPws/+hF8+ctFVyNJkqT6\nDPxqkxtugHPOgd//HkaMKLoaSZIkrcvAr1ZJCS6+GC69FO65J++gK0mSpNJj4FeLrV4NZ5wBkybB\nxImw885FVyRJkqSGGPjVIu+8AyeckB8nTIAttyy6IkmSJDXGVXrUbG++CUceCT16wPjxhn1JkqRy\nYOBXs7z8MhxyCOy1F1x3nctuSpIklQsDv5q0YAEMHw4jR+ZJut26FV2RJEmSmsvAr0bNnZvD/te+\nBj/4AUQUXZEkSZJaosnAHxEjI2JORDwVEec3ct3HI2J1RBzX0ntVmqZOhaoquPBC+Na3iq5GkiRJ\nrdFo4I+IbsCvgJFAP+DEiOjbwHUXA7e39F6VpgkT6lp43D1XkiSpfDU1wj8EmJdSmp9SWgXcCIxa\nz3VnAX8GXm7FvSoxU6fC8cfn3XM/85miq5EkSVJbNBX4dwYW1Hu+sOa190XEzuQgf1nNS6m596r0\nPPMMHH00jBkDI0YUXY0kSZLaqqmNt1IT5wF+DnwnpZQiIoDaaZ3NuReA0aNHv/9zVVUVVVVVzb1V\n7eiVV3Ibz3e/68i+JElSqauurqa6urrJ6yKlhnN5RAwFRqeURtY8vwBYk1K6uN41z1AX8rcBVgCn\nAUuaurfm9dRYDeocy5fDoYfmtfYvuqjoaiRJktRSEUFK6QNrKjYV+LsDc4FDgReAycCJKaXZDVx/\nFTA+pXRTc+818Bdv9eo8or/11nD11S69KUmSVI4aCvyNtvSklFZHxJnAHUA3YGxKaXZEnF5zfkxL\n723LL6H2lxJ84xuwahVceaVhX5IkqdI0OsLfKQU4wl+o730Pxo+H6mrYfPOiq5EkSVJrtWqEX5Xt\nyivhmmvgoYcM+5IkSZXKEf4u6tZb4atfzRts9e5ddDWSJElqK0f49b6pU+FLX4Jx4wz7kiRJla6p\njbdUYZ5/Ho45Bi6/HIYOLboaSZIkdTQDfxfy+utw1FHwb/8Gxx5bdDWSJEnqDPbwdxErV+ZddPfe\nGy65xOU3JUmSKk2rNt7qDAb+jpcSfPGL8Oab8Je/QLduRVckSZKk9uak3S5s9GiYMyevtW/YlyRJ\n6loM/BXuqqvg2mth4kTo0aPoaiRJktTZbOmpYPfcAyefDPfdB336FF2NJEmSOpItPV3MU0/BSSfB\nH/5g2JckSerKXJazAr3+OnzqU/D970NVVdHVSJIkqUi29FSY1avh6KNhzz3hF78ouhpJkiR1loZa\nehzhrzDf/ja89x789KdFVyJJkqRSYA9/BRk7Fv7+d5g0Cbr7v6wkSZKwpadi3H8/HH88TJjgJF1J\nkqSuyJaeCjZ/Pnzuc3m9fcO+JEmS6jPwl7m33oJjjoELLoDDDy+6GkmSJJUaW3rK2Jo1cNxxsO22\nMGYMxAf+gCNJkqSuwo23KtBFF8GSJXlzLcO+JEmS1sfAX6Zuuw0uvxwmT4aNNiq6GkmSJJUqA38Z\nmjcPvvQluOkm2GmnoquRJElSKXPSbplZvhyOPRYuvBAOOKDoaiRJklTqnLRbRlKCE0+ETTeF3/7W\nvn1JkiTVcdJuBfjpT3M7zwMPGPYlSZLUPAb+MnHvvfCTn8CkSbDJJkVXI0mSpHJhD38ZeP55OPlk\nuP562HXXoquRJElSOTHwl7h33smTdM87Dw45pOhqJEmSVG6ctFvivvlNePll+OMf7duXJElSw5y0\nW4ZuuAHuvhumTDHsS5IkqXUc4S9Rc+bA8OE58A8cWHQ1kiRJKnUNjfDbw1+CVqyAz34WLrrIsC9J\nkqS2cYS/BH3lK7BqFVxzja08kiRJah57+MvEVVfBww/D5MmGfUmSJLWdI/wl5PHH89Kb990H/foV\nXY0kSZLKiT38Je6tt3Lf/k9/atiXJElS+3GEvwSkBCedBJtvDldcUXQ1kiRJKkf28JewK6+EWbNy\n774kSZLUnhzhL9jcuXDggTBhAvTtW3Q1kiRJKlf28JeglSvh5JPhf/7HsC9JkqSO4Qh/gS64AJ54\nAsaNcwlOSZIktU2rR/gjYmREzImIpyLi/PWcHxUR0yNiWkQ8GhGH1Ds3PyJm1Jyb3PZfo3JUV+eN\ntcaONexLkiSp4zQ6wh8R3YC5wAhgEfAIcGJKaXa9azZLKS2v+XkA8NeU0h41z58FPpZSWtrIZ3S5\nEf7XXoOBA+E3v4GRI4uuRpIkSZWgtSP8Q4B5KaX5KaVVwI3AqPoX1Ib9GpsDr6z72a2ot2KlBKef\nDscea9iXJElSx2sq8O8MLKj3fGHNa2uJiE9HxGzgNuDseqcScHdETImI09pabCW45hqYPRt+9KOi\nK5EkSVJX0NQ6/M3qtUkp3QzcHBHDgWuBPjWnDkgpvRgR2wJ3RcSclNL9694/evTo93+uqqqiqqqq\nOR9bdp5+Gs47D+69FzbZpOhqJEmSVM6qq6uprq5u8rqmeviHAqNTSiNrnl8ArEkpXdzIPU8DQ1JK\nr67z+oXAspTS/63zepfo4V+1CoYPzzvqnn1209dLkiRJLdHaHv4pQO+I2C0iNgJOAMat88Yfjcjr\nzETEfgAppVcjokdEbFHz+mbA4cDjbf9VytMPfgBbbQVnnVV0JZIkSepKGm3pSSmtjogzgTuAbsDY\nlNLsiDi95vwY4DjgXyJiFbAM+HzN7TsAN9X8W6A7cH1K6c6O+TVK26RJMGYMTJvmEpySJEnqXG68\n1cFWrIBBg+Cii+D444uuRpIkSZWqoZYeA38HO+sseP11uPbaoiuRJElSJWso8De1So/a4K674JZb\nYMaMoiuRJElSV9XUpF210muvwVe/CmPHQs+eRVcjSZKkrsqWng5yyil5VZ5f/rLoSiRJktQV2NLT\nif70J3jkkbwqjyRJklQkR/jb2Ysvwr77wrhxMGRI0dVIkiSpq2jtxltqgZTg1FPha18z7EuSJKk0\nGPjb0ZVXwksvwX/9V9GVSJIkSZktPe3kuedg8GC47z7o16/oaiRJktTV2NLTgVKC00+Hb33LsC9J\nkqTSYuBvB9ddl1t5zjuv6EokSZKktdnS00ZLlsCAAfD3v+eWHkmSJKkIDbX0GPjb6KSTYOed4cc/\nLroSSZIkdWVuvNUB/v53mDQJHn+86EokSZKk9TPwt9Jbb8E3vgFXXQU9ehRdjSRJkrR+tvS00pln\nwttvw9ixRVciSZIk2dLTrh58EG66CWbOLLoSSZIkqXEuy9lC774Lp54Kv/gFbLVV0dVIkiRJjTPw\nt9APfwh77QXHHVd0JZIkSVLT7OFvgSeegIMPhscey0txSpIkSaWioR5+R/ibKSX45jfhe98z7EuS\nJKl8GPib6fe/h+XL4fTTi65EkiRJaj5beprhzTdz3/5f/gKf+ETR1UiSJEkf1FBLj4G/Gb71LXjj\nDdfclyRJUulyHf5WeuIJuO4619yXJElSebKHvxEpwRlnwIUXwrbbFl2NJEmS1HIG/kbccEPu3//6\n14uuRJIkSWode/gb8Oab0Lcv/OlPMGxY0dVIkiRJjXPSbguddx68+ipcdVXRlUiSJElNM/C3wMyZ\nUFWVH7fbruhqJEmSpKa5024zpQRnnpkn6hr2JUmSVO4M/Ov4wx/gtdecqCtJkqTKYEtPPcuW5R11\n//AHOOCAoquRJEmSms8e/mb4znfghRfgmmuKrkSSJElqGQN/E558Mi+/+fjjsOOORVcjSZIktYyT\ndhuREpxzTh7hN+xLkiSpkhj4gfHjYf58OPvsoiuRJEmS2lf3ogso2jvvwLnnwpgxsNFGRVcjSZIk\nta8uP8L/4x/DvvvCYYcVXYkkSZLU/rr0pN3nnoP99oNHH4XddiukBEmSJKldtHrSbkSMjIg5EfFU\nRJy/nvOjImJ6REyLiEcj4pDm3lu0f/u33Ldv2JckSVKlanSEPyK6AXOBEcAi4BHgxJTS7HrXbJZS\nWl7z8wDgrymlPZpzb809hYzw33MPnHoqzJoFm27a6R8vSZIktavWjvAPAeallOanlFYBNwKj6l9Q\nG/ZrbA680tx7i7JqFZx1FvzsZ4Z9SZIkVbamAv/OwIJ6zxfWvLaWiPh0RMwGbgPObsm9RfjlL2HX\nXWFUSfzzQ5IkSeo4TS3L2axem5TSzcDNETEcuDYi9mpzZR1k6VK46CJ48EGID/zBQ5IkSaosTQX+\nRUCves97kUfq1yuldH9EdAe2rrmuWfeOHj36/Z+rqqqoqqpqoqzW+8Uv8sh+nz4d9hGSJElSh6uu\nrqa6urrJ65qatNudPPH2UOAFYDIfnLT7UeCZlFKKiP2AP6WUPtqce2vu77RJu2++CR/9KDz0EPTu\n3SkfKUmSJHWKhibtNjrCn1JaHRFnAncA3YCxKaXZEXF6zfkxwHHAv0TEKmAZ8PnG7m3PX6qlLrss\nb7Bl2JckSVJX0WU23lqxAnbfHe6+G/beu8M/TpIkSepUrd54q1JceSUMG2bYlyRJUtfSJUb4330X\n9tgDbr4ZPvaxDv0oSZIkqRBdeoT/mmvyyL5hX5IkSV1NxY/wr16dl+D83e/gwAM77GMkSZKkQnXZ\nEf4bb4RevQz7kiRJ6poqeoR/zZrcynPJJXk5TkmSJKlSdckR/r/+FbbYAkaMKLoSSZIkqRgVG/hT\ngh/+EP7zPyE+8O8cSZIkqWuo2MB/223w3ntw9NFFVyJJkiQVpyIDf0rwgx/Ad7/r6L4kSZK6tooM\n/PfdB6++CscdV3QlkiRJUrEqMvD/6ldw7rnQrVvRlUiSJEnFqrhlORcuhH32geeeyyv0SJIkSV1B\nl1mW84or4KSTDPuSJEkSVNgI/6pV8OEPw113Qf/+7fKWkiRJUlnoEiP8N98Me+5p2JckSZJqVVTg\n//Wv4Ywziq5CkiRJKh0V09IzcyYcdlierLvhhu1QmCRJklRGKr6l57LL4LTTDPuSJElSfRUxwv/W\nW3my7owZsMsu7VSYJEmSVEYqeoT/uuvg4IMN+5IkSdK6yj7wpwSXXupkXUmSJGl9yj7wP/BAXn//\n4IOLrkSSJEkqPWUf+C+9FL75TYgPdCtJkiRJKutJuy+9BH37wrPPQs+e7VyYJEmSVEYqctLulVfC\n5z5n2JckSZIaUrYj/KtXw0c+AuPHw6BBHVCYJEmSVEYqboT/b3+DXXc17EuSJEmNKdvAP2YMfP3r\nRVchSZIklbaybOlZvBj22gsWLYIePTqoMEmSJKmMVFRLz403wjHHGPYlSZKkppRl4L/uOjjllKKr\nkCRJkkpf2QX+OXNyK88hhxRdiSRJklT6yi7wX389nHgidOtWdCWSJElS6SurSbspwe67w003wb77\ndnBhkiRJUhmpiEm7Dz2UJ+q69r4kSZLUPGUV+Gsn68YH/t0iSZIkaX3KpqVn5UrYaSd49FH48Ic7\noTBJkiSpjJR9S89tt0H//oZ9SZIkqSXKJvC79r4kSZLUcmXR0vP663lkf/582GqrzqlLkiRJKiet\nbumJiJERMScinoqI89dz/uSImB4RMyLiwYjYp965+TWvT4uIya0t/i9/gREjDPuSJElSS3Vv7GRE\ndAN+BYwAFgGPRMS4lNLsepc9A/xzSumNiBgJ/AYYWnMuAVUppaVtKfK66+Dss9vyDpIkSVLX1NQI\n/xBgXkppfkppFXAjMKr+BSmliSmlN2qeTgJ2Wec92rSI5vPPw4wZcNRRbXkXSZIkqWtqKvDvDCyo\n93xhzWsN+Spwa73nCbg7IqZExGmtKfCGG+D442HjjVtztyRJktS1NdrSQw7szRIRBwNfAQ6o9/IB\nKaUXI2Jb4K6ImJNSun/de0ePHv3+z1VVVVRVVeUPT3DttXDZZc2tQpIkSeoaqqurqa6ubvK6Rlfp\niYihwOiU0sia5xcAa1JKF69z3T7ATcDIlNK8Bt7rQmBZSun/1nm9wVV6pk+HUaPgmWdgg7JZQFSS\nJEnqfK1dpWcK0DsidouIjYATgHHrvPGu5LB/Sv2wHxE9ImKLmp83Aw4HHm9J0dddByefbNiXJEmS\nWqvRlp6U0uqIOBO4A+gGjE0pzY6I02vOjwH+G9gKuCwiAFallIYAOwA31bzWHbg+pXRncwtbswZ+\n/3u4665W/FaSJEmSgBLeeGvyZPjSl2DWrM6vSZIkSSo3rd54qyjjx8PRRxddhSRJklTeSjbw/+1v\n8KlPFV2FJEmSVN5KsqVnwQIYNAgWL4buTS0cKkmSJKm8Wnr+9jc48kjDviRJktRWJRv4beeRJEmS\n2q7kWnqWL4cdd4Tnn4eePQssTJIkSSojZdPSc889MHiwYV+SJElqDyUX+MePt51HkiRJai8l1dKz\nZg3ssgvcdx/07l1oWZIkSVJZKYuWnqlTYcstDfuSJElSeympwO/uupIkSVL7KqnA73KckiRJUvsq\nmR7+RYtgwABYssQNtyRJkqSWKvke/r//HUaONOxLkiRJ7alkAr/LcUqSJEntryRaepYvT+ywAzz3\nHGy1VaHlSJIkSWWppFt67r0X9tvPsC9JkiS1t5II/LbzSJIkSR2jJFp6dtopce+90KdPoaVIkiRJ\nZaukW3o228ywL0mSJHWEkgj8tvNIkiRJHaMkAv/RRxddgSRJklSZSqKHf+XKxIYbFlqGJEmSVNZK\nuoffsC9JkiR1jJII/JIkSZI6hoFfkiRJqmAGfkmSJKmCGfglSZKkCmbglyRJkiqYgV+SJEmqYAZ+\nSZIkqYIZ+CVJkqQKZuCXJEmSKpiBX5IkSapgBn5JkiSpghn4JUmSpApm4JckSZIqmIFfkiRJqmAG\nfkmSJKmCGfglSZKkCmbglyRJkipYk4E/IkZGxJyIeCoizl/P+ZMjYnpEzIiIByNin+beK7Wn6urq\noktQBfB7pPbid0ntwe+R2kOjgT8iugG/AkYC/YATI6LvOpc9A/xzSmkf4PvAb1pwr9Ru/D9FtQe/\nR2ovfpfUHvweqT00NcI/BJiXUpqfUloF3AiMqn9BSmliSumNmqeTgF2ae68kSZKkjtVU4N8ZWFDv\n+cKa1xryVeDWVt4rSZIkqZ1FSqnhkxHHASNTSqfVPD8F2D+ldNZ6rj0Y+DVwQErptebeGxENFyBJ\nkiSp2VJKse5r3Zu4ZxHQq97zXuSR+rXUTNS9ghzwX2vJvesrSpIkSVL7aKqlZwrQOyJ2i4iNgBOA\ncfUviIhdgZuAU1JK81pyryRJkqSO1egIf0ppdUScCdwBdAPGppRmR8TpNefHAP8NbAVcFhEAq1JK\nQxq6twN/F0mSJEnraLSHX5IkSVJ5K3SnXTfmUmtERK+I+EdEzIyIJyLi7JrXt46IuyLiyYi4MyJ6\nFl2rykNEdIuIaRExvua53yW1SET0jIg/R8TsiJgVEfv7PVJrRMQFNf99ezwifh8RG/tdUlsVFvjd\nmEttsAr415RSf2AocEbNd+c7wF0ppT2Be2qeS81xDjALqP2Tp98ltdQlwK0ppb7APsAc/B6phSJi\nN+A0YL+U0gByS/Tn8bukNipyhN+NudQqKaWXUkqP1fy8DJhN3uPhGOB3NZf9Dvh0MRWqnETELsBR\nwJVA7aphfpfUbBHxIWB4Sum3kOe/1WxI6fdILfUmeVCrR0R0B3oAL+B3SW1UZOB3Yy61Wc1oyL7k\nXZ63Tyktrjm1GNi+oLJUXn4GfBtYU+81v0tqiY8AL0fEVRExNSKuiIjN8HukFkopLQX+D3ieHPRf\nTyndhd8ltVGRgd/ZwmqTiNgc+AtwTkrprfrnUp6N7ndMjYqIo4ElKaVp1I3ur8XvkpqhO7AfcGlK\naT9gOeu0XPg9UnNExEeBc4HdgJ2AzWs2Ln2f3yW1RpGBv1kbc0nrExEbksP+tSmlm2teXhwRO9Sc\n3xFYUlR9KhvDgGMi4lngBuCQiLgWv0tqmYXAwpTSIzXP/0z+B8BLfo/UQoOBh1JKr6aUVpP3OfoE\nfpfURkUGfjfmUqtE3vBhLDArpfTzeqfGAV+s+fmLwM3r3ivVl1L6j5RSr5TSR8gT4+5NKX0Bv0tq\ngZTSS8CCiNiz5qURwExgPH6P1DJzgKERsWnNf+tGkBcU8LukNil0Hf6IOBL4OXUbc/1vYcWobETE\ngcAEYAZ1f9a8AJgM/BHYFZgPfC6l9HoRNar8RMRBwL+llI6JiK3xu6QWiIiB5InfGwFPA18m/7fN\n75FaJCL+nRzq1wBTgVOBLfC7pDZw4y1JkiSpghW68ZYkSZKkjmXglyRJkiqYgV+SJEmqYAZ+SZIk\nqYIZ+CVJkqQKZuCXJEmSKpiBX5IkSapg/x9v2kZ3ePjKPwAAAABJRU5ErkJggg==\n", | |
"text/plain": [ | |
"<matplotlib.figure.Figure at 0x323dc550>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"%matplotlib inline\n", | |
"pd.DataFrame(np.cumsum(svd.explained_variance_ratio_)).plot(figsize=(13, 8))" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 6, | |
"metadata": { | |
"collapsed": false, | |
"slideshow": { | |
"slide_type": "skip" | |
} | |
}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"<div>\n", | |
"<table border=\"1\" class=\"dataframe\">\n", | |
" <thead>\n", | |
" <tr style=\"text-align: right;\">\n", | |
" <th></th>\n", | |
" <th>44</th>\n", | |
" <th>46</th>\n", | |
" <th>45</th>\n", | |
" <th>40</th>\n", | |
" <th>0</th>\n", | |
" <th>42</th>\n", | |
" <th>26</th>\n", | |
" <th>27</th>\n", | |
" <th>47</th>\n", | |
" <th>21</th>\n", | |
" <th>...</th>\n", | |
" <th>62</th>\n", | |
" <th>52</th>\n", | |
" <th>43</th>\n", | |
" <th>69</th>\n", | |
" <th>54</th>\n", | |
" <th>61</th>\n", | |
" <th>50</th>\n", | |
" <th>49</th>\n", | |
" <th>22</th>\n", | |
" <th>25</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>0</th>\n", | |
" <td>ParisSG</td>\n", | |
" <td>PrettyOlderWomen</td>\n", | |
" <td>ParisSG</td>\n", | |
" <td>malefashionadvice</td>\n", | |
" <td>AskReddit</td>\n", | |
" <td>DoesAnybodyElse</td>\n", | |
" <td>pokemonteams</td>\n", | |
" <td>wetandwild</td>\n", | |
" <td>ShitLiamDoes</td>\n", | |
" <td>ManchesterVegan</td>\n", | |
" <td>...</td>\n", | |
" <td>Articles</td>\n", | |
" <td>JapaneseFiction</td>\n", | |
" <td>gameofthrones</td>\n", | |
" <td>PicsOfJithSleeping</td>\n", | |
" <td>macsetups</td>\n", | |
" <td>outercourse</td>\n", | |
" <td>osx</td>\n", | |
" <td>ShitLiamDoes</td>\n", | |
" <td>gonewildstories</td>\n", | |
" <td>pokemon</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>1</th>\n", | |
" <td>bevandele</td>\n", | |
" <td>FTLStrikers</td>\n", | |
" <td>bevandele</td>\n", | |
" <td>goodyearwelt</td>\n", | |
" <td>funny</td>\n", | |
" <td>PicsOfHorseVaginas</td>\n", | |
" <td>pokemon</td>\n", | |
" <td>underboob</td>\n", | |
" <td>silverandguns</td>\n", | |
" <td>asutosh</td>\n", | |
" <td>...</td>\n", | |
" <td>knockoutgifs</td>\n", | |
" <td>davidfosterwallace</td>\n", | |
" <td>shewantstofuck</td>\n", | |
" <td>hockeylayouttest</td>\n", | |
" <td>applehelp</td>\n", | |
" <td>mindashq</td>\n", | |
" <td>simpleios</td>\n", | |
" <td>techsupport</td>\n", | |
" <td>BDSMcommunity</td>\n", | |
" <td>Nbz</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2</th>\n", | |
" <td>soccerbot</td>\n", | |
" <td>ParisSG</td>\n", | |
" <td>FootballMedia</td>\n", | |
" <td>malefashion</td>\n", | |
" <td>pics</td>\n", | |
" <td>PigsGoneWild</td>\n", | |
" <td>CraftMasters</td>\n", | |
" <td>blackmailporn</td>\n", | |
" <td>techsupport</td>\n", | |
" <td>goatedition</td>\n", | |
" <td>...</td>\n", | |
" <td>postcolonialism</td>\n", | |
" <td>Earlyjazz</td>\n", | |
" <td>asoiaf</td>\n", | |
" <td>hockey</td>\n", | |
" <td>apple</td>\n", | |
" <td>NBA2k</td>\n", | |
" <td>iOSProgramming</td>\n", | |
" <td>bubbleswithfaces</td>\n", | |
" <td>BDSMpersonals</td>\n", | |
" <td>CraftMasters</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>3</th>\n", | |
" <td>FootballMedia</td>\n", | |
" <td>soccerbot</td>\n", | |
" <td>FTLStrikers</td>\n", | |
" <td>rawdenim</td>\n", | |
" <td>WTF</td>\n", | |
" <td>CucumberPorn</td>\n", | |
" <td>Nbz</td>\n", | |
" <td>gangbang</td>\n", | |
" <td>uscgames</td>\n", | |
" <td>GOAT_TRUTH</td>\n", | |
" <td>...</td>\n", | |
" <td>AskMen</td>\n", | |
" <td>memphismayfire</td>\n", | |
" <td>aSongOfMemesAndRage</td>\n", | |
" <td>EdmontonOilers</td>\n", | |
" <td>ios</td>\n", | |
" <td>nba</td>\n", | |
" <td>ios</td>\n", | |
" <td>talesofmybowels</td>\n", | |
" <td>bdsm</td>\n", | |
" <td>pokemonteams</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>4</th>\n", | |
" <td>FTLStrikers</td>\n", | |
" <td>bevandele</td>\n", | |
" <td>soccerbot</td>\n", | |
" <td>frugalmalefashion</td>\n", | |
" <td>gaming</td>\n", | |
" <td>SnooPorn</td>\n", | |
" <td>vanguardtips</td>\n", | |
" <td>Sexfight</td>\n", | |
" <td>Goblinism</td>\n", | |
" <td>worldnews</td>\n", | |
" <td>...</td>\n", | |
" <td>outercourse</td>\n", | |
" <td>alt_lit</td>\n", | |
" <td>AGOTBoardGame</td>\n", | |
" <td>leafs</td>\n", | |
" <td>retina</td>\n", | |
" <td>heat</td>\n", | |
" <td>retina</td>\n", | |
" <td>24hoursupport</td>\n", | |
" <td>polyamory</td>\n", | |
" <td>TruePokemon</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>5</th>\n", | |
" <td>PrettyOlderWomen</td>\n", | |
" <td>FootballMedia</td>\n", | |
" <td>PrettyOlderWomen</td>\n", | |
" <td>yusufcirclejerk</td>\n", | |
" <td>AdviceAnimals</td>\n", | |
" <td>UrethraPorn</td>\n", | |
" <td>nuzlocke</td>\n", | |
" <td>The_Porn_Family</td>\n", | |
" <td>Transmogrification</td>\n", | |
" <td>sticknpokes</td>\n", | |
" <td>...</td>\n", | |
" <td>Oaxaca</td>\n", | |
" <td>booklists</td>\n", | |
" <td>tesothemereddit</td>\n", | |
" <td>hockeyplayers</td>\n", | |
" <td>ipad</td>\n", | |
" <td>StateFarm</td>\n", | |
" <td>appletv</td>\n", | |
" <td>ouch</td>\n", | |
" <td>JL2579</td>\n", | |
" <td>pokemontrades</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>6</th>\n", | |
" <td>soccer</td>\n", | |
" <td>reddevils</td>\n", | |
" <td>coys</td>\n", | |
" <td>AustralianMFA</td>\n", | |
" <td>IAmA</td>\n", | |
" <td>burningporn</td>\n", | |
" <td>ebonyfeet</td>\n", | |
" <td>CumFacials</td>\n", | |
" <td>wow</td>\n", | |
" <td>CatsInBusinessAttire</td>\n", | |
" <td>...</td>\n", | |
" <td>mindashq</td>\n", | |
" <td>whatsthatbook</td>\n", | |
" <td>TGOD</td>\n", | |
" <td>rangers</td>\n", | |
" <td>mac</td>\n", | |
" <td>Basketball</td>\n", | |
" <td>mac</td>\n", | |
" <td>IWantToBeAMod</td>\n", | |
" <td>BDSMGW</td>\n", | |
" <td>vanguardtips</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>7</th>\n", | |
" <td>Gunners</td>\n", | |
" <td>LiverpoolFC</td>\n", | |
" <td>footballtactics</td>\n", | |
" <td>mfacirclejerk</td>\n", | |
" <td>videos</td>\n", | |
" <td>SantaPorn</td>\n", | |
" <td>thongsandals</td>\n", | |
" <td>LolitaCheng</td>\n", | |
" <td>WowUI</td>\n", | |
" <td>douchebagfoundation</td>\n", | |
" <td>...</td>\n", | |
" <td>dating_advice</td>\n", | |
" <td>breakingbad</td>\n", | |
" <td>asoiafreread</td>\n", | |
" <td>Habs</td>\n", | |
" <td>AlienBlue</td>\n", | |
" <td>lakers</td>\n", | |
" <td>apple</td>\n", | |
" <td>Buttcoin</td>\n", | |
" <td>chickflixxx</td>\n", | |
" <td>AsianFeet</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>8</th>\n", | |
" <td>reddevils</td>\n", | |
" <td>soccer</td>\n", | |
" <td>Gunners</td>\n", | |
" <td>shittymspaints</td>\n", | |
" <td>todayilearned</td>\n", | |
" <td>HobosGoneWild</td>\n", | |
" <td>ShinyPokemon</td>\n", | |
" <td>TVnewsbabes</td>\n", | |
" <td>WoWGoldMaking</td>\n", | |
" <td>nnDMT</td>\n", | |
" <td>...</td>\n", | |
" <td>PeterL</td>\n", | |
" <td>walterjohnson</td>\n", | |
" <td>asoiafcirclejerk</td>\n", | |
" <td>canucks</td>\n", | |
" <td>jasmineapp</td>\n", | |
" <td>BasketballTips</td>\n", | |
" <td>macsetups</td>\n", | |
" <td>nexusq</td>\n", | |
" <td>DissidiaCraft</td>\n", | |
" <td>ebonyfeet</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>9</th>\n", | |
" <td>FantasyPL</td>\n", | |
" <td>MCFC</td>\n", | |
" <td>soccer</td>\n", | |
" <td>europeanmalefashion</td>\n", | |
" <td>atheism</td>\n", | |
" <td>gnomewild</td>\n", | |
" <td>AsianFeet</td>\n", | |
" <td>ChangingRooms</td>\n", | |
" <td>wowscrolls</td>\n", | |
" <td>AustralianFilm</td>\n", | |
" <td>...</td>\n", | |
" <td>AskWomen</td>\n", | |
" <td>Adamphotoshopped</td>\n", | |
" <td>kdubz1298</td>\n", | |
" <td>DetroitRedWings</td>\n", | |
" <td>commonsense</td>\n", | |
" <td>mildlyimpressive</td>\n", | |
" <td>macapps</td>\n", | |
" <td>prestashop</td>\n", | |
" <td>gonewildaudio</td>\n", | |
" <td>thongsandals</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>10</th>\n", | |
" <td>coys</td>\n", | |
" <td>Gunners</td>\n", | |
" <td>soccercirclejerk</td>\n", | |
" <td>malehairadvice</td>\n", | |
" <td>Omaha</td>\n", | |
" <td>KittyPorn</td>\n", | |
" <td>EvolutionofKits</td>\n", | |
" <td>SpyShots</td>\n", | |
" <td>wowstrat</td>\n", | |
" <td>Filipinology</td>\n", | |
" <td>...</td>\n", | |
" <td>Basketball</td>\n", | |
" <td>artshub</td>\n", | |
" <td>Dreadfort</td>\n", | |
" <td>losangeleskings</td>\n", | |
" <td>JamieChung</td>\n", | |
" <td>benchgifs</td>\n", | |
" <td>applehelp</td>\n", | |
" <td>purple</td>\n", | |
" <td>pregnant</td>\n", | |
" <td>pokemonarts</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>11</th>\n", | |
" <td>Barca</td>\n", | |
" <td>Fifa13</td>\n", | |
" <td>NUFC</td>\n", | |
" <td>TeenMFA</td>\n", | |
" <td>aww</td>\n", | |
" <td>FuckingFish</td>\n", | |
" <td>pokemontrades</td>\n", | |
" <td>CumSwallowing</td>\n", | |
" <td>woweconomy</td>\n", | |
" <td>JKP</td>\n", | |
" <td>...</td>\n", | |
" <td>BasketballTips</td>\n", | |
" <td>laundryview</td>\n", | |
" <td>CK2GameOfthrones</td>\n", | |
" <td>AnaheimDucks</td>\n", | |
" <td>GeekTool</td>\n", | |
" <td>DavidsQuotes</td>\n", | |
" <td>iPhoneDev</td>\n", | |
" <td>sergaljerk</td>\n", | |
" <td>sex</td>\n", | |
" <td>pokemonrng</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>12</th>\n", | |
" <td>chelseafc</td>\n", | |
" <td>chelseafc</td>\n", | |
" <td>reddevils</td>\n", | |
" <td>itafterdark</td>\n", | |
" <td>houston</td>\n", | |
" <td>SpidersGoneWild</td>\n", | |
" <td>pokemonrng</td>\n", | |
" <td>souse</td>\n", | |
" <td>WoWStreams</td>\n", | |
" <td>AscensionOmaha</td>\n", | |
" <td>...</td>\n", | |
" <td>talktostrangers</td>\n", | |
" <td>SexyMusicVideos</td>\n", | |
" <td>CTI</td>\n", | |
" <td>BlueJackets</td>\n", | |
" <td>appletv</td>\n", | |
" <td>torontoraptors</td>\n", | |
" <td>ipad</td>\n", | |
" <td>labradoodles</td>\n", | |
" <td>TwoXSex</td>\n", | |
" <td>nuzlocke</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>13</th>\n", | |
" <td>LiverpoolFC</td>\n", | |
" <td>FantasyPL</td>\n", | |
" <td>Barca</td>\n", | |
" <td>ldshistory</td>\n", | |
" <td>UIUC</td>\n", | |
" <td>FlyingFuck</td>\n", | |
" <td>Pokemongiveaway</td>\n", | |
" <td>exgirlfriendpictures</td>\n", | |
" <td>wowraf</td>\n", | |
" <td>indiansports</td>\n", | |
" <td>...</td>\n", | |
" <td>Mavericks</td>\n", | |
" <td>bookhaul</td>\n", | |
" <td>Tumba</td>\n", | |
" <td>EA_NHL</td>\n", | |
" <td>AppHookup</td>\n", | |
" <td>NBASpurs</td>\n", | |
" <td>WebApps</td>\n", | |
" <td>TrackThrows</td>\n", | |
" <td>DeadBedrooms</td>\n", | |
" <td>ShinyPokemon</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>14</th>\n", | |
" <td>MCFC</td>\n", | |
" <td>coys</td>\n", | |
" <td>LiverpoolFC</td>\n", | |
" <td>malefoodadvice</td>\n", | |
" <td>Columbus</td>\n", | |
" <td>WTF_Wallpapers</td>\n", | |
" <td>stunfisk</td>\n", | |
" <td>xxxstash</td>\n", | |
" <td>wowguilds</td>\n", | |
" <td>Israel</td>\n", | |
" <td>...</td>\n", | |
" <td>AlbumJerk</td>\n", | |
" <td>murakami</td>\n", | |
" <td>GavinQuotes</td>\n", | |
" <td>penguins</td>\n", | |
" <td>simpleios</td>\n", | |
" <td>LAClippers</td>\n", | |
" <td>obits</td>\n", | |
" <td>RegretfulSexStories</td>\n", | |
" <td>Swingers</td>\n", | |
" <td>EvolutionofKits</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15</th>\n", | |
" <td>footballmanagergames</td>\n", | |
" <td>FIFA</td>\n", | |
" <td>football</td>\n", | |
" <td>preppy</td>\n", | |
" <td>Purdue</td>\n", | |
" <td>HotDogPorn</td>\n", | |
" <td>denpamen</td>\n", | |
" <td>cumov</td>\n", | |
" <td>wowpodcasts</td>\n", | |
" <td>traphentai</td>\n", | |
" <td>...</td>\n", | |
" <td>mindblown</td>\n", | |
" <td>circlejerkbreakingbad</td>\n", | |
" <td>livechat</td>\n", | |
" <td>Coyotes</td>\n", | |
" <td>iphone</td>\n", | |
" <td>kanyewest</td>\n", | |
" <td>iphone</td>\n", | |
" <td>drawings</td>\n", | |
" <td>FanPuns</td>\n", | |
" <td>Pokemoncollege</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>16</th>\n", | |
" <td>realmadrid</td>\n", | |
" <td>FIFA12</td>\n", | |
" <td>Bundesliga</td>\n", | |
" <td>uniqlo</td>\n", | |
" <td>fsu</td>\n", | |
" <td>HalloweenPorn</td>\n", | |
" <td>normalboots</td>\n", | |
" <td>asstastic</td>\n", | |
" <td>24hoursupport</td>\n", | |
" <td>KateeOwen</td>\n", | |
" <td>...</td>\n", | |
" <td>consumerhacks</td>\n", | |
" <td>vinyldjs</td>\n", | |
" <td>Asoiafspoilersall</td>\n", | |
" <td>OttawaSenators</td>\n", | |
" <td>jailbreak</td>\n", | |
" <td>memphisgrizzlies</td>\n", | |
" <td>AppHookup</td>\n", | |
" <td>computertechs</td>\n", | |
" <td>CowLand</td>\n", | |
" <td>stunfisk</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>17</th>\n", | |
" <td>bootroom</td>\n", | |
" <td>EA_FIFA</td>\n", | |
" <td>footballmanagergames</td>\n", | |
" <td>adventureporn</td>\n", | |
" <td>kansascity</td>\n", | |
" <td>WeirdSubreddits</td>\n", | |
" <td>Pokemoncollege</td>\n", | |
" <td>Cumonboobs</td>\n", | |
" <td>bubbleswithfaces</td>\n", | |
" <td>iknewgoatsweretrouble</td>\n", | |
" <td>...</td>\n", | |
" <td>creepywiki</td>\n", | |
" <td>DogsWithCatHeads</td>\n", | |
" <td>WesterosiProblems</td>\n", | |
" <td>Flyers</td>\n", | |
" <td>osx</td>\n", | |
" <td>SchooledUp</td>\n", | |
" <td>jailbreak</td>\n", | |
" <td>Sandwiches</td>\n", | |
" <td>massage</td>\n", | |
" <td>Pokemongiveaway</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>18</th>\n", | |
" <td>Fifa13</td>\n", | |
" <td>realmadrid</td>\n", | |
" <td>tc_archery</td>\n", | |
" <td>breitling</td>\n", | |
" <td>orlando</td>\n", | |
" <td>WhyWouldYouFuckThat</td>\n", | |
" <td>PokemonROMhacks</td>\n", | |
" <td>manbetterporn</td>\n", | |
" <td>worldofwarcraft</td>\n", | |
" <td>haligonients</td>\n", | |
" <td>...</td>\n", | |
" <td>dating</td>\n", | |
" <td>books</td>\n", | |
" <td>HypnoHookup</td>\n", | |
" <td>stlouisblues</td>\n", | |
" <td>booklists</td>\n", | |
" <td>warriors</td>\n", | |
" <td>iphonehelp</td>\n", | |
" <td>bttf</td>\n", | |
" <td>diamondmine</td>\n", | |
" <td>pokemonchallenges</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>19</th>\n", | |
" <td>FIFA</td>\n", | |
" <td>Barca</td>\n", | |
" <td>MilitaryGear</td>\n", | |
" <td>malelivingspace</td>\n", | |
" <td>Tucson</td>\n", | |
" <td>SomeRandomReddit</td>\n", | |
" <td>Pokemonexchange</td>\n", | |
" <td>DragonageNSFW</td>\n", | |
" <td>WoWNostalgia</td>\n", | |
" <td>Turkey</td>\n", | |
" <td>...</td>\n", | |
" <td>fictionaliama</td>\n", | |
" <td>BooksAMA</td>\n", | |
" <td>maturewoman</td>\n", | |
" <td>devils</td>\n", | |
" <td>iOSthemes</td>\n", | |
" <td>Mavericks</td>\n", | |
" <td>SEGA32X</td>\n", | |
" <td>Kirbs2002</td>\n", | |
" <td>sexpertslounge</td>\n", | |
" <td>pokemonconspiracies</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>20</th>\n", | |
" <td>fcbayern</td>\n", | |
" <td>footballmanagergames</td>\n", | |
" <td>LigaMX</td>\n", | |
" <td>gayforsaulyd</td>\n", | |
" <td>politics</td>\n", | |
" <td>Clotheshangers</td>\n", | |
" <td>PokemonLeagueDS</td>\n", | |
" <td>drawngonewild</td>\n", | |
" <td>FTH</td>\n", | |
" <td>shewantstofuck</td>\n", | |
" <td>...</td>\n", | |
" <td>benchgifs</td>\n", | |
" <td>bookclub</td>\n", | |
" <td>Spartacus_TV</td>\n", | |
" <td>BostonBruins</td>\n", | |
" <td>iphonehelp</td>\n", | |
" <td>bostonceltics</td>\n", | |
" <td>AlienBlue</td>\n", | |
" <td>kuro5hit</td>\n", | |
" <td>MinecraftChampions</td>\n", | |
" <td>Pokemonexchange</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>21</th>\n", | |
" <td>SoccerBetting</td>\n", | |
" <td>bootroom</td>\n", | |
" <td>KitSwap</td>\n", | |
" <td>Watches</td>\n", | |
" <td>Austin</td>\n", | |
" <td>windowshots</td>\n", | |
" <td>pkmntcgtrades</td>\n", | |
" <td>assgifs</td>\n", | |
" <td>redditguild</td>\n", | |
" <td>typescript</td>\n", | |
" <td>...</td>\n", | |
" <td>AlienExchange</td>\n", | |
" <td>booksuggestions</td>\n", | |
" <td>butleruniversity</td>\n", | |
" <td>SanJoseSharks</td>\n", | |
" <td>SEGA32X</td>\n", | |
" <td>GoNets</td>\n", | |
" <td>commonsense</td>\n", | |
" <td>ABotOfIceAndFire</td>\n", | |
" <td>boule</td>\n", | |
" <td>GenerationOne</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>22</th>\n", | |
" <td>EA_FIFA</td>\n", | |
" <td>fcbayern</td>\n", | |
" <td>chelseafc</td>\n", | |
" <td>mensfashionadvice</td>\n", | |
" <td>SaltLakeCity</td>\n", | |
" <td>thismemeshoulddie</td>\n", | |
" <td>TruePokemon</td>\n", | |
" <td>ToeSucking</td>\n", | |
" <td>Rift</td>\n", | |
" <td>Syria</td>\n", | |
" <td>...</td>\n", | |
" <td>Circlebook</td>\n", | |
" <td>alphacentauri</td>\n", | |
" <td>freakyfetishstories</td>\n", | |
" <td>winnipegjets</td>\n", | |
" <td>iosgaming</td>\n", | |
" <td>nbacirclejerk</td>\n", | |
" <td>macgaming</td>\n", | |
" <td>tesothemereddit</td>\n", | |
" <td>minecraftium</td>\n", | |
" <td>pokemonrp</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>23</th>\n", | |
" <td>FIFA12</td>\n", | |
" <td>Aleague</td>\n", | |
" <td>MCFC</td>\n", | |
" <td>soccergaming</td>\n", | |
" <td>Louisville</td>\n", | |
" <td>ThisDayInHistory</td>\n", | |
" <td>pokemonconspiracies</td>\n", | |
" <td>joi</td>\n", | |
" <td>MMORPG</td>\n", | |
" <td>arabic</td>\n", | |
" <td>...</td>\n", | |
" <td>FoodVideos</td>\n", | |
" <td>mildlyinteresting</td>\n", | |
" <td>OliviaMunn</td>\n", | |
" <td>hawks</td>\n", | |
" <td>Panera</td>\n", | |
" <td>chicagobulls</td>\n", | |
" <td>iOSthemes</td>\n", | |
" <td>demanpls</td>\n", | |
" <td>TriPixel</td>\n", | |
" <td>PokemonROMhacks</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>24</th>\n", | |
" <td>borussiadortmund</td>\n", | |
" <td>ACMilan</td>\n", | |
" <td>donenad</td>\n", | |
" <td>swagteamsix</td>\n", | |
" <td>Dallas</td>\n", | |
" <td>traversecity</td>\n", | |
" <td>GenerationOne</td>\n", | |
" <td>SymphonieVonBondage</td>\n", | |
" <td>ALS</td>\n", | |
" <td>mexico</td>\n", | |
" <td>...</td>\n", | |
" <td>NBA2k</td>\n", | |
" <td>bookshelf</td>\n", | |
" <td>Conservativebooks</td>\n", | |
" <td>ColoradoAvalanche</td>\n", | |
" <td>apps</td>\n", | |
" <td>OrlandoMagic</td>\n", | |
" <td>Panera</td>\n", | |
" <td>asoiaf</td>\n", | |
" <td>mathias</td>\n", | |
" <td>pkmntcg</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>25</th>\n", | |
" <td>football</td>\n", | |
" <td>footballtactics</td>\n", | |
" <td>longrange</td>\n", | |
" <td>supremeclothing</td>\n", | |
" <td>Charlotte</td>\n", | |
" <td>wikipedia</td>\n", | |
" <td>pkmntcgcollections</td>\n", | |
" <td>plugged</td>\n", | |
" <td>MovieWallpapers</td>\n", | |
" <td>pernicus</td>\n", | |
" <td>...</td>\n", | |
" <td>nba</td>\n", | |
" <td>metacsec</td>\n", | |
" <td>Banshee</td>\n", | |
" <td>hockeygoalies</td>\n", | |
" <td>macgaming</td>\n", | |
" <td>kings</td>\n", | |
" <td>jasmineapp</td>\n", | |
" <td>PlayPassOrPause</td>\n", | |
" <td>mccountercraft</td>\n", | |
" <td>PokemonLeagueDS</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>26</th>\n", | |
" <td>Aleague</td>\n", | |
" <td>soccergaming</td>\n", | |
" <td>gats</td>\n", | |
" <td>paulrudd</td>\n", | |
" <td>Atlanta</td>\n", | |
" <td>ambientidm</td>\n", | |
" <td>pokemonrp</td>\n", | |
" <td>RedHeelsGW</td>\n", | |
" <td>diablo3</td>\n", | |
" <td>Hemophilia</td>\n", | |
" <td>...</td>\n", | |
" <td>lakers</td>\n", | |
" <td>dogsinwigs</td>\n", | |
" <td>lickingdick</td>\n", | |
" <td>NewYorkIslanders</td>\n", | |
" <td>askjailbreak</td>\n", | |
" <td>NYKnicks</td>\n", | |
" <td>zsh</td>\n", | |
" <td>gameofthrones</td>\n", | |
" <td>GWAsians</td>\n", | |
" <td>pkmntcgtrades</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>27</th>\n", | |
" <td>NUFC</td>\n", | |
" <td>borussiadortmund</td>\n", | |
" <td>Firearms</td>\n", | |
" <td>FantasyPL</td>\n", | |
" <td>Boise</td>\n", | |
" <td>failedpilots</td>\n", | |
" <td>pokemonbattles</td>\n", | |
" <td>MNGoneWild</td>\n", | |
" <td>wowtcg</td>\n", | |
" <td>Palestine</td>\n", | |
" <td>...</td>\n", | |
" <td>BreakUps</td>\n", | |
" <td>tipofmytongue</td>\n", | |
" <td>CelebsInTights</td>\n", | |
" <td>wildhockey</td>\n", | |
" <td>iWallpaper</td>\n", | |
" <td>suns</td>\n", | |
" <td>CSUDH</td>\n", | |
" <td>Kazakhstan</td>\n", | |
" <td>lmm</td>\n", | |
" <td>normalboots</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>28</th>\n", | |
" <td>ACMilan</td>\n", | |
" <td>NUFC</td>\n", | |
" <td>fcbayern</td>\n", | |
" <td>malegrooming</td>\n", | |
" <td>VirginiaTech</td>\n", | |
" <td>deepcuts</td>\n", | |
" <td>pkmntcg</td>\n", | |
" <td>booty_gifs</td>\n", | |
" <td>turnoverpie</td>\n", | |
" <td>HealthyWeightLoss</td>\n", | |
" <td>...</td>\n", | |
" <td>SoCalAirsoft</td>\n", | |
" <td>literature</td>\n", | |
" <td>Pokenawa</td>\n", | |
" <td>sabres</td>\n", | |
" <td>JillStein4President</td>\n", | |
" <td>slamdunk</td>\n", | |
" <td>flextweak</td>\n", | |
" <td>SlightlyDamned</td>\n", | |
" <td>WolfPAChq</td>\n", | |
" <td>PokemonFusion</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>29</th>\n", | |
" <td>footballtactics</td>\n", | |
" <td>soccercirclejerk</td>\n", | |
" <td>realmadrid</td>\n", | |
" <td>NUFC</td>\n", | |
" <td>Hawaii</td>\n", | |
" <td>carlhprogramming</td>\n", | |
" <td>pokemonarts</td>\n", | |
" <td>gonewild</td>\n", | |
" <td>TheSecretWorld</td>\n", | |
" <td>1428</td>\n", | |
" <td>...</td>\n", | |
" <td>StateFarm</td>\n", | |
" <td>skinnytail</td>\n", | |
" <td>haydenpanettiere</td>\n", | |
" <td>CalgaryFlames</td>\n", | |
" <td>dogsinwigs</td>\n", | |
" <td>rockets</td>\n", | |
" <td>iosgaming</td>\n", | |
" <td>Dreadfort</td>\n", | |
" <td>Hypermine</td>\n", | |
" <td>SoloPokes</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>...</th>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15092</th>\n", | |
" <td>Shotguns</td>\n", | |
" <td>compsci</td>\n", | |
" <td>BattleSim</td>\n", | |
" <td>Neopsychedelia</td>\n", | |
" <td>Bad_ass_girlfriends</td>\n", | |
" <td>LadiesofScience</td>\n", | |
" <td>BlenderGameEngine</td>\n", | |
" <td>TrollXChromosomes</td>\n", | |
" <td>xenominer360</td>\n", | |
" <td>shagyerda</td>\n", | |
" <td>...</td>\n", | |
" <td>OperationSayFuckALot</td>\n", | |
" <td>MLPArt</td>\n", | |
" <td>malepolish</td>\n", | |
" <td>dpmansen</td>\n", | |
" <td>kENTuckytrees</td>\n", | |
" <td>Articles</td>\n", | |
" <td>AmyAdams</td>\n", | |
" <td>gamegenome</td>\n", | |
" <td>BIRDTEAMS</td>\n", | |
" <td>minnesotavikings</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15093</th>\n", | |
" <td>progun</td>\n", | |
" <td>Team_Japanese</td>\n", | |
" <td>DAE</td>\n", | |
" <td>Iron</td>\n", | |
" <td>services</td>\n", | |
" <td>NaturalBeauty</td>\n", | |
" <td>adelaidenews</td>\n", | |
" <td>ABraThatFits</td>\n", | |
" <td>starcraft2_class</td>\n", | |
" <td>Chydrego</td>\n", | |
" <td>...</td>\n", | |
" <td>grooveshark</td>\n", | |
" <td>crazysteve</td>\n", | |
" <td>yusufcirclejerk</td>\n", | |
" <td>PictureChallenge</td>\n", | |
" <td>HouseMD</td>\n", | |
" <td>40something</td>\n", | |
" <td>write</td>\n", | |
" <td>drwho</td>\n", | |
" <td>falcons</td>\n", | |
" <td>miamidolphins</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15094</th>\n", | |
" <td>canadaguns</td>\n", | |
" <td>Big_Ood</td>\n", | |
" <td>DYR</td>\n", | |
" <td>homegym</td>\n", | |
" <td>Pornoeverywherexxx</td>\n", | |
" <td>mydrunkkitchen</td>\n", | |
" <td>StrandedWhale</td>\n", | |
" <td>Mommit</td>\n", | |
" <td>Hobbies</td>\n", | |
" <td>Trathira</td>\n", | |
" <td>...</td>\n", | |
" <td>BreastPumps</td>\n", | |
" <td>thelook</td>\n", | |
" <td>2XLite</td>\n", | |
" <td>nflblogs</td>\n", | |
" <td>avatarvideos</td>\n", | |
" <td>OldTimeHockey</td>\n", | |
" <td>literature</td>\n", | |
" <td>simpleios</td>\n", | |
" <td>nfffffffluuuuuuuuuuuu</td>\n", | |
" <td>nfl</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15095</th>\n", | |
" <td>knives</td>\n", | |
" <td>puremathematics</td>\n", | |
" <td>polycomics</td>\n", | |
" <td>Fitness</td>\n", | |
" <td>Hardcore_PornGifs</td>\n", | |
" <td>sheridan</td>\n", | |
" <td>computer</td>\n", | |
" <td>frugalbeauty</td>\n", | |
" <td>starcraft_strategy</td>\n", | |
" <td>DLGOKN</td>\n", | |
" <td>...</td>\n", | |
" <td>derp</td>\n", | |
" <td>ASMRmusic</td>\n", | |
" <td>infertility</td>\n", | |
" <td>medschool</td>\n", | |
" <td>CAmmunity</td>\n", | |
" <td>KansasCityChiefs</td>\n", | |
" <td>Holmes</td>\n", | |
" <td>DoctorWhoFreedom</td>\n", | |
" <td>49ers</td>\n", | |
" <td>lmm</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15096</th>\n", | |
" <td>gunpolitics</td>\n", | |
" <td>mathisbeautiful</td>\n", | |
" <td>PlayPassOrPause</td>\n", | |
" <td>Sliphorn</td>\n", | |
" <td>bipoliticalandcurious</td>\n", | |
" <td>IdeaExchange</td>\n", | |
" <td>pcgamingtechsupport</td>\n", | |
" <td>TheGirlSurvivalGuide</td>\n", | |
" <td>DNE</td>\n", | |
" <td>geologygonewild</td>\n", | |
" <td>...</td>\n", | |
" <td>IAMAFamousArchive</td>\n", | |
" <td>maisiewilliams</td>\n", | |
" <td>LadiesofScience</td>\n", | |
" <td>shootingcars</td>\n", | |
" <td>cachatfanfic</td>\n", | |
" <td>TampaBayLightning</td>\n", | |
" <td>orderofthephoenix</td>\n", | |
" <td>crazysteve</td>\n", | |
" <td>Mariners</td>\n", | |
" <td>sportsbook</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15097</th>\n", | |
" <td>shittygunpictures</td>\n", | |
" <td>freesoftware</td>\n", | |
" <td>wtfgames</td>\n", | |
" <td>askedreddit</td>\n", | |
" <td>2012askanything</td>\n", | |
" <td>GossipGirl</td>\n", | |
" <td>XXX_Animated_Gifs</td>\n", | |
" <td>entwives</td>\n", | |
" <td>skypepartycirclejerk</td>\n", | |
" <td>Shaskel</td>\n", | |
" <td>...</td>\n", | |
" <td>malepolish</td>\n", | |
" <td>gallifrey</td>\n", | |
" <td>blackgirlgamers</td>\n", | |
" <td>QualityPhotos</td>\n", | |
" <td>nwo</td>\n", | |
" <td>dpmansen</td>\n", | |
" <td>truepois</td>\n", | |
" <td>ios</td>\n", | |
" <td>fcs</td>\n", | |
" <td>Hypermine</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15098</th>\n", | |
" <td>300BLK</td>\n", | |
" <td>comedywriting</td>\n", | |
" <td>The_Cheated</td>\n", | |
" <td>kettlebell</td>\n", | |
" <td>baozoumanhua</td>\n", | |
" <td>duckface</td>\n", | |
" <td>eddfaction</td>\n", | |
" <td>LumiaLovers</td>\n", | |
" <td>Destiny</td>\n", | |
" <td>androidtablets</td>\n", | |
" <td>...</td>\n", | |
" <td>sidewayspony</td>\n", | |
" <td>DoesAnybodyElse</td>\n", | |
" <td>ForeverAloneWomen</td>\n", | |
" <td>Colts</td>\n", | |
" <td>FlashForward</td>\n", | |
" <td>caps</td>\n", | |
" <td>80sElectro</td>\n", | |
" <td>toolSquad</td>\n", | |
" <td>Chargers</td>\n", | |
" <td>NFL_Draft</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15099</th>\n", | |
" <td>Glocks</td>\n", | |
" <td>lisp_ja</td>\n", | |
" <td>DNE</td>\n", | |
" <td>Hutchinson</td>\n", | |
" <td>aitaiwan</td>\n", | |
" <td>InfertilityBabies</td>\n", | |
" <td>worms</td>\n", | |
" <td>2XLookbook</td>\n", | |
" <td>wtfgames</td>\n", | |
" <td>bttf</td>\n", | |
" <td>...</td>\n", | |
" <td>ANTM</td>\n", | |
" <td>euphonium</td>\n", | |
" <td>shittymspaints</td>\n", | |
" <td>Lightroom</td>\n", | |
" <td>irvine</td>\n", | |
" <td>PacificNorthwest</td>\n", | |
" <td>DoctorWhumour</td>\n", | |
" <td>Sherlock</td>\n", | |
" <td>nfl</td>\n", | |
" <td>boule</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15100</th>\n", | |
" <td>opencarry</td>\n", | |
" <td>mathpics</td>\n", | |
" <td>WriteWithMe</td>\n", | |
" <td>fargo</td>\n", | |
" <td>spacedikdiks</td>\n", | |
" <td>circlejerk</td>\n", | |
" <td>infinityblade</td>\n", | |
" <td>infertility</td>\n", | |
" <td>asd</td>\n", | |
" <td>numerical</td>\n", | |
" <td>...</td>\n", | |
" <td>SRSScience</td>\n", | |
" <td>bootstrap</td>\n", | |
" <td>EdmontonGoneWild</td>\n", | |
" <td>Cameras</td>\n", | |
" <td>juanbuiza</td>\n", | |
" <td>NFLhuddle</td>\n", | |
" <td>gallifrey</td>\n", | |
" <td>macapps</td>\n", | |
" <td>NYGiants</td>\n", | |
" <td>TriPixel</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15101</th>\n", | |
" <td>CZFirearms</td>\n", | |
" <td>FindTheOthers</td>\n", | |
" <td>KittyPorn</td>\n", | |
" <td>AlternativeHealth</td>\n", | |
" <td>Entrenched</td>\n", | |
" <td>closetswap</td>\n", | |
" <td>CableManagement</td>\n", | |
" <td>TwoXSex</td>\n", | |
" <td>wowbro</td>\n", | |
" <td>Philanthropy</td>\n", | |
" <td>...</td>\n", | |
" <td>hugenaturals</td>\n", | |
" <td>bedhg</td>\n", | |
" <td>feetish</td>\n", | |
" <td>photography</td>\n", | |
" <td>GunslingerMusic</td>\n", | |
" <td>steak</td>\n", | |
" <td>dresdenfiles</td>\n", | |
" <td>apple</td>\n", | |
" <td>EvilLeagueOfEvil</td>\n", | |
" <td>mathias</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15102</th>\n", | |
" <td>Mini14</td>\n", | |
" <td>scribblenauts</td>\n", | |
" <td>WTF_Wallpapers</td>\n", | |
" <td>ecig_vendors</td>\n", | |
" <td>TotalFark</td>\n", | |
" <td>NonverbalComm</td>\n", | |
" <td>ClearBackblast</td>\n", | |
" <td>USMilitarySO</td>\n", | |
" <td>castit</td>\n", | |
" <td>AbletonProductions</td>\n", | |
" <td>...</td>\n", | |
" <td>SeattleHistory</td>\n", | |
" <td>notkidding</td>\n", | |
" <td>femmit</td>\n", | |
" <td>toycameras</td>\n", | |
" <td>cell</td>\n", | |
" <td>sabres</td>\n", | |
" <td>lexlinguae</td>\n", | |
" <td>classicwho</td>\n", | |
" <td>CollegeBasketball</td>\n", | |
" <td>minecraftium</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15103</th>\n", | |
" <td>gundeals</td>\n", | |
" <td>dalcs4168</td>\n", | |
" <td>Clotheshangers</td>\n", | |
" <td>todayiwatched</td>\n", | |
" <td>nonseq</td>\n", | |
" <td>Gingers</td>\n", | |
" <td>buildapcsales</td>\n", | |
" <td>CherylCole</td>\n", | |
" <td>StarcraftCirclejerk</td>\n", | |
" <td>Valesrubberduckies</td>\n", | |
" <td>...</td>\n", | |
" <td>AnalyzingReddit</td>\n", | |
" <td>Digihentai</td>\n", | |
" <td>Cheetahs</td>\n", | |
" <td>Hawkeye_Football</td>\n", | |
" <td>huntedseries</td>\n", | |
" <td>baby</td>\n", | |
" <td>logophilia</td>\n", | |
" <td>Johnlock</td>\n", | |
" <td>SaintLouisRams</td>\n", | |
" <td>mccountercraft</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15104</th>\n", | |
" <td>tc_archery</td>\n", | |
" <td>productivity</td>\n", | |
" <td>PigsGoneWild</td>\n", | |
" <td>kingcounty</td>\n", | |
" <td>FitnessGirls</td>\n", | |
" <td>technews</td>\n", | |
" <td>HarvardTonight</td>\n", | |
" <td>stepparents</td>\n", | |
" <td>quicklooks</td>\n", | |
" <td>yoyohoneysingh</td>\n", | |
" <td>...</td>\n", | |
" <td>olderlesbians</td>\n", | |
" <td>wmnf</td>\n", | |
" <td>femalefashionadvice</td>\n", | |
" <td>sext</td>\n", | |
" <td>iamgoingtohellforthis</td>\n", | |
" <td>Flyers</td>\n", | |
" <td>dogsinwigs</td>\n", | |
" <td>macsetups</td>\n", | |
" <td>cowboys</td>\n", | |
" <td>WolfPAChq</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15105</th>\n", | |
" <td>CCW</td>\n", | |
" <td>PostgreSQL</td>\n", | |
" <td>HotDogPorn</td>\n", | |
" <td>fitmeals</td>\n", | |
" <td>ShemaleSwag</td>\n", | |
" <td>AlienExchange</td>\n", | |
" <td>Zendaya</td>\n", | |
" <td>rant</td>\n", | |
" <td>HotSBetaKeys</td>\n", | |
" <td>PiCases</td>\n", | |
" <td>...</td>\n", | |
" <td>Rights4Men</td>\n", | |
" <td>bronycringe</td>\n", | |
" <td>Endo</td>\n", | |
" <td>photocritique</td>\n", | |
" <td>louie</td>\n", | |
" <td>hurling</td>\n", | |
" <td>doctorwho</td>\n", | |
" <td>doctorwhocirclejerk</td>\n", | |
" <td>Tennesseetitans</td>\n", | |
" <td>MinecraftChampions</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15106</th>\n", | |
" <td>saiga</td>\n", | |
" <td>coding</td>\n", | |
" <td>SomeRandomReddit</td>\n", | |
" <td>xxfitness</td>\n", | |
" <td>wild_naked_girls</td>\n", | |
" <td>TheSexCave</td>\n", | |
" <td>Jab</td>\n", | |
" <td>TomeNET</td>\n", | |
" <td>itmejp</td>\n", | |
" <td>Surface</td>\n", | |
" <td>...</td>\n", | |
" <td>TwoXChromosomes</td>\n", | |
" <td>MovieWallpapers</td>\n", | |
" <td>veggieteens</td>\n", | |
" <td>beforeandafteredit</td>\n", | |
" <td>Jericho</td>\n", | |
" <td>bengals</td>\n", | |
" <td>booksuggestions</td>\n", | |
" <td>dwlounge</td>\n", | |
" <td>CFB</td>\n", | |
" <td>JordanCox2</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15107</th>\n", | |
" <td>gats</td>\n", | |
" <td>xmonad</td>\n", | |
" <td>SantaPorn</td>\n", | |
" <td>StudentNurse</td>\n", | |
" <td>NSFW_sexynudeteens</td>\n", | |
" <td>preppy</td>\n", | |
" <td>MoundofVenus</td>\n", | |
" <td>cafe</td>\n", | |
" <td>StarcraftDeutschland</td>\n", | |
" <td>AvaDevine</td>\n", | |
" <td>...</td>\n", | |
" <td>GirlsinPinkUndies</td>\n", | |
" <td>hilaribad</td>\n", | |
" <td>malefashionadvice</td>\n", | |
" <td>Pixcafe</td>\n", | |
" <td>HHN</td>\n", | |
" <td>nflblogs</td>\n", | |
" <td>artshub</td>\n", | |
" <td>whovianents</td>\n", | |
" <td>Patriots</td>\n", | |
" <td>CFB</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15108</th>\n", | |
" <td>ak47</td>\n", | |
" <td>vim</td>\n", | |
" <td>SnooPorn</td>\n", | |
" <td>ShittyTheoryOfReddit</td>\n", | |
" <td>NSFW_HotSlut_gonewild</td>\n", | |
" <td>Admin</td>\n", | |
" <td>WhatsInThisPool</td>\n", | |
" <td>birthcontrol</td>\n", | |
" <td>slothswitharms</td>\n", | |
" <td>GNURadio</td>\n", | |
" <td>...</td>\n", | |
" <td>FemmeThoughtsFeminism</td>\n", | |
" <td>DoctorWhumour</td>\n", | |
" <td>frugalbeauty</td>\n", | |
" <td>JordanCox2</td>\n", | |
" <td>maggielawson</td>\n", | |
" <td>freddiemercury</td>\n", | |
" <td>Random_Acts_of_Books</td>\n", | |
" <td>IsabelleFuhrman</td>\n", | |
" <td>sexmix247</td>\n", | |
" <td>CowLand</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15109</th>\n", | |
" <td>prepping</td>\n", | |
" <td>nethack</td>\n", | |
" <td>PicsOfHorseVaginas</td>\n", | |
" <td>shittyshitredditsays</td>\n", | |
" <td>NSFW_nude_asian_teens</td>\n", | |
" <td>dataisterrifying</td>\n", | |
" <td>AvaSambora</td>\n", | |
" <td>ProjectRunway</td>\n", | |
" <td>starcraft</td>\n", | |
" <td>Ermahgerd</td>\n", | |
" <td>...</td>\n", | |
" <td>PunkLovers</td>\n", | |
" <td>AmyAdams</td>\n", | |
" <td>2XLookbook</td>\n", | |
" <td>LinusDiaries</td>\n", | |
" <td>circlejerkbreakingbad</td>\n", | |
" <td>ravens</td>\n", | |
" <td>ROIO</td>\n", | |
" <td>karengillan</td>\n", | |
" <td>internetdefense</td>\n", | |
" <td>diamondmine</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15110</th>\n", | |
" <td>guns</td>\n", | |
" <td>gnu</td>\n", | |
" <td>HalloweenPorn</td>\n", | |
" <td>volunteeringsolutions</td>\n", | |
" <td>sexy_nonnude_teens</td>\n", | |
" <td>StrandedWhale</td>\n", | |
" <td>buildapcforme</td>\n", | |
" <td>ANTM</td>\n", | |
" <td>allthingszerg</td>\n", | |
" <td>braddoingbradthings</td>\n", | |
" <td>...</td>\n", | |
" <td>henna</td>\n", | |
" <td>IsabelleFuhrman</td>\n", | |
" <td>BodyAcceptance</td>\n", | |
" <td>analog</td>\n", | |
" <td>RandomActsOfBidets</td>\n", | |
" <td>Bigtitssmalltits</td>\n", | |
" <td>hyperfurs</td>\n", | |
" <td>davidtennant</td>\n", | |
" <td>gifrequests</td>\n", | |
" <td>NYGiants</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15111</th>\n", | |
" <td>Hunting</td>\n", | |
" <td>ocaml</td>\n", | |
" <td>burningporn</td>\n", | |
" <td>RAMD</td>\n", | |
" <td>front</td>\n", | |
" <td>SRSFartsAndCrafts</td>\n", | |
" <td>HardcoreSex</td>\n", | |
" <td>VintageLadyBoners</td>\n", | |
" <td>allthingsprotoss</td>\n", | |
" <td>Information_Security</td>\n", | |
" <td>...</td>\n", | |
" <td>Cheetahs</td>\n", | |
" <td>GeeKnitting</td>\n", | |
" <td>findfashion</td>\n", | |
" <td>Bad_ass_girlfriends</td>\n", | |
" <td>Dexter</td>\n", | |
" <td>JordanCox2</td>\n", | |
" <td>selfpublish</td>\n", | |
" <td>gallifreyan</td>\n", | |
" <td>NFL_Draft</td>\n", | |
" <td>Patriots</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15112</th>\n", | |
" <td>CompetitionShooting</td>\n", | |
" <td>emacs</td>\n", | |
" <td>HobosGoneWild</td>\n", | |
" <td>naturalbodybuilding</td>\n", | |
" <td>frontiama</td>\n", | |
" <td>TPOP</td>\n", | |
" <td>aquajewhungerforce</td>\n", | |
" <td>facebook</td>\n", | |
" <td>BarCraft</td>\n", | |
" <td>VicPD</td>\n", | |
" <td>...</td>\n", | |
" <td>trashynovels</td>\n", | |
" <td>teefury</td>\n", | |
" <td>rawdenim</td>\n", | |
" <td>photographs</td>\n", | |
" <td>Pedberg</td>\n", | |
" <td>detroitlions</td>\n", | |
" <td>OldEnglish</td>\n", | |
" <td>gallifrey</td>\n", | |
" <td>CHIBears</td>\n", | |
" <td>LinusDiaries</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15113</th>\n", | |
" <td>Gunsforsale</td>\n", | |
" <td>ProgrammerHumor</td>\n", | |
" <td>UrethraPorn</td>\n", | |
" <td>DeathProTips</td>\n", | |
" <td>frontscience</td>\n", | |
" <td>wmnf</td>\n", | |
" <td>internetdefense</td>\n", | |
" <td>waronwomen</td>\n", | |
" <td>starcraftnakama</td>\n", | |
" <td>internet2012</td>\n", | |
" <td>...</td>\n", | |
" <td>twilightzonedates</td>\n", | |
" <td>t:latestoneage</td>\n", | |
" <td>asiantwoX</td>\n", | |
" <td>postprocessing</td>\n", | |
" <td>thingsoncats</td>\n", | |
" <td>LinusDiaries</td>\n", | |
" <td>bookshelf</td>\n", | |
" <td>mattandbenedict</td>\n", | |
" <td>Texans</td>\n", | |
" <td>49ers</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15114</th>\n", | |
" <td>ar15</td>\n", | |
" <td>pervasivecomputing</td>\n", | |
" <td>gnomewild</td>\n", | |
" <td>microgreens</td>\n", | |
" <td>alfrankenstein</td>\n", | |
" <td>GillianJacobs</td>\n", | |
" <td>buildapc</td>\n", | |
" <td>ThriftStoreHauls</td>\n", | |
" <td>Naytopia</td>\n", | |
" <td>amateurastronomy</td>\n", | |
" <td>...</td>\n", | |
" <td>parentdeals</td>\n", | |
" <td>doctorwho</td>\n", | |
" <td>TwoXChromosomes</td>\n", | |
" <td>filmphotos</td>\n", | |
" <td>Allison_Scagliotti</td>\n", | |
" <td>effzeh</td>\n", | |
" <td>BooksAMA</td>\n", | |
" <td>Torchwood</td>\n", | |
" <td>nyjets</td>\n", | |
" <td>oaklandraiders</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15115</th>\n", | |
" <td>reloading</td>\n", | |
" <td>scheme</td>\n", | |
" <td>CucumberPorn</td>\n", | |
" <td>EatCheapAndHealthy</td>\n", | |
" <td>johndollarfullofcrap</td>\n", | |
" <td>LifeProTips</td>\n", | |
" <td>gamingpc</td>\n", | |
" <td>bigboobproblems</td>\n", | |
" <td>starcraft2clans</td>\n", | |
" <td>cavalierkingcharles</td>\n", | |
" <td>...</td>\n", | |
" <td>TrackThrows</td>\n", | |
" <td>CREST</td>\n", | |
" <td>malefashion</td>\n", | |
" <td>circuloidiota</td>\n", | |
" <td>pipesgonewild</td>\n", | |
" <td>Redskins</td>\n", | |
" <td>books</td>\n", | |
" <td>mattsmith</td>\n", | |
" <td>Redskins</td>\n", | |
" <td>cowboys</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15116</th>\n", | |
" <td>Firearms</td>\n", | |
" <td>CasualMath</td>\n", | |
" <td>SpidersGoneWild</td>\n", | |
" <td>PronePaddling</td>\n", | |
" <td>OmegleVideos</td>\n", | |
" <td>mcwex</td>\n", | |
" <td>TwinGirls</td>\n", | |
" <td>curvygirls</td>\n", | |
" <td>AllThingsTerran</td>\n", | |
" <td>trueshreddit</td>\n", | |
" <td>...</td>\n", | |
" <td>femalewriters</td>\n", | |
" <td>FailedFedora</td>\n", | |
" <td>TodayIWore</td>\n", | |
" <td>NFLhuddle</td>\n", | |
" <td>ohnoghosts</td>\n", | |
" <td>NFLFandom</td>\n", | |
" <td>alt_lit</td>\n", | |
" <td>MovieWallpapers</td>\n", | |
" <td>nflcirclejerk</td>\n", | |
" <td>eagles</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15117</th>\n", | |
" <td>longrange</td>\n", | |
" <td>baduk</td>\n", | |
" <td>WhyWouldYouFuckThat</td>\n", | |
" <td>DepressedRage</td>\n", | |
" <td>CandidBikiniGirls</td>\n", | |
" <td>allstars</td>\n", | |
" <td>sexmix247</td>\n", | |
" <td>2XLite</td>\n", | |
" <td>Tumba</td>\n", | |
" <td>BitcoinMagazine</td>\n", | |
" <td>...</td>\n", | |
" <td>SexyNerds</td>\n", | |
" <td>dwlounge</td>\n", | |
" <td>blackgirls</td>\n", | |
" <td>effzeh</td>\n", | |
" <td>vinyldjs</td>\n", | |
" <td>GreenBayPackers</td>\n", | |
" <td>52book</td>\n", | |
" <td>wholock</td>\n", | |
" <td>eagles</td>\n", | |
" <td>Redskins</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15118</th>\n", | |
" <td>BrassSwap</td>\n", | |
" <td>libredesign</td>\n", | |
" <td>FuckingFish</td>\n", | |
" <td>2Chainz</td>\n", | |
" <td>engineersissues</td>\n", | |
" <td>UKHealthcare</td>\n", | |
" <td>overclocking</td>\n", | |
" <td>elections</td>\n", | |
" <td>Limu</td>\n", | |
" <td>TakeOneStepForward</td>\n", | |
" <td>...</td>\n", | |
" <td>amateursologirls</td>\n", | |
" <td>Humiliation</td>\n", | |
" <td>UnsentMusic</td>\n", | |
" <td>NFLFandom</td>\n", | |
" <td>breakingbadcomics</td>\n", | |
" <td>happierNYC</td>\n", | |
" <td>bookhaul</td>\n", | |
" <td>hyperfurs</td>\n", | |
" <td>panthers</td>\n", | |
" <td>DissidiaCraft</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15119</th>\n", | |
" <td>GunPorn</td>\n", | |
" <td>gtd</td>\n", | |
" <td>FlyingFuck</td>\n", | |
" <td>Nicaragua</td>\n", | |
" <td>albanianarchandpics</td>\n", | |
" <td>MichelleTrachtenberg</td>\n", | |
" <td>NSFWSector</td>\n", | |
" <td>childfree</td>\n", | |
" <td>DoesAnybodyElse</td>\n", | |
" <td>technology</td>\n", | |
" <td>...</td>\n", | |
" <td>MilitaryFamilies</td>\n", | |
" <td>cissp</td>\n", | |
" <td>SRSTechnology</td>\n", | |
" <td>freddiemercury</td>\n", | |
" <td>breakingbad</td>\n", | |
" <td>buffalobills</td>\n", | |
" <td>WoTreread</td>\n", | |
" <td>AmyAdams</td>\n", | |
" <td>Reflections</td>\n", | |
" <td>nyjets</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15120</th>\n", | |
" <td>USMilitia</td>\n", | |
" <td>LANL_French</td>\n", | |
" <td>WeirdSubreddits</td>\n", | |
" <td>IndianClubs</td>\n", | |
" <td>AutomobileTechnology</td>\n", | |
" <td>CarboholicsAnonymous</td>\n", | |
" <td>Reflections</td>\n", | |
" <td>mormoncringe</td>\n", | |
" <td>allthingsterranbot</td>\n", | |
" <td>slandrogangstas</td>\n", | |
" <td>...</td>\n", | |
" <td>veggieteens</td>\n", | |
" <td>hugs</td>\n", | |
" <td>goodyearwelt</td>\n", | |
" <td>happierNYC</td>\n", | |
" <td>memphismayfire</td>\n", | |
" <td>MontrealCanadiens</td>\n", | |
" <td>booklists</td>\n", | |
" <td>doctorwho</td>\n", | |
" <td>HighlightGIFS</td>\n", | |
" <td>Texans</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15121</th>\n", | |
" <td>1911</td>\n", | |
" <td>compscipapers</td>\n", | |
" <td>DoesAnybodyElse</td>\n", | |
" <td>LifeProTips</td>\n", | |
" <td>GreenCarLovers</td>\n", | |
" <td>eisley</td>\n", | |
" <td>gifs</td>\n", | |
" <td>mobile</td>\n", | |
" <td>UKStarcraft</td>\n", | |
" <td>preggocows</td>\n", | |
" <td>...</td>\n", | |
" <td>SRSTechnology</td>\n", | |
" <td>hyperfurs</td>\n", | |
" <td>freeforallfashion</td>\n", | |
" <td>filmtheory</td>\n", | |
" <td>Earlyjazz</td>\n", | |
" <td>steelers</td>\n", | |
" <td>BookCollecting</td>\n", | |
" <td>DoctorWhumour</td>\n", | |
" <td>gifs</td>\n", | |
" <td>CHIBears</td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"<p>15122 rows × 100 columns</p>\n", | |
"</div>" | |
], | |
"text/plain": [ | |
" 44 46 45 \\\n", | |
"0 ParisSG PrettyOlderWomen ParisSG \n", | |
"1 bevandele FTLStrikers bevandele \n", | |
"2 soccerbot ParisSG FootballMedia \n", | |
"3 FootballMedia soccerbot FTLStrikers \n", | |
"4 FTLStrikers bevandele soccerbot \n", | |
"5 PrettyOlderWomen FootballMedia PrettyOlderWomen \n", | |
"6 soccer reddevils coys \n", | |
"7 Gunners LiverpoolFC footballtactics \n", | |
"8 reddevils soccer Gunners \n", | |
"9 FantasyPL MCFC soccer \n", | |
"10 coys Gunners soccercirclejerk \n", | |
"11 Barca Fifa13 NUFC \n", | |
"12 chelseafc chelseafc reddevils \n", | |
"13 LiverpoolFC FantasyPL Barca \n", | |
"14 MCFC coys LiverpoolFC \n", | |
"15 footballmanagergames FIFA football \n", | |
"16 realmadrid FIFA12 Bundesliga \n", | |
"17 bootroom EA_FIFA footballmanagergames \n", | |
"18 Fifa13 realmadrid tc_archery \n", | |
"19 FIFA Barca MilitaryGear \n", | |
"20 fcbayern footballmanagergames LigaMX \n", | |
"21 SoccerBetting bootroom KitSwap \n", | |
"22 EA_FIFA fcbayern chelseafc \n", | |
"23 FIFA12 Aleague MCFC \n", | |
"24 borussiadortmund ACMilan donenad \n", | |
"25 football footballtactics longrange \n", | |
"26 Aleague soccergaming gats \n", | |
"27 NUFC borussiadortmund Firearms \n", | |
"28 ACMilan NUFC fcbayern \n", | |
"29 footballtactics soccercirclejerk realmadrid \n", | |
"... ... ... ... \n", | |
"15092 Shotguns compsci BattleSim \n", | |
"15093 progun Team_Japanese DAE \n", | |
"15094 canadaguns Big_Ood DYR \n", | |
"15095 knives puremathematics polycomics \n", | |
"15096 gunpolitics mathisbeautiful PlayPassOrPause \n", | |
"15097 shittygunpictures freesoftware wtfgames \n", | |
"15098 300BLK comedywriting The_Cheated \n", | |
"15099 Glocks lisp_ja DNE \n", | |
"15100 opencarry mathpics WriteWithMe \n", | |
"15101 CZFirearms FindTheOthers KittyPorn \n", | |
"15102 Mini14 scribblenauts WTF_Wallpapers \n", | |
"15103 gundeals dalcs4168 Clotheshangers \n", | |
"15104 tc_archery productivity PigsGoneWild \n", | |
"15105 CCW PostgreSQL HotDogPorn \n", | |
"15106 saiga coding SomeRandomReddit \n", | |
"15107 gats xmonad SantaPorn \n", | |
"15108 ak47 vim SnooPorn \n", | |
"15109 prepping nethack PicsOfHorseVaginas \n", | |
"15110 guns gnu HalloweenPorn \n", | |
"15111 Hunting ocaml burningporn \n", | |
"15112 CompetitionShooting emacs HobosGoneWild \n", | |
"15113 Gunsforsale ProgrammerHumor UrethraPorn \n", | |
"15114 ar15 pervasivecomputing gnomewild \n", | |
"15115 reloading scheme CucumberPorn \n", | |
"15116 Firearms CasualMath SpidersGoneWild \n", | |
"15117 longrange baduk WhyWouldYouFuckThat \n", | |
"15118 BrassSwap libredesign FuckingFish \n", | |
"15119 GunPorn gtd FlyingFuck \n", | |
"15120 USMilitia LANL_French WeirdSubreddits \n", | |
"15121 1911 compscipapers DoesAnybodyElse \n", | |
"\n", | |
" 40 0 42 \\\n", | |
"0 malefashionadvice AskReddit DoesAnybodyElse \n", | |
"1 goodyearwelt funny PicsOfHorseVaginas \n", | |
"2 malefashion pics PigsGoneWild \n", | |
"3 rawdenim WTF CucumberPorn \n", | |
"4 frugalmalefashion gaming SnooPorn \n", | |
"5 yusufcirclejerk AdviceAnimals UrethraPorn \n", | |
"6 AustralianMFA IAmA burningporn \n", | |
"7 mfacirclejerk videos SantaPorn \n", | |
"8 shittymspaints todayilearned HobosGoneWild \n", | |
"9 europeanmalefashion atheism gnomewild \n", | |
"10 malehairadvice Omaha KittyPorn \n", | |
"11 TeenMFA aww FuckingFish \n", | |
"12 itafterdark houston SpidersGoneWild \n", | |
"13 ldshistory UIUC FlyingFuck \n", | |
"14 malefoodadvice Columbus WTF_Wallpapers \n", | |
"15 preppy Purdue HotDogPorn \n", | |
"16 uniqlo fsu HalloweenPorn \n", | |
"17 adventureporn kansascity WeirdSubreddits \n", | |
"18 breitling orlando WhyWouldYouFuckThat \n", | |
"19 malelivingspace Tucson SomeRandomReddit \n", | |
"20 gayforsaulyd politics Clotheshangers \n", | |
"21 Watches Austin windowshots \n", | |
"22 mensfashionadvice SaltLakeCity thismemeshoulddie \n", | |
"23 soccergaming Louisville ThisDayInHistory \n", | |
"24 swagteamsix Dallas traversecity \n", | |
"25 supremeclothing Charlotte wikipedia \n", | |
"26 paulrudd Atlanta ambientidm \n", | |
"27 FantasyPL Boise failedpilots \n", | |
"28 malegrooming VirginiaTech deepcuts \n", | |
"29 NUFC Hawaii carlhprogramming \n", | |
"... ... ... ... \n", | |
"15092 Neopsychedelia Bad_ass_girlfriends LadiesofScience \n", | |
"15093 Iron services NaturalBeauty \n", | |
"15094 homegym Pornoeverywherexxx mydrunkkitchen \n", | |
"15095 Fitness Hardcore_PornGifs sheridan \n", | |
"15096 Sliphorn bipoliticalandcurious IdeaExchange \n", | |
"15097 askedreddit 2012askanything GossipGirl \n", | |
"15098 kettlebell baozoumanhua duckface \n", | |
"15099 Hutchinson aitaiwan InfertilityBabies \n", | |
"15100 fargo spacedikdiks circlejerk \n", | |
"15101 AlternativeHealth Entrenched closetswap \n", | |
"15102 ecig_vendors TotalFark NonverbalComm \n", | |
"15103 todayiwatched nonseq Gingers \n", | |
"15104 kingcounty FitnessGirls technews \n", | |
"15105 fitmeals ShemaleSwag AlienExchange \n", | |
"15106 xxfitness wild_naked_girls TheSexCave \n", | |
"15107 StudentNurse NSFW_sexynudeteens preppy \n", | |
"15108 ShittyTheoryOfReddit NSFW_HotSlut_gonewild Admin \n", | |
"15109 shittyshitredditsays NSFW_nude_asian_teens dataisterrifying \n", | |
"15110 volunteeringsolutions sexy_nonnude_teens StrandedWhale \n", | |
"15111 RAMD front SRSFartsAndCrafts \n", | |
"15112 naturalbodybuilding frontiama TPOP \n", | |
"15113 DeathProTips frontscience wmnf \n", | |
"15114 microgreens alfrankenstein GillianJacobs \n", | |
"15115 EatCheapAndHealthy johndollarfullofcrap LifeProTips \n", | |
"15116 PronePaddling OmegleVideos mcwex \n", | |
"15117 DepressedRage CandidBikiniGirls allstars \n", | |
"15118 2Chainz engineersissues UKHealthcare \n", | |
"15119 Nicaragua albanianarchandpics MichelleTrachtenberg \n", | |
"15120 IndianClubs AutomobileTechnology CarboholicsAnonymous \n", | |
"15121 LifeProTips GreenCarLovers eisley \n", | |
"\n", | |
" 26 27 47 \\\n", | |
"0 pokemonteams wetandwild ShitLiamDoes \n", | |
"1 pokemon underboob silverandguns \n", | |
"2 CraftMasters blackmailporn techsupport \n", | |
"3 Nbz gangbang uscgames \n", | |
"4 vanguardtips Sexfight Goblinism \n", | |
"5 nuzlocke The_Porn_Family Transmogrification \n", | |
"6 ebonyfeet CumFacials wow \n", | |
"7 thongsandals LolitaCheng WowUI \n", | |
"8 ShinyPokemon TVnewsbabes WoWGoldMaking \n", | |
"9 AsianFeet ChangingRooms wowscrolls \n", | |
"10 EvolutionofKits SpyShots wowstrat \n", | |
"11 pokemontrades CumSwallowing woweconomy \n", | |
"12 pokemonrng souse WoWStreams \n", | |
"13 Pokemongiveaway exgirlfriendpictures wowraf \n", | |
"14 stunfisk xxxstash wowguilds \n", | |
"15 denpamen cumov wowpodcasts \n", | |
"16 normalboots asstastic 24hoursupport \n", | |
"17 Pokemoncollege Cumonboobs bubbleswithfaces \n", | |
"18 PokemonROMhacks manbetterporn worldofwarcraft \n", | |
"19 Pokemonexchange DragonageNSFW WoWNostalgia \n", | |
"20 PokemonLeagueDS drawngonewild FTH \n", | |
"21 pkmntcgtrades assgifs redditguild \n", | |
"22 TruePokemon ToeSucking Rift \n", | |
"23 pokemonconspiracies joi MMORPG \n", | |
"24 GenerationOne SymphonieVonBondage ALS \n", | |
"25 pkmntcgcollections plugged MovieWallpapers \n", | |
"26 pokemonrp RedHeelsGW diablo3 \n", | |
"27 pokemonbattles MNGoneWild wowtcg \n", | |
"28 pkmntcg booty_gifs turnoverpie \n", | |
"29 pokemonarts gonewild TheSecretWorld \n", | |
"... ... ... ... \n", | |
"15092 BlenderGameEngine TrollXChromosomes xenominer360 \n", | |
"15093 adelaidenews ABraThatFits starcraft2_class \n", | |
"15094 StrandedWhale Mommit Hobbies \n", | |
"15095 computer frugalbeauty starcraft_strategy \n", | |
"15096 pcgamingtechsupport TheGirlSurvivalGuide DNE \n", | |
"15097 XXX_Animated_Gifs entwives skypepartycirclejerk \n", | |
"15098 eddfaction LumiaLovers Destiny \n", | |
"15099 worms 2XLookbook wtfgames \n", | |
"15100 infinityblade infertility asd \n", | |
"15101 CableManagement TwoXSex wowbro \n", | |
"15102 ClearBackblast USMilitarySO castit \n", | |
"15103 buildapcsales CherylCole StarcraftCirclejerk \n", | |
"15104 HarvardTonight stepparents quicklooks \n", | |
"15105 Zendaya rant HotSBetaKeys \n", | |
"15106 Jab TomeNET itmejp \n", | |
"15107 MoundofVenus cafe StarcraftDeutschland \n", | |
"15108 WhatsInThisPool birthcontrol slothswitharms \n", | |
"15109 AvaSambora ProjectRunway starcraft \n", | |
"15110 buildapcforme ANTM allthingszerg \n", | |
"15111 HardcoreSex VintageLadyBoners allthingsprotoss \n", | |
"15112 aquajewhungerforce facebook BarCraft \n", | |
"15113 internetdefense waronwomen starcraftnakama \n", | |
"15114 buildapc ThriftStoreHauls Naytopia \n", | |
"15115 gamingpc bigboobproblems starcraft2clans \n", | |
"15116 TwinGirls curvygirls AllThingsTerran \n", | |
"15117 sexmix247 2XLite Tumba \n", | |
"15118 overclocking elections Limu \n", | |
"15119 NSFWSector childfree DoesAnybodyElse \n", | |
"15120 Reflections mormoncringe allthingsterranbot \n", | |
"15121 gifs mobile UKStarcraft \n", | |
"\n", | |
" 21 ... 62 \\\n", | |
"0 ManchesterVegan ... Articles \n", | |
"1 asutosh ... knockoutgifs \n", | |
"2 goatedition ... postcolonialism \n", | |
"3 GOAT_TRUTH ... AskMen \n", | |
"4 worldnews ... outercourse \n", | |
"5 sticknpokes ... Oaxaca \n", | |
"6 CatsInBusinessAttire ... mindashq \n", | |
"7 douchebagfoundation ... dating_advice \n", | |
"8 nnDMT ... PeterL \n", | |
"9 AustralianFilm ... AskWomen \n", | |
"10 Filipinology ... Basketball \n", | |
"11 JKP ... BasketballTips \n", | |
"12 AscensionOmaha ... talktostrangers \n", | |
"13 indiansports ... Mavericks \n", | |
"14 Israel ... AlbumJerk \n", | |
"15 traphentai ... mindblown \n", | |
"16 KateeOwen ... consumerhacks \n", | |
"17 iknewgoatsweretrouble ... creepywiki \n", | |
"18 haligonients ... dating \n", | |
"19 Turkey ... fictionaliama \n", | |
"20 shewantstofuck ... benchgifs \n", | |
"21 typescript ... AlienExchange \n", | |
"22 Syria ... Circlebook \n", | |
"23 arabic ... FoodVideos \n", | |
"24 mexico ... NBA2k \n", | |
"25 pernicus ... nba \n", | |
"26 Hemophilia ... lakers \n", | |
"27 Palestine ... BreakUps \n", | |
"28 HealthyWeightLoss ... SoCalAirsoft \n", | |
"29 1428 ... StateFarm \n", | |
"... ... ... ... \n", | |
"15092 shagyerda ... OperationSayFuckALot \n", | |
"15093 Chydrego ... grooveshark \n", | |
"15094 Trathira ... BreastPumps \n", | |
"15095 DLGOKN ... derp \n", | |
"15096 geologygonewild ... IAMAFamousArchive \n", | |
"15097 Shaskel ... malepolish \n", | |
"15098 androidtablets ... sidewayspony \n", | |
"15099 bttf ... ANTM \n", | |
"15100 numerical ... SRSScience \n", | |
"15101 Philanthropy ... hugenaturals \n", | |
"15102 AbletonProductions ... SeattleHistory \n", | |
"15103 Valesrubberduckies ... AnalyzingReddit \n", | |
"15104 yoyohoneysingh ... olderlesbians \n", | |
"15105 PiCases ... Rights4Men \n", | |
"15106 Surface ... TwoXChromosomes \n", | |
"15107 AvaDevine ... GirlsinPinkUndies \n", | |
"15108 GNURadio ... FemmeThoughtsFeminism \n", | |
"15109 Ermahgerd ... PunkLovers \n", | |
"15110 braddoingbradthings ... henna \n", | |
"15111 Information_Security ... Cheetahs \n", | |
"15112 VicPD ... trashynovels \n", | |
"15113 internet2012 ... twilightzonedates \n", | |
"15114 amateurastronomy ... parentdeals \n", | |
"15115 cavalierkingcharles ... TrackThrows \n", | |
"15116 trueshreddit ... femalewriters \n", | |
"15117 BitcoinMagazine ... SexyNerds \n", | |
"15118 TakeOneStepForward ... amateursologirls \n", | |
"15119 technology ... MilitaryFamilies \n", | |
"15120 slandrogangstas ... veggieteens \n", | |
"15121 preggocows ... SRSTechnology \n", | |
"\n", | |
" 52 43 69 \\\n", | |
"0 JapaneseFiction gameofthrones PicsOfJithSleeping \n", | |
"1 davidfosterwallace shewantstofuck hockeylayouttest \n", | |
"2 Earlyjazz asoiaf hockey \n", | |
"3 memphismayfire aSongOfMemesAndRage EdmontonOilers \n", | |
"4 alt_lit AGOTBoardGame leafs \n", | |
"5 booklists tesothemereddit hockeyplayers \n", | |
"6 whatsthatbook TGOD rangers \n", | |
"7 breakingbad asoiafreread Habs \n", | |
"8 walterjohnson asoiafcirclejerk canucks \n", | |
"9 Adamphotoshopped kdubz1298 DetroitRedWings \n", | |
"10 artshub Dreadfort losangeleskings \n", | |
"11 laundryview CK2GameOfthrones AnaheimDucks \n", | |
"12 SexyMusicVideos CTI BlueJackets \n", | |
"13 bookhaul Tumba EA_NHL \n", | |
"14 murakami GavinQuotes penguins \n", | |
"15 circlejerkbreakingbad livechat Coyotes \n", | |
"16 vinyldjs Asoiafspoilersall OttawaSenators \n", | |
"17 DogsWithCatHeads WesterosiProblems Flyers \n", | |
"18 books HypnoHookup stlouisblues \n", | |
"19 BooksAMA maturewoman devils \n", | |
"20 bookclub Spartacus_TV BostonBruins \n", | |
"21 booksuggestions butleruniversity SanJoseSharks \n", | |
"22 alphacentauri freakyfetishstories winnipegjets \n", | |
"23 mildlyinteresting OliviaMunn hawks \n", | |
"24 bookshelf Conservativebooks ColoradoAvalanche \n", | |
"25 metacsec Banshee hockeygoalies \n", | |
"26 dogsinwigs lickingdick NewYorkIslanders \n", | |
"27 tipofmytongue CelebsInTights wildhockey \n", | |
"28 literature Pokenawa sabres \n", | |
"29 skinnytail haydenpanettiere CalgaryFlames \n", | |
"... ... ... ... \n", | |
"15092 MLPArt malepolish dpmansen \n", | |
"15093 crazysteve yusufcirclejerk PictureChallenge \n", | |
"15094 thelook 2XLite nflblogs \n", | |
"15095 ASMRmusic infertility medschool \n", | |
"15096 maisiewilliams LadiesofScience shootingcars \n", | |
"15097 gallifrey blackgirlgamers QualityPhotos \n", | |
"15098 DoesAnybodyElse ForeverAloneWomen Colts \n", | |
"15099 euphonium shittymspaints Lightroom \n", | |
"15100 bootstrap EdmontonGoneWild Cameras \n", | |
"15101 bedhg feetish photography \n", | |
"15102 notkidding femmit toycameras \n", | |
"15103 Digihentai Cheetahs Hawkeye_Football \n", | |
"15104 wmnf femalefashionadvice sext \n", | |
"15105 bronycringe Endo photocritique \n", | |
"15106 MovieWallpapers veggieteens beforeandafteredit \n", | |
"15107 hilaribad malefashionadvice Pixcafe \n", | |
"15108 DoctorWhumour frugalbeauty JordanCox2 \n", | |
"15109 AmyAdams 2XLookbook LinusDiaries \n", | |
"15110 IsabelleFuhrman BodyAcceptance analog \n", | |
"15111 GeeKnitting findfashion Bad_ass_girlfriends \n", | |
"15112 teefury rawdenim photographs \n", | |
"15113 t:latestoneage asiantwoX postprocessing \n", | |
"15114 doctorwho TwoXChromosomes filmphotos \n", | |
"15115 CREST malefashion circuloidiota \n", | |
"15116 FailedFedora TodayIWore NFLhuddle \n", | |
"15117 dwlounge blackgirls effzeh \n", | |
"15118 Humiliation UnsentMusic NFLFandom \n", | |
"15119 cissp SRSTechnology freddiemercury \n", | |
"15120 hugs goodyearwelt happierNYC \n", | |
"15121 hyperfurs freeforallfashion filmtheory \n", | |
"\n", | |
" 54 61 50 \\\n", | |
"0 macsetups outercourse osx \n", | |
"1 applehelp mindashq simpleios \n", | |
"2 apple NBA2k iOSProgramming \n", | |
"3 ios nba ios \n", | |
"4 retina heat retina \n", | |
"5 ipad StateFarm appletv \n", | |
"6 mac Basketball mac \n", | |
"7 AlienBlue lakers apple \n", | |
"8 jasmineapp BasketballTips macsetups \n", | |
"9 commonsense mildlyimpressive macapps \n", | |
"10 JamieChung benchgifs applehelp \n", | |
"11 GeekTool DavidsQuotes iPhoneDev \n", | |
"12 appletv torontoraptors ipad \n", | |
"13 AppHookup NBASpurs WebApps \n", | |
"14 simpleios LAClippers obits \n", | |
"15 iphone kanyewest iphone \n", | |
"16 jailbreak memphisgrizzlies AppHookup \n", | |
"17 osx SchooledUp jailbreak \n", | |
"18 booklists warriors iphonehelp \n", | |
"19 iOSthemes Mavericks SEGA32X \n", | |
"20 iphonehelp bostonceltics AlienBlue \n", | |
"21 SEGA32X GoNets commonsense \n", | |
"22 iosgaming nbacirclejerk macgaming \n", | |
"23 Panera chicagobulls iOSthemes \n", | |
"24 apps OrlandoMagic Panera \n", | |
"25 macgaming kings jasmineapp \n", | |
"26 askjailbreak NYKnicks zsh \n", | |
"27 iWallpaper suns CSUDH \n", | |
"28 JillStein4President slamdunk flextweak \n", | |
"29 dogsinwigs rockets iosgaming \n", | |
"... ... ... ... \n", | |
"15092 kENTuckytrees Articles AmyAdams \n", | |
"15093 HouseMD 40something write \n", | |
"15094 avatarvideos OldTimeHockey literature \n", | |
"15095 CAmmunity KansasCityChiefs Holmes \n", | |
"15096 cachatfanfic TampaBayLightning orderofthephoenix \n", | |
"15097 nwo dpmansen truepois \n", | |
"15098 FlashForward caps 80sElectro \n", | |
"15099 irvine PacificNorthwest DoctorWhumour \n", | |
"15100 juanbuiza NFLhuddle gallifrey \n", | |
"15101 GunslingerMusic steak dresdenfiles \n", | |
"15102 cell sabres lexlinguae \n", | |
"15103 huntedseries baby logophilia \n", | |
"15104 iamgoingtohellforthis Flyers dogsinwigs \n", | |
"15105 louie hurling doctorwho \n", | |
"15106 Jericho bengals booksuggestions \n", | |
"15107 HHN nflblogs artshub \n", | |
"15108 maggielawson freddiemercury Random_Acts_of_Books \n", | |
"15109 circlejerkbreakingbad ravens ROIO \n", | |
"15110 RandomActsOfBidets Bigtitssmalltits hyperfurs \n", | |
"15111 Dexter JordanCox2 selfpublish \n", | |
"15112 Pedberg detroitlions OldEnglish \n", | |
"15113 thingsoncats LinusDiaries bookshelf \n", | |
"15114 Allison_Scagliotti effzeh BooksAMA \n", | |
"15115 pipesgonewild Redskins books \n", | |
"15116 ohnoghosts NFLFandom alt_lit \n", | |
"15117 vinyldjs GreenBayPackers 52book \n", | |
"15118 breakingbadcomics happierNYC bookhaul \n", | |
"15119 breakingbad buffalobills WoTreread \n", | |
"15120 memphismayfire MontrealCanadiens booklists \n", | |
"15121 Earlyjazz steelers BookCollecting \n", | |
"\n", | |
" 49 22 25 \n", | |
"0 ShitLiamDoes gonewildstories pokemon \n", | |
"1 techsupport BDSMcommunity Nbz \n", | |
"2 bubbleswithfaces BDSMpersonals CraftMasters \n", | |
"3 talesofmybowels bdsm pokemonteams \n", | |
"4 24hoursupport polyamory TruePokemon \n", | |
"5 ouch JL2579 pokemontrades \n", | |
"6 IWantToBeAMod BDSMGW vanguardtips \n", | |
"7 Buttcoin chickflixxx AsianFeet \n", | |
"8 nexusq DissidiaCraft ebonyfeet \n", | |
"9 prestashop gonewildaudio thongsandals \n", | |
"10 purple pregnant pokemonarts \n", | |
"11 sergaljerk sex pokemonrng \n", | |
"12 labradoodles TwoXSex nuzlocke \n", | |
"13 TrackThrows DeadBedrooms ShinyPokemon \n", | |
"14 RegretfulSexStories Swingers EvolutionofKits \n", | |
"15 drawings FanPuns Pokemoncollege \n", | |
"16 computertechs CowLand stunfisk \n", | |
"17 Sandwiches massage Pokemongiveaway \n", | |
"18 bttf diamondmine pokemonchallenges \n", | |
"19 Kirbs2002 sexpertslounge pokemonconspiracies \n", | |
"20 kuro5hit MinecraftChampions Pokemonexchange \n", | |
"21 ABotOfIceAndFire boule GenerationOne \n", | |
"22 tesothemereddit minecraftium pokemonrp \n", | |
"23 demanpls TriPixel PokemonROMhacks \n", | |
"24 asoiaf mathias pkmntcg \n", | |
"25 PlayPassOrPause mccountercraft PokemonLeagueDS \n", | |
"26 gameofthrones GWAsians pkmntcgtrades \n", | |
"27 Kazakhstan lmm normalboots \n", | |
"28 SlightlyDamned WolfPAChq PokemonFusion \n", | |
"29 Dreadfort Hypermine SoloPokes \n", | |
"... ... ... ... \n", | |
"15092 gamegenome BIRDTEAMS minnesotavikings \n", | |
"15093 drwho falcons miamidolphins \n", | |
"15094 simpleios nfffffffluuuuuuuuuuuu nfl \n", | |
"15095 DoctorWhoFreedom 49ers lmm \n", | |
"15096 crazysteve Mariners sportsbook \n", | |
"15097 ios fcs Hypermine \n", | |
"15098 toolSquad Chargers NFL_Draft \n", | |
"15099 Sherlock nfl boule \n", | |
"15100 macapps NYGiants TriPixel \n", | |
"15101 apple EvilLeagueOfEvil mathias \n", | |
"15102 classicwho CollegeBasketball minecraftium \n", | |
"15103 Johnlock SaintLouisRams mccountercraft \n", | |
"15104 macsetups cowboys WolfPAChq \n", | |
"15105 doctorwhocirclejerk Tennesseetitans MinecraftChampions \n", | |
"15106 dwlounge CFB JordanCox2 \n", | |
"15107 whovianents Patriots CFB \n", | |
"15108 IsabelleFuhrman sexmix247 CowLand \n", | |
"15109 karengillan internetdefense diamondmine \n", | |
"15110 davidtennant gifrequests NYGiants \n", | |
"15111 gallifreyan NFL_Draft Patriots \n", | |
"15112 gallifrey CHIBears LinusDiaries \n", | |
"15113 mattandbenedict Texans 49ers \n", | |
"15114 Torchwood nyjets oaklandraiders \n", | |
"15115 mattsmith Redskins cowboys \n", | |
"15116 MovieWallpapers nflcirclejerk eagles \n", | |
"15117 wholock eagles Redskins \n", | |
"15118 hyperfurs panthers DissidiaCraft \n", | |
"15119 AmyAdams Reflections nyjets \n", | |
"15120 doctorwho HighlightGIFS Texans \n", | |
"15121 DoctorWhumour gifs CHIBears \n", | |
"\n", | |
"[15122 rows x 100 columns]" | |
] | |
}, | |
"execution_count": 6, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"# this function will show you the axes on which a particular subreddit scores the highest/lowest\n", | |
"def pickOutSubreddit(sr):\n", | |
" sorted_axes = embedded_coords[list(subreddits).index(sr)].argsort()[::-1]\n", | |
" return pd.DataFrame(subreddits[np.argsort(embedded_coords[:,sorted_axes], axis=0)[::-1]], columns=sorted_axes)\n", | |
"\n", | |
"pickOutSubreddit(\"soccer\")" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"slideshow": { | |
"slide_type": "slide" | |
} | |
}, | |
"source": [ | |
"# A few interesting dimensions\n", | |
"\n", | |
"* I went through each column and picked out some interesting dimensions\n" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 7, | |
"metadata": { | |
"collapsed": false | |
}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"<div>\n", | |
"<table border=\"1\" class=\"dataframe\">\n", | |
" <thead>\n", | |
" <tr style=\"text-align: right;\">\n", | |
" <th></th>\n", | |
" <th>0: big - small</th>\n", | |
" <th>1: big - small</th>\n", | |
" <th>44: soccer - guns</th>\n", | |
" <th>51: programming - food</th>\n", | |
" <th>84: music - bikes</th>\n", | |
" <th>50: osx - books</th>\n", | |
" <th>47: wow - starcraft</th>\n", | |
" <th>40: male grooming - life hacks</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>0</th>\n", | |
" <td>AskReddit</td>\n", | |
" <td>todayilearned</td>\n", | |
" <td>ParisSG</td>\n", | |
" <td>threads</td>\n", | |
" <td>Musex</td>\n", | |
" <td>osx</td>\n", | |
" <td>ShitLiamDoes</td>\n", | |
" <td>malefashionadvice</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>1</th>\n", | |
" <td>funny</td>\n", | |
" <td>worldnews</td>\n", | |
" <td>bevandele</td>\n", | |
" <td>pervasivecomputing</td>\n", | |
" <td>7String</td>\n", | |
" <td>simpleios</td>\n", | |
" <td>silverandguns</td>\n", | |
" <td>goodyearwelt</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2</th>\n", | |
" <td>pics</td>\n", | |
" <td>politics</td>\n", | |
" <td>soccerbot</td>\n", | |
" <td>Suomipelit</td>\n", | |
" <td>nationalsciencebowl</td>\n", | |
" <td>iOSProgramming</td>\n", | |
" <td>techsupport</td>\n", | |
" <td>malefashion</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>3</th>\n", | |
" <td>WTF</td>\n", | |
" <td>videos</td>\n", | |
" <td>FootballMedia</td>\n", | |
" <td>lisp_ja</td>\n", | |
" <td>TheStuntMuffins</td>\n", | |
" <td>ios</td>\n", | |
" <td>uscgames</td>\n", | |
" <td>rawdenim</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>4</th>\n", | |
" <td>gaming</td>\n", | |
" <td>technology</td>\n", | |
" <td>FTLStrikers</td>\n", | |
" <td>ProgrammerArt</td>\n", | |
" <td>BestSleepOfYourLife</td>\n", | |
" <td>retina</td>\n", | |
" <td>Goblinism</td>\n", | |
" <td>frugalmalefashion</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>5</th>\n", | |
" <td>AdviceAnimals</td>\n", | |
" <td>promos</td>\n", | |
" <td>PrettyOlderWomen</td>\n", | |
" <td>app</td>\n", | |
" <td>Guitar</td>\n", | |
" <td>appletv</td>\n", | |
" <td>Transmogrification</td>\n", | |
" <td>yusufcirclejerk</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>6</th>\n", | |
" <td>IAmA</td>\n", | |
" <td>blog</td>\n", | |
" <td>soccer</td>\n", | |
" <td>jenkinsci</td>\n", | |
" <td>mtgfinance</td>\n", | |
" <td>mac</td>\n", | |
" <td>wow</td>\n", | |
" <td>AustralianMFA</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>7</th>\n", | |
" <td>videos</td>\n", | |
" <td>science</td>\n", | |
" <td>Gunners</td>\n", | |
" <td>scheme</td>\n", | |
" <td>ISU_GDC</td>\n", | |
" <td>apple</td>\n", | |
" <td>WowUI</td>\n", | |
" <td>mfacirclejerk</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>8</th>\n", | |
" <td>todayilearned</td>\n", | |
" <td>SOPA</td>\n", | |
" <td>reddevils</td>\n", | |
" <td>softwaredevelopment</td>\n", | |
" <td>Cichlid</td>\n", | |
" <td>macsetups</td>\n", | |
" <td>WoWGoldMaking</td>\n", | |
" <td>shittymspaints</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>9</th>\n", | |
" <td>atheism</td>\n", | |
" <td>til</td>\n", | |
" <td>FantasyPL</td>\n", | |
" <td>ocaml</td>\n", | |
" <td>EDH</td>\n", | |
" <td>macapps</td>\n", | |
" <td>wowscrolls</td>\n", | |
" <td>europeanmalefashion</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>10</th>\n", | |
" <td>Omaha</td>\n", | |
" <td>atheism</td>\n", | |
" <td>coys</td>\n", | |
" <td>gnu</td>\n", | |
" <td>magicTCG</td>\n", | |
" <td>applehelp</td>\n", | |
" <td>wowstrat</td>\n", | |
" <td>malehairadvice</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>11</th>\n", | |
" <td>aww</td>\n", | |
" <td>IAmA</td>\n", | |
" <td>Barca</td>\n", | |
" <td>ComputerTips</td>\n", | |
" <td>spikes</td>\n", | |
" <td>iPhoneDev</td>\n", | |
" <td>woweconomy</td>\n", | |
" <td>TeenMFA</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>12</th>\n", | |
" <td>houston</td>\n", | |
" <td>ColbertRally</td>\n", | |
" <td>chelseafc</td>\n", | |
" <td>hocnet</td>\n", | |
" <td>guitarlessons</td>\n", | |
" <td>ipad</td>\n", | |
" <td>WoWStreams</td>\n", | |
" <td>itafterdark</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>13</th>\n", | |
" <td>UIUC</td>\n", | |
" <td>NorthKoreaNews</td>\n", | |
" <td>LiverpoolFC</td>\n", | |
" <td>illjustleavethishere</td>\n", | |
" <td>Magicdeckbuilding</td>\n", | |
" <td>WebApps</td>\n", | |
" <td>wowraf</td>\n", | |
" <td>ldshistory</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>14</th>\n", | |
" <td>Columbus</td>\n", | |
" <td>USNEWS</td>\n", | |
" <td>MCFC</td>\n", | |
" <td>CatsWithPeopleFeet</td>\n", | |
" <td>MakeMeADeck</td>\n", | |
" <td>obits</td>\n", | |
" <td>wowguilds</td>\n", | |
" <td>malefoodadvice</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15</th>\n", | |
" <td>Purdue</td>\n", | |
" <td>CMDY</td>\n", | |
" <td>footballmanagergames</td>\n", | |
" <td>coding</td>\n", | |
" <td>mtgaltered</td>\n", | |
" <td>iphone</td>\n", | |
" <td>wowpodcasts</td>\n", | |
" <td>preppy</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>16</th>\n", | |
" <td>fsu</td>\n", | |
" <td>WikiLeaks</td>\n", | |
" <td>realmadrid</td>\n", | |
" <td>ProgrammerHumor</td>\n", | |
" <td>mtgcube</td>\n", | |
" <td>AppHookup</td>\n", | |
" <td>24hoursupport</td>\n", | |
" <td>uniqlo</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>17</th>\n", | |
" <td>kansascity</td>\n", | |
" <td>OperationGrabAss</td>\n", | |
" <td>bootroom</td>\n", | |
" <td>Big_Ood</td>\n", | |
" <td>guitarpedals</td>\n", | |
" <td>jailbreak</td>\n", | |
" <td>bubbleswithfaces</td>\n", | |
" <td>adventureporn</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>18</th>\n", | |
" <td>orlando</td>\n", | |
" <td>Futurology</td>\n", | |
" <td>Fifa13</td>\n", | |
" <td>securityCTF</td>\n", | |
" <td>metalmusicians</td>\n", | |
" <td>iphonehelp</td>\n", | |
" <td>worldofwarcraft</td>\n", | |
" <td>breitling</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>19</th>\n", | |
" <td>Tucson</td>\n", | |
" <td>sandy</td>\n", | |
" <td>FIFA</td>\n", | |
" <td>emacs</td>\n", | |
" <td>broass</td>\n", | |
" <td>SEGA32X</td>\n", | |
" <td>WoWNostalgia</td>\n", | |
" <td>malelivingspace</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>20</th>\n", | |
" <td>politics</td>\n", | |
" <td>Documentaries</td>\n", | |
" <td>fcbayern</td>\n", | |
" <td>smart</td>\n", | |
" <td>guitarporn</td>\n", | |
" <td>AlienBlue</td>\n", | |
" <td>FTH</td>\n", | |
" <td>gayforsaulyd</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>21</th>\n", | |
" <td>Austin</td>\n", | |
" <td>AnythingGoesUltimate</td>\n", | |
" <td>SoccerBetting</td>\n", | |
" <td>csbooks</td>\n", | |
" <td>CasualMTG</td>\n", | |
" <td>commonsense</td>\n", | |
" <td>redditguild</td>\n", | |
" <td>Watches</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>22</th>\n", | |
" <td>SaltLakeCity</td>\n", | |
" <td>reddit.com</td>\n", | |
" <td>EA_FIFA</td>\n", | |
" <td>Clojure</td>\n", | |
" <td>custommagic</td>\n", | |
" <td>macgaming</td>\n", | |
" <td>Rift</td>\n", | |
" <td>mensfashionadvice</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>23</th>\n", | |
" <td>Louisville</td>\n", | |
" <td>softscience</td>\n", | |
" <td>FIFA12</td>\n", | |
" <td>cloudcomputing</td>\n", | |
" <td>MTGLegacy</td>\n", | |
" <td>iOSthemes</td>\n", | |
" <td>MMORPG</td>\n", | |
" <td>soccergaming</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>24</th>\n", | |
" <td>Dallas</td>\n", | |
" <td>occupywallstreet</td>\n", | |
" <td>borussiadortmund</td>\n", | |
" <td>DanceTutorials</td>\n", | |
" <td>guitars</td>\n", | |
" <td>Panera</td>\n", | |
" <td>ALS</td>\n", | |
" <td>swagteamsix</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>25</th>\n", | |
" <td>Charlotte</td>\n", | |
" <td>silentcinema</td>\n", | |
" <td>football</td>\n", | |
" <td>haskell</td>\n", | |
" <td>MagicCardPulls</td>\n", | |
" <td>jasmineapp</td>\n", | |
" <td>MovieWallpapers</td>\n", | |
" <td>supremeclothing</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>26</th>\n", | |
" <td>Atlanta</td>\n", | |
" <td>athiesm</td>\n", | |
" <td>Aleague</td>\n", | |
" <td>golang</td>\n", | |
" <td>PlayingGuitar</td>\n", | |
" <td>zsh</td>\n", | |
" <td>diablo3</td>\n", | |
" <td>paulrudd</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>27</th>\n", | |
" <td>Boise</td>\n", | |
" <td>Israel</td>\n", | |
" <td>NUFC</td>\n", | |
" <td>d_language</td>\n", | |
" <td>BadMtgCombos</td>\n", | |
" <td>CSUDH</td>\n", | |
" <td>wowtcg</td>\n", | |
" <td>FantasyPL</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>28</th>\n", | |
" <td>VirginiaTech</td>\n", | |
" <td>northkorea</td>\n", | |
" <td>ACMilan</td>\n", | |
" <td>CodingContests</td>\n", | |
" <td>NOTSONEWREDDITS</td>\n", | |
" <td>flextweak</td>\n", | |
" <td>turnoverpie</td>\n", | |
" <td>malegrooming</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>29</th>\n", | |
" <td>Hawaii</td>\n", | |
" <td>ArtisanVideos</td>\n", | |
" <td>footballtactics</td>\n", | |
" <td>icarly</td>\n", | |
" <td>guitarcirclejerk</td>\n", | |
" <td>iosgaming</td>\n", | |
" <td>TheSecretWorld</td>\n", | |
" <td>NUFC</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>...</th>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" <td>...</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15092</th>\n", | |
" <td>Bad_ass_girlfriends</td>\n", | |
" <td>softcorenights</td>\n", | |
" <td>Shotguns</td>\n", | |
" <td>HiphopWorldwide</td>\n", | |
" <td>ChristianApologetics</td>\n", | |
" <td>AmyAdams</td>\n", | |
" <td>xenominer360</td>\n", | |
" <td>Neopsychedelia</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15093</th>\n", | |
" <td>services</td>\n", | |
" <td>dogdad</td>\n", | |
" <td>progun</td>\n", | |
" <td>tonightsdinner</td>\n", | |
" <td>freedownloads</td>\n", | |
" <td>write</td>\n", | |
" <td>starcraft2_class</td>\n", | |
" <td>Iron</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15094</th>\n", | |
" <td>Pornoeverywherexxx</td>\n", | |
" <td>LambofGod</td>\n", | |
" <td>canadaguns</td>\n", | |
" <td>Halloween_Town</td>\n", | |
" <td>truestchristian</td>\n", | |
" <td>literature</td>\n", | |
" <td>Hobbies</td>\n", | |
" <td>homegym</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15095</th>\n", | |
" <td>Hardcore_PornGifs</td>\n", | |
" <td>DJHS</td>\n", | |
" <td>knives</td>\n", | |
" <td>BBQ</td>\n", | |
" <td>ClothingDeals</td>\n", | |
" <td>Holmes</td>\n", | |
" <td>starcraft_strategy</td>\n", | |
" <td>Fitness</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15096</th>\n", | |
" <td>bipoliticalandcurious</td>\n", | |
" <td>allHailKingNoel</td>\n", | |
" <td>gunpolitics</td>\n", | |
" <td>icecreamery</td>\n", | |
" <td>IndieCovers</td>\n", | |
" <td>orderofthephoenix</td>\n", | |
" <td>DNE</td>\n", | |
" <td>Sliphorn</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15097</th>\n", | |
" <td>2012askanything</td>\n", | |
" <td>HelloProperAlice</td>\n", | |
" <td>shittygunpictures</td>\n", | |
" <td>asianeats</td>\n", | |
" <td>emaildeliverability</td>\n", | |
" <td>truepois</td>\n", | |
" <td>skypepartycirclejerk</td>\n", | |
" <td>askedreddit</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15098</th>\n", | |
" <td>baozoumanhua</td>\n", | |
" <td>VictorianSluts</td>\n", | |
" <td>300BLK</td>\n", | |
" <td>eatsandwiches</td>\n", | |
" <td>RadicalChristianity</td>\n", | |
" <td>80sElectro</td>\n", | |
" <td>Destiny</td>\n", | |
" <td>kettlebell</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15099</th>\n", | |
" <td>aitaiwan</td>\n", | |
" <td>VintageMilf</td>\n", | |
" <td>Glocks</td>\n", | |
" <td>DavisSquare</td>\n", | |
" <td>DaltonMcNamee</td>\n", | |
" <td>DoctorWhumour</td>\n", | |
" <td>wtfgames</td>\n", | |
" <td>Hutchinson</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15100</th>\n", | |
" <td>spacedikdiks</td>\n", | |
" <td>shitclintonsays</td>\n", | |
" <td>opencarry</td>\n", | |
" <td>KitchenConfidential</td>\n", | |
" <td>Catacombs</td>\n", | |
" <td>gallifrey</td>\n", | |
" <td>asd</td>\n", | |
" <td>fargo</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15101</th>\n", | |
" <td>Entrenched</td>\n", | |
" <td>ProjectScarlett</td>\n", | |
" <td>CZFirearms</td>\n", | |
" <td>VictoriaSecret</td>\n", | |
" <td>Sidehugs</td>\n", | |
" <td>dresdenfiles</td>\n", | |
" <td>wowbro</td>\n", | |
" <td>AlternativeHealth</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15102</th>\n", | |
" <td>TotalFark</td>\n", | |
" <td>Fuckscapes</td>\n", | |
" <td>Mini14</td>\n", | |
" <td>castiron</td>\n", | |
" <td>biblestudy</td>\n", | |
" <td>lexlinguae</td>\n", | |
" <td>castit</td>\n", | |
" <td>ecig_vendors</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15103</th>\n", | |
" <td>nonseq</td>\n", | |
" <td>BookNymphs</td>\n", | |
" <td>gundeals</td>\n", | |
" <td>Cooking</td>\n", | |
" <td>Reformed</td>\n", | |
" <td>logophilia</td>\n", | |
" <td>StarcraftCirclejerk</td>\n", | |
" <td>todayiwatched</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15104</th>\n", | |
" <td>FitnessGirls</td>\n", | |
" <td>bboylprad</td>\n", | |
" <td>tc_archery</td>\n", | |
" <td>recipes</td>\n", | |
" <td>JustChristians</td>\n", | |
" <td>dogsinwigs</td>\n", | |
" <td>quicklooks</td>\n", | |
" <td>kingcounty</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15105</th>\n", | |
" <td>ShemaleSwag</td>\n", | |
" <td>bestplacetolearn</td>\n", | |
" <td>CCW</td>\n", | |
" <td>GMO</td>\n", | |
" <td>TrueChristian</td>\n", | |
" <td>doctorwho</td>\n", | |
" <td>HotSBetaKeys</td>\n", | |
" <td>fitmeals</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15106</th>\n", | |
" <td>wild_naked_girls</td>\n", | |
" <td>facts</td>\n", | |
" <td>saiga</td>\n", | |
" <td>Daleks</td>\n", | |
" <td>Christianity</td>\n", | |
" <td>booksuggestions</td>\n", | |
" <td>itmejp</td>\n", | |
" <td>xxfitness</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15107</th>\n", | |
" <td>NSFW_sexynudeteens</td>\n", | |
" <td>PicturesOfIreland</td>\n", | |
" <td>gats</td>\n", | |
" <td>judytrinh</td>\n", | |
" <td>Jesus</td>\n", | |
" <td>artshub</td>\n", | |
" <td>StarcraftDeutschland</td>\n", | |
" <td>StudentNurse</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15108</th>\n", | |
" <td>NSFW_HotSlut_gonewild</td>\n", | |
" <td>HappyBaracky</td>\n", | |
" <td>ak47</td>\n", | |
" <td>Chefit</td>\n", | |
" <td>stickers</td>\n", | |
" <td>Random_Acts_of_Books</td>\n", | |
" <td>slothswitharms</td>\n", | |
" <td>ShittyTheoryOfReddit</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15109</th>\n", | |
" <td>NSFW_nude_asian_teens</td>\n", | |
" <td>CarShowHunnies</td>\n", | |
" <td>prepping</td>\n", | |
" <td>sushi</td>\n", | |
" <td>wild_naked_girls</td>\n", | |
" <td>ROIO</td>\n", | |
" <td>starcraft</td>\n", | |
" <td>shittyshitredditsays</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15110</th>\n", | |
" <td>sexy_nonnude_teens</td>\n", | |
" <td>violentpornography</td>\n", | |
" <td>guns</td>\n", | |
" <td>Breadit</td>\n", | |
" <td>ChristianCreationists</td>\n", | |
" <td>hyperfurs</td>\n", | |
" <td>allthingszerg</td>\n", | |
" <td>volunteeringsolutions</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15111</th>\n", | |
" <td>front</td>\n", | |
" <td>necroporn</td>\n", | |
" <td>Hunting</td>\n", | |
" <td>52weeksofbaking</td>\n", | |
" <td>NSFW_sexynudeteens</td>\n", | |
" <td>selfpublish</td>\n", | |
" <td>allthingsprotoss</td>\n", | |
" <td>RAMD</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15112</th>\n", | |
" <td>frontiama</td>\n", | |
" <td>superheroinesdefeated</td>\n", | |
" <td>CompetitionShooting</td>\n", | |
" <td>Charcuterie</td>\n", | |
" <td>biogas</td>\n", | |
" <td>OldEnglish</td>\n", | |
" <td>BarCraft</td>\n", | |
" <td>naturalbodybuilding</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15113</th>\n", | |
" <td>frontscience</td>\n", | |
" <td>deandrefall</td>\n", | |
" <td>Gunsforsale</td>\n", | |
" <td>sousvide</td>\n", | |
" <td>sexy_nonnude_teens</td>\n", | |
" <td>bookshelf</td>\n", | |
" <td>starcraftnakama</td>\n", | |
" <td>DeathProTips</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15114</th>\n", | |
" <td>alfrankenstein</td>\n", | |
" <td>HIV</td>\n", | |
" <td>ar15</td>\n", | |
" <td>52weeksofcooking</td>\n", | |
" <td>NSFW_HotSlut_gonewild</td>\n", | |
" <td>BooksAMA</td>\n", | |
" <td>Naytopia</td>\n", | |
" <td>microgreens</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15115</th>\n", | |
" <td>johndollarfullofcrap</td>\n", | |
" <td>kasperrosa</td>\n", | |
" <td>reloading</td>\n", | |
" <td>food</td>\n", | |
" <td>NSFW_nude_asian_teens</td>\n", | |
" <td>books</td>\n", | |
" <td>starcraft2clans</td>\n", | |
" <td>EatCheapAndHealthy</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15116</th>\n", | |
" <td>OmegleVideos</td>\n", | |
" <td>novafactory</td>\n", | |
" <td>Firearms</td>\n", | |
" <td>FoodPorn</td>\n", | |
" <td>ChristianBooks</td>\n", | |
" <td>alt_lit</td>\n", | |
" <td>AllThingsTerran</td>\n", | |
" <td>PronePaddling</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15117</th>\n", | |
" <td>CandidBikiniGirls</td>\n", | |
" <td>UniteTheRight</td>\n", | |
" <td>longrange</td>\n", | |
" <td>FoodVideos</td>\n", | |
" <td>beerpong</td>\n", | |
" <td>52book</td>\n", | |
" <td>Tumba</td>\n", | |
" <td>DepressedRage</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15118</th>\n", | |
" <td>engineersissues</td>\n", | |
" <td>PsiUEI</td>\n", | |
" <td>BrassSwap</td>\n", | |
" <td>CajunMusic</td>\n", | |
" <td>anarchist_aid</td>\n", | |
" <td>bookhaul</td>\n", | |
" <td>Limu</td>\n", | |
" <td>2Chainz</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15119</th>\n", | |
" <td>albanianarchandpics</td>\n", | |
" <td>Factories</td>\n", | |
" <td>GunPorn</td>\n", | |
" <td>sharksinclothes</td>\n", | |
" <td>mormonapologetics</td>\n", | |
" <td>WoTreread</td>\n", | |
" <td>DoesAnybodyElse</td>\n", | |
" <td>Nicaragua</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15120</th>\n", | |
" <td>AutomobileTechnology</td>\n", | |
" <td>marathi</td>\n", | |
" <td>USMilitia</td>\n", | |
" <td>appetizers</td>\n", | |
" <td>christianblogs</td>\n", | |
" <td>booklists</td>\n", | |
" <td>allthingsterranbot</td>\n", | |
" <td>IndianClubs</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15121</th>\n", | |
" <td>GreenCarLovers</td>\n", | |
" <td>AskReddit</td>\n", | |
" <td>1911</td>\n", | |
" <td>creepywiki</td>\n", | |
" <td>BibleBelievers</td>\n", | |
" <td>BookCollecting</td>\n", | |
" <td>UKStarcraft</td>\n", | |
" <td>LifeProTips</td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"<p>15122 rows × 8 columns</p>\n", | |
"</div>" | |
], | |
"text/plain": [ | |
" 0: big - small 1: big - small 44: soccer - guns \\\n", | |
"0 AskReddit todayilearned ParisSG \n", | |
"1 funny worldnews bevandele \n", | |
"2 pics politics soccerbot \n", | |
"3 WTF videos FootballMedia \n", | |
"4 gaming technology FTLStrikers \n", | |
"5 AdviceAnimals promos PrettyOlderWomen \n", | |
"6 IAmA blog soccer \n", | |
"7 videos science Gunners \n", | |
"8 todayilearned SOPA reddevils \n", | |
"9 atheism til FantasyPL \n", | |
"10 Omaha atheism coys \n", | |
"11 aww IAmA Barca \n", | |
"12 houston ColbertRally chelseafc \n", | |
"13 UIUC NorthKoreaNews LiverpoolFC \n", | |
"14 Columbus USNEWS MCFC \n", | |
"15 Purdue CMDY footballmanagergames \n", | |
"16 fsu WikiLeaks realmadrid \n", | |
"17 kansascity OperationGrabAss bootroom \n", | |
"18 orlando Futurology Fifa13 \n", | |
"19 Tucson sandy FIFA \n", | |
"20 politics Documentaries fcbayern \n", | |
"21 Austin AnythingGoesUltimate SoccerBetting \n", | |
"22 SaltLakeCity reddit.com EA_FIFA \n", | |
"23 Louisville softscience FIFA12 \n", | |
"24 Dallas occupywallstreet borussiadortmund \n", | |
"25 Charlotte silentcinema football \n", | |
"26 Atlanta athiesm Aleague \n", | |
"27 Boise Israel NUFC \n", | |
"28 VirginiaTech northkorea ACMilan \n", | |
"29 Hawaii ArtisanVideos footballtactics \n", | |
"... ... ... ... \n", | |
"15092 Bad_ass_girlfriends softcorenights Shotguns \n", | |
"15093 services dogdad progun \n", | |
"15094 Pornoeverywherexxx LambofGod canadaguns \n", | |
"15095 Hardcore_PornGifs DJHS knives \n", | |
"15096 bipoliticalandcurious allHailKingNoel gunpolitics \n", | |
"15097 2012askanything HelloProperAlice shittygunpictures \n", | |
"15098 baozoumanhua VictorianSluts 300BLK \n", | |
"15099 aitaiwan VintageMilf Glocks \n", | |
"15100 spacedikdiks shitclintonsays opencarry \n", | |
"15101 Entrenched ProjectScarlett CZFirearms \n", | |
"15102 TotalFark Fuckscapes Mini14 \n", | |
"15103 nonseq BookNymphs gundeals \n", | |
"15104 FitnessGirls bboylprad tc_archery \n", | |
"15105 ShemaleSwag bestplacetolearn CCW \n", | |
"15106 wild_naked_girls facts saiga \n", | |
"15107 NSFW_sexynudeteens PicturesOfIreland gats \n", | |
"15108 NSFW_HotSlut_gonewild HappyBaracky ak47 \n", | |
"15109 NSFW_nude_asian_teens CarShowHunnies prepping \n", | |
"15110 sexy_nonnude_teens violentpornography guns \n", | |
"15111 front necroporn Hunting \n", | |
"15112 frontiama superheroinesdefeated CompetitionShooting \n", | |
"15113 frontscience deandrefall Gunsforsale \n", | |
"15114 alfrankenstein HIV ar15 \n", | |
"15115 johndollarfullofcrap kasperrosa reloading \n", | |
"15116 OmegleVideos novafactory Firearms \n", | |
"15117 CandidBikiniGirls UniteTheRight longrange \n", | |
"15118 engineersissues PsiUEI BrassSwap \n", | |
"15119 albanianarchandpics Factories GunPorn \n", | |
"15120 AutomobileTechnology marathi USMilitia \n", | |
"15121 GreenCarLovers AskReddit 1911 \n", | |
"\n", | |
" 51: programming - food 84: music - bikes 50: osx - books \\\n", | |
"0 threads Musex osx \n", | |
"1 pervasivecomputing 7String simpleios \n", | |
"2 Suomipelit nationalsciencebowl iOSProgramming \n", | |
"3 lisp_ja TheStuntMuffins ios \n", | |
"4 ProgrammerArt BestSleepOfYourLife retina \n", | |
"5 app Guitar appletv \n", | |
"6 jenkinsci mtgfinance mac \n", | |
"7 scheme ISU_GDC apple \n", | |
"8 softwaredevelopment Cichlid macsetups \n", | |
"9 ocaml EDH macapps \n", | |
"10 gnu magicTCG applehelp \n", | |
"11 ComputerTips spikes iPhoneDev \n", | |
"12 hocnet guitarlessons ipad \n", | |
"13 illjustleavethishere Magicdeckbuilding WebApps \n", | |
"14 CatsWithPeopleFeet MakeMeADeck obits \n", | |
"15 coding mtgaltered iphone \n", | |
"16 ProgrammerHumor mtgcube AppHookup \n", | |
"17 Big_Ood guitarpedals jailbreak \n", | |
"18 securityCTF metalmusicians iphonehelp \n", | |
"19 emacs broass SEGA32X \n", | |
"20 smart guitarporn AlienBlue \n", | |
"21 csbooks CasualMTG commonsense \n", | |
"22 Clojure custommagic macgaming \n", | |
"23 cloudcomputing MTGLegacy iOSthemes \n", | |
"24 DanceTutorials guitars Panera \n", | |
"25 haskell MagicCardPulls jasmineapp \n", | |
"26 golang PlayingGuitar zsh \n", | |
"27 d_language BadMtgCombos CSUDH \n", | |
"28 CodingContests NOTSONEWREDDITS flextweak \n", | |
"29 icarly guitarcirclejerk iosgaming \n", | |
"... ... ... ... \n", | |
"15092 HiphopWorldwide ChristianApologetics AmyAdams \n", | |
"15093 tonightsdinner freedownloads write \n", | |
"15094 Halloween_Town truestchristian literature \n", | |
"15095 BBQ ClothingDeals Holmes \n", | |
"15096 icecreamery IndieCovers orderofthephoenix \n", | |
"15097 asianeats emaildeliverability truepois \n", | |
"15098 eatsandwiches RadicalChristianity 80sElectro \n", | |
"15099 DavisSquare DaltonMcNamee DoctorWhumour \n", | |
"15100 KitchenConfidential Catacombs gallifrey \n", | |
"15101 VictoriaSecret Sidehugs dresdenfiles \n", | |
"15102 castiron biblestudy lexlinguae \n", | |
"15103 Cooking Reformed logophilia \n", | |
"15104 recipes JustChristians dogsinwigs \n", | |
"15105 GMO TrueChristian doctorwho \n", | |
"15106 Daleks Christianity booksuggestions \n", | |
"15107 judytrinh Jesus artshub \n", | |
"15108 Chefit stickers Random_Acts_of_Books \n", | |
"15109 sushi wild_naked_girls ROIO \n", | |
"15110 Breadit ChristianCreationists hyperfurs \n", | |
"15111 52weeksofbaking NSFW_sexynudeteens selfpublish \n", | |
"15112 Charcuterie biogas OldEnglish \n", | |
"15113 sousvide sexy_nonnude_teens bookshelf \n", | |
"15114 52weeksofcooking NSFW_HotSlut_gonewild BooksAMA \n", | |
"15115 food NSFW_nude_asian_teens books \n", | |
"15116 FoodPorn ChristianBooks alt_lit \n", | |
"15117 FoodVideos beerpong 52book \n", | |
"15118 CajunMusic anarchist_aid bookhaul \n", | |
"15119 sharksinclothes mormonapologetics WoTreread \n", | |
"15120 appetizers christianblogs booklists \n", | |
"15121 creepywiki BibleBelievers BookCollecting \n", | |
"\n", | |
" 47: wow - starcraft 40: male grooming - life hacks \n", | |
"0 ShitLiamDoes malefashionadvice \n", | |
"1 silverandguns goodyearwelt \n", | |
"2 techsupport malefashion \n", | |
"3 uscgames rawdenim \n", | |
"4 Goblinism frugalmalefashion \n", | |
"5 Transmogrification yusufcirclejerk \n", | |
"6 wow AustralianMFA \n", | |
"7 WowUI mfacirclejerk \n", | |
"8 WoWGoldMaking shittymspaints \n", | |
"9 wowscrolls europeanmalefashion \n", | |
"10 wowstrat malehairadvice \n", | |
"11 woweconomy TeenMFA \n", | |
"12 WoWStreams itafterdark \n", | |
"13 wowraf ldshistory \n", | |
"14 wowguilds malefoodadvice \n", | |
"15 wowpodcasts preppy \n", | |
"16 24hoursupport uniqlo \n", | |
"17 bubbleswithfaces adventureporn \n", | |
"18 worldofwarcraft breitling \n", | |
"19 WoWNostalgia malelivingspace \n", | |
"20 FTH gayforsaulyd \n", | |
"21 redditguild Watches \n", | |
"22 Rift mensfashionadvice \n", | |
"23 MMORPG soccergaming \n", | |
"24 ALS swagteamsix \n", | |
"25 MovieWallpapers supremeclothing \n", | |
"26 diablo3 paulrudd \n", | |
"27 wowtcg FantasyPL \n", | |
"28 turnoverpie malegrooming \n", | |
"29 TheSecretWorld NUFC \n", | |
"... ... ... \n", | |
"15092 xenominer360 Neopsychedelia \n", | |
"15093 starcraft2_class Iron \n", | |
"15094 Hobbies homegym \n", | |
"15095 starcraft_strategy Fitness \n", | |
"15096 DNE Sliphorn \n", | |
"15097 skypepartycirclejerk askedreddit \n", | |
"15098 Destiny kettlebell \n", | |
"15099 wtfgames Hutchinson \n", | |
"15100 asd fargo \n", | |
"15101 wowbro AlternativeHealth \n", | |
"15102 castit ecig_vendors \n", | |
"15103 StarcraftCirclejerk todayiwatched \n", | |
"15104 quicklooks kingcounty \n", | |
"15105 HotSBetaKeys fitmeals \n", | |
"15106 itmejp xxfitness \n", | |
"15107 StarcraftDeutschland StudentNurse \n", | |
"15108 slothswitharms ShittyTheoryOfReddit \n", | |
"15109 starcraft shittyshitredditsays \n", | |
"15110 allthingszerg volunteeringsolutions \n", | |
"15111 allthingsprotoss RAMD \n", | |
"15112 BarCraft naturalbodybuilding \n", | |
"15113 starcraftnakama DeathProTips \n", | |
"15114 Naytopia microgreens \n", | |
"15115 starcraft2clans EatCheapAndHealthy \n", | |
"15116 AllThingsTerran PronePaddling \n", | |
"15117 Tumba DepressedRage \n", | |
"15118 Limu 2Chainz \n", | |
"15119 DoesAnybodyElse Nicaragua \n", | |
"15120 allthingsterranbot IndianClubs \n", | |
"15121 UKStarcraft LifeProTips \n", | |
"\n", | |
"[15122 rows x 8 columns]" | |
] | |
}, | |
"execution_count": 7, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"pd.DataFrame(subreddits[np.argsort(embedded_coords[:,[0, 1, 44,51,84,50,47,40]], axis=0)[::-1]], \n", | |
" columns=[\n", | |
" \"0: big - small\", \n", | |
" \"1: big - small\",\n", | |
" \"44: soccer - guns\",\n", | |
" \"51: programming - food\",\n", | |
" \"84: music - bikes\", \n", | |
" \"50: osx - books\",\n", | |
" \"47: wow - starcraft\", \n", | |
" \"40: male grooming - life hacks\"\n", | |
"])\n", | |
"\n", | |
"# not shown but also amusing:\n", | |
"# 14: music - pot\n", | |
"# 24: science - porn" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"slideshow": { | |
"slide_type": "slide" | |
} | |
}, | |
"source": [ | |
"# Visualizing these dimensions\n", | |
"\n", | |
"* [Bokeh](http://bokeh.pydata.org/) makes it easy to get hover-tooltips!\n", | |
"* Each dot in our plot will be a subreddit (mouse over to see which one) scaled by size\n", | |
"* We'll only look at the top 3,500 or so subreddits, for speed" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 8, | |
"metadata": { | |
"collapsed": false | |
}, | |
"outputs": [ | |
{ | |
"name": "stdout", | |
"output_type": "stream", | |
"text": [ | |
"0.12.2\n" | |
] | |
} | |
], | |
"source": [ | |
"import bokeh.plotting\n", | |
"print bokeh.__version__" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 9, | |
"metadata": { | |
"collapsed": false | |
}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"\n", | |
" <div class=\"bk-root\">\n", | |
" <a href=\"http://bokeh.pydata.org\" target=\"_blank\" class=\"bk-logo bk-logo-small bk-logo-notebook\"></a>\n", | |
" <span id=\"8f8ba30e-a1ff-4409-a67a-0e23158021c6\">Loading BokehJS ...</span>\n", | |
" </div>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
}, | |
{ | |
"data": { | |
"application/javascript": [ | |
"\n", | |
"(function(global) {\n", | |
" function now() {\n", | |
" return new Date();\n", | |
" }\n", | |
"\n", | |
" var force = \"1\";\n", | |
"\n", | |
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\" || force !== \"\") {\n", | |
" window._bokeh_onload_callbacks = [];\n", | |
" window._bokeh_is_loading = undefined;\n", | |
" }\n", | |
"\n", | |
"\n", | |
" \n", | |
" if (typeof (window._bokeh_timeout) === \"undefined\" || force !== \"\") {\n", | |
" window._bokeh_timeout = Date.now() + 5000;\n", | |
" window._bokeh_failed_load = false;\n", | |
" }\n", | |
"\n", | |
" var NB_LOAD_WARNING = {'data': {'text/html':\n", | |
" \"<div style='background-color: #fdd'>\\n\"+\n", | |
" \"<p>\\n\"+\n", | |
" \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", | |
" \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", | |
" \"</p>\\n\"+\n", | |
" \"<ul>\\n\"+\n", | |
" \"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\\n\"+\n", | |
" \"<li>use INLINE resources instead, as so:</li>\\n\"+\n", | |
" \"</ul>\\n\"+\n", | |
" \"<code>\\n\"+\n", | |
" \"from bokeh.resources import INLINE\\n\"+\n", | |
" \"output_notebook(resources=INLINE)\\n\"+\n", | |
" \"</code>\\n\"+\n", | |
" \"</div>\"}};\n", | |
"\n", | |
" function display_loaded() {\n", | |
" if (window.Bokeh !== undefined) {\n", | |
" Bokeh.$(\"#8f8ba30e-a1ff-4409-a67a-0e23158021c6\").text(\"BokehJS successfully loaded.\");\n", | |
" } else if (Date.now() < window._bokeh_timeout) {\n", | |
" setTimeout(display_loaded, 100)\n", | |
" }\n", | |
" }\n", | |
"\n", | |
" function run_callbacks() {\n", | |
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n", | |
" delete window._bokeh_onload_callbacks\n", | |
" console.info(\"Bokeh: all callbacks have finished\");\n", | |
" }\n", | |
"\n", | |
" function load_libs(js_urls, callback) {\n", | |
" window._bokeh_onload_callbacks.push(callback);\n", | |
" if (window._bokeh_is_loading > 0) {\n", | |
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", | |
" return null;\n", | |
" }\n", | |
" if (js_urls == null || js_urls.length === 0) {\n", | |
" run_callbacks();\n", | |
" return null;\n", | |
" }\n", | |
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", | |
" window._bokeh_is_loading = js_urls.length;\n", | |
" for (var i = 0; i < js_urls.length; i++) {\n", | |
" var url = js_urls[i];\n", | |
" var s = document.createElement('script');\n", | |
" s.src = url;\n", | |
" s.async = false;\n", | |
" s.onreadystatechange = s.onload = function() {\n", | |
" window._bokeh_is_loading--;\n", | |
" if (window._bokeh_is_loading === 0) {\n", | |
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n", | |
" run_callbacks()\n", | |
" }\n", | |
" };\n", | |
" s.onerror = function() {\n", | |
" console.warn(\"failed to load library \" + url);\n", | |
" };\n", | |
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", | |
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n", | |
" }\n", | |
" };var element = document.getElementById(\"8f8ba30e-a1ff-4409-a67a-0e23158021c6\");\n", | |
" if (element == null) {\n", | |
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '8f8ba30e-a1ff-4409-a67a-0e23158021c6' but no matching script tag was found. \")\n", | |
" return false;\n", | |
" }\n", | |
"\n", | |
" var js_urls = ['https://cdn.pydata.org/bokeh/release/bokeh-0.12.2.min.js', 'https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.2.min.js', 'https://cdn.pydata.org/bokeh/release/bokeh-compiler-0.12.2.min.js'];\n", | |
"\n", | |
" var inline_js = [\n", | |
" function(Bokeh) {\n", | |
" Bokeh.set_log_level(\"info\");\n", | |
" },\n", | |
" \n", | |
" function(Bokeh) {\n", | |
" \n", | |
" Bokeh.$(\"#8f8ba30e-a1ff-4409-a67a-0e23158021c6\").text(\"BokehJS is loading...\");\n", | |
" },\n", | |
" function(Bokeh) {\n", | |
" console.log(\"Bokeh: injecting CSS: https://cdn.pydata.org/bokeh/release/bokeh-0.12.2.min.css\");\n", | |
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh/release/bokeh-0.12.2.min.css\");\n", | |
" console.log(\"Bokeh: injecting CSS: https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.2.min.css\");\n", | |
" Bokeh.embed.inject_css(\"https://cdn.pydata.org/bokeh/release/bokeh-widgets-0.12.2.min.css\");\n", | |
" }\n", | |
" ];\n", | |
"\n", | |
" function run_inline_js() {\n", | |
" \n", | |
" if ((window.Bokeh !== undefined) || (force === \"1\")) {\n", | |
" for (var i = 0; i < inline_js.length; i++) {\n", | |
" inline_js[i](window.Bokeh);\n", | |
" }if (force === \"1\") {\n", | |
" display_loaded();\n", | |
" }} else if (Date.now() < window._bokeh_timeout) {\n", | |
" setTimeout(run_inline_js, 100);\n", | |
" } else if (!window._bokeh_failed_load) {\n", | |
" console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", | |
" window._bokeh_failed_load = true;\n", | |
" } else if (!force) {\n", | |
" var cell = $(\"#8f8ba30e-a1ff-4409-a67a-0e23158021c6\").parents('.cell').data().cell;\n", | |
" cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", | |
" }\n", | |
"\n", | |
" }\n", | |
"\n", | |
" if (window._bokeh_is_loading === 0) {\n", | |
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", | |
" run_inline_js();\n", | |
" } else {\n", | |
" load_libs(js_urls, function() {\n", | |
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n", | |
" run_inline_js();\n", | |
" });\n", | |
" }\n", | |
"}(this));" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"import bokeh.plotting as bp\n", | |
"from bokeh.plotting import figure, output_file, show\n", | |
"from bokeh.models import HoverTool \n", | |
"bp.output_notebook()\n", | |
"row_selector = np.where(users_per_subreddit>100)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 10, | |
"metadata": { | |
"collapsed": false | |
}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"\n", | |
"\n", | |
" <div class=\"bk-root\">\n", | |
" <div class=\"plotdiv\" id=\"a1729953-b010-4985-bd05-847d9cc7ea02\"></div>\n", | |
" </div>\n", | |
"<script type=\"text/javascript\">\n", | |
" \n", | |
" (function(global) {\n", | |
" function now() {\n", | |
" return new Date();\n", | |
" }\n", | |
" \n", | |
" var force = \"\";\n", | |
" \n", | |
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\" || force !== \"\") {\n", | |
" window._bokeh_onload_callbacks = [];\n", | |
" window._bokeh_is_loading = undefined;\n", | |
" }\n", | |
" \n", | |
" \n", | |
" \n", | |
" if (typeof (window._bokeh_timeout) === \"undefined\" || force !== \"\") {\n", | |
" window._bokeh_timeout = Date.now() + 0;\n", | |
" window._bokeh_failed_load = false;\n", | |
" }\n", | |
" \n", | |
" var NB_LOAD_WARNING = {'data': {'text/html':\n", | |
" \"<div style='background-color: #fdd'>\\n\"+\n", | |
" \"<p>\\n\"+\n", | |
" \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", | |
" \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", | |
" \"</p>\\n\"+\n", | |
" \"<ul>\\n\"+\n", | |
" \"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\\n\"+\n", | |
" \"<li>use INLINE resources instead, as so:</li>\\n\"+\n", | |
" \"</ul>\\n\"+\n", | |
" \"<code>\\n\"+\n", | |
" \"from bokeh.resources import INLINE\\n\"+\n", | |
" \"output_notebook(resources=INLINE)\\n\"+\n", | |
" \"</code>\\n\"+\n", | |
" \"</div>\"}};\n", | |
" \n", | |
" function display_loaded() {\n", | |
" if (window.Bokeh !== undefined) {\n", | |
" Bokeh.$(\"#a1729953-b010-4985-bd05-847d9cc7ea02\").text(\"BokehJS successfully loaded.\");\n", | |
" } else if (Date.now() < window._bokeh_timeout) {\n", | |
" setTimeout(display_loaded, 100)\n", | |
" }\n", | |
" }\n", | |
" \n", | |
" function run_callbacks() {\n", | |
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n", | |
" delete window._bokeh_onload_callbacks\n", | |
" console.info(\"Bokeh: all callbacks have finished\");\n", | |
" }\n", | |
" \n", | |
" function load_libs(js_urls, callback) {\n", | |
" window._bokeh_onload_callbacks.push(callback);\n", | |
" if (window._bokeh_is_loading > 0) {\n", | |
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", | |
" return null;\n", | |
" }\n", | |
" if (js_urls == null || js_urls.length === 0) {\n", | |
" run_callbacks();\n", | |
" return null;\n", | |
" }\n", | |
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", | |
" window._bokeh_is_loading = js_urls.length;\n", | |
" for (var i = 0; i < js_urls.length; i++) {\n", | |
" var url = js_urls[i];\n", | |
" var s = document.createElement('script');\n", | |
" s.src = url;\n", | |
" s.async = false;\n", | |
" s.onreadystatechange = s.onload = function() {\n", | |
" window._bokeh_is_loading--;\n", | |
" if (window._bokeh_is_loading === 0) {\n", | |
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n", | |
" run_callbacks()\n", | |
" }\n", | |
" };\n", | |
" s.onerror = function() {\n", | |
" console.warn(\"failed to load library \" + url);\n", | |
" };\n", | |
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", | |
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n", | |
" }\n", | |
" };var element = document.getElementById(\"a1729953-b010-4985-bd05-847d9cc7ea02\");\n", | |
" if (element == null) {\n", | |
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'a1729953-b010-4985-bd05-847d9cc7ea02' but no matching script tag was found. \")\n", | |
" return false;\n", | |
" }\n", | |
" \n", | |
" var js_urls = [];\n", | |
" \n", | |
" var inline_js = [\n", | |
" function(Bokeh) {\n", | |
" Bokeh.$(function() {\n", | |
" var docs_json = {\"84972cc2-d6d4-4beb-beaa-5a853b8ff189\":{\"roots\":{\"references\":[{\"attributes\":{\"plot\":{\"id\":\"cca89d0a-2184-428d-952e-20748cea3a10\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"1fb0ba59-a191-4a05-8b13-66b2b484e73b\",\"type\":\"SaveTool\"},{\"attributes\":{\"data_source\":{\"id\":\"f4bed25a-d412-4001-a839-db2475ba5d08\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"1f37a5fe-d155-467a-9f09-f01fbe7cc973\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"33c52d9a-074e-4cf4-aad4-f45aec646162\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"61f89d14-82bc-4e11-9731-6ee7f18c304f\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"axis_label\":\"Dimension 0\",\"formatter\":{\"id\":\"555dde1a-56dc-4a09-a0eb-a797930fd9bd\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"cca89d0a-2184-428d-952e-20748cea3a10\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"5214e275-8bf8-4c68-af43-bb156ba93ef1\",\"type\":\"BasicTicker\"}},\"id\":\"9192de01-ed5c-4a72-b912-47945a1edfa7\",\"type\":\"LinearAxis\"},{\"attributes\":{\"overlay\":{\"id\":\"a25e351a-69ad-42e9-aa77-eb4736e9f8ad\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"cca89d0a-2184-428d-952e-20748cea3a10\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"82841330-63b5-4fbf-9328-8fa7819d3d25\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"axis_label\":\"Dimension 1\",\"formatter\":{\"id\":\"912fef56-a86e-49b8-a229-c7b7723f0072\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"cca89d0a-2184-428d-952e-20748cea3a10\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"7cc54c2a-ab70-4334-971e-a3e8185fd96d\",\"type\":\"BasicTicker\"}},\"id\":\"efd7a5c8-20c2-473b-b7f7-7602aa534368\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"555dde1a-56dc-4a09-a0eb-a797930fd9bd\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"7cc54c2a-ab70-4334-971e-a3e8185fd96d\",\"type\":\"BasicTicker\"},{\"attributes\":{\"below\":[{\"id\":\"9192de01-ed5c-4a72-b912-47945a1edfa7\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"efd7a5c8-20c2-473b-b7f7-7602aa534368\",\"type\":\"LinearAxis\"}],\"min_border\":1,\"plot_height\":700,\"plot_width\":900,\"renderers\":[{\"id\":\"9192de01-ed5c-4a72-b912-47945a1edfa7\",\"type\":\"LinearAxis\"},{\"id\":\"e85918b4-e721-4347-84fb-c0ef71d03318\",\"type\":\"Grid\"},{\"id\":\"efd7a5c8-20c2-473b-b7f7-7602aa534368\",\"type\":\"LinearAxis\"},{\"id\":\"b4a75d85-5f1b-473f-939c-e10a4c6f84e8\",\"type\":\"Grid\"},{\"id\":\"a25e351a-69ad-42e9-aa77-eb4736e9f8ad\",\"type\":\"BoxAnnotation\"},{\"id\":\"61f89d14-82bc-4e11-9731-6ee7f18c304f\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"dbbea28a-5da4-4248-ada5-d9aa8610d2b1\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"ba995498-531a-4b7a-9ba4-bad7b22aa49e\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"3864c183-f325-4061-ae67-fcce6e40dbaf\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"9c2304f7-79ab-44db-bcbf-c541504e1eb3\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"da8110b8-829e-4d4f-aca1-d94958bc0fb3\",\"type\":\"DataRange1d\"}},\"id\":\"cca89d0a-2184-428d-952e-20748cea3a10\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{},\"id\":\"912fef56-a86e-49b8-a229-c7b7723f0072\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"ba995498-531a-4b7a-9ba4-bad7b22aa49e\",\"type\":\"ToolEvents\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"radius\":{\"field\":\"radius\",\"units\":\"data\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"33c52d9a-074e-4cf4-aad4-f45aec646162\",\"type\":\"Circle\"},{\"attributes\":{\"plot\":{\"id\":\"cca89d0a-2184-428d-952e-20748cea3a10\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"7899ee2f-76aa-4553-b2dd-4ec733b32515\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"subreddit\",\"y\",\"x\",\"radius\"],\"data\":{\"radius\":[0.0027977201141253043,0.0027542916980299293,0.003078004559499757,0.0021813266680005042,0.0031660867302898154,0.002236901235343754,0.0014159758378145283,0.0030001485471154274,0.001569290294715015,0.0030994893116858815,0.0029940821952178396,0.00246256741991733,0.001958381377931942,0.001814790541483043,0.002122698416826821,0.0021648695132190604,0.0019776866322171785,0.0017810834211972031,0.002622310453279757,0.001823263202385782,0.002921984473284021,0.002944494327933271,0.002708586565790018,0.0015901827692249206,0.0018105686598236064,0.0028636822718780854,0.001831565749974122,0.0022694822325660816,0.0023597945757726797,0.00229554037544755,0.002820811746853136,0.0018341537797615076,0.002732544391639849,0.0015198235121205844,0.0027167671346476404,0.0028922069349240397,0.00172349379404195,0.0022788296231500216,0.001925684858762334,0.0025579887896443844,0.002672552434970732,0.002801705451701005,0.0015628684217314254,0.0014737250572356346,0.002388626118709245,0.0016765574101374043,0.0015745138710349421,0.0017697309170431011,0.0018050858678294729,0.0018977335706067962,0.002187218854094791,0.002281902731633402,0.0021380558101603024,0.002227606493039086,0.0013295466539166528,0.0014529460705110663,0.0020634552687804992,0.0020082513751758495,0.0019608810164539474,0.0015136915068923117,0.0018863296370678533,0.0021051582711388117,0.002077721903680461,0.002061599557713113,0.0027348404695737086,0.001894295939221045,0.001367428524041534,0.0014459928388236248,0.002127478598456015,0.0011097019137919658,0.0017760708105462968,0.0027627793740995182,0.0019907853435072475,0.0015911490766479395,0.0022398852436364743,0.00231854972532486,0.0025033519731813476,0.0017879867424271999,0.002492941035869735,0.0020919513769367816,0.0024956760037709385,0.001859136351508684,0.00233479645804675,0.0024226775076204164,0.0021425754182906745,0.0021407189102005493,0.002362227471808173,0.002010341022953415,0.0015911490766479395,0.0022367916263828,0.0022507410998582637,0.0021318604814258364,0.0017240493179859694,0.002255696879096371,0.0019372373816449852,0.002158395605837424,0.002347274254477402,0.002066145386418427,0.0024670944750810843,0.002131283090661887,0.001941692368945849,0.002508534823485794,0.0011511484326014198,0.001501871209237209,0.002145894233440295,0.0015748581075625727,0.0017948352201828358,0.002367428524041534,0.002050915298685114,0.0015635904918640975,0.0020012296222202113,0.0015101159886145923,0.0020605522440622463,0.002031431474284558,0.002362487613750113,0.0024432304584186887,0.002372531920919354,0.001797575411359757,0.002153268039767209,0.0019334736857312168,0.0015765719364395493,0.0023172508850706464,0.002441130615306299,0.002311775615341875,0.0022296480548899427,0.001875049736317722,0.0017785901777853138,0.0018725693226004211,0.0016318604814258362,0.0021771482292076245,0.0021023749546149003,0.0016506469742893634,0.0018734652220269927,0.0020851273613196487,0.0015014047703450968,0.002092631233680629,0.0012739760316291208,0.002099481427837994,0.0023053168310327365,0.0011144167545305364,0.0017435799078810259,0.0015946593459025776,0.0013266669886780136,0.0020635454259519646,0.0022100797574673226,0.0016213200757605331,0.0014557849367043062,0.001993394001479639,0.0016783534907461371,0.0013117274532639008,0.0015211174121405318,0.0019517293285340783,0.002270017541434511,0.002208629709505978,0.0022814114804554503,0.002142218259233946,0.0020221903687334336,0.0021561983141801977,0.0024185430825837116,0.002043682474228363,0.0021537950348791105,0.0022553520617991664,0.002112696246138767,0.002186490178787251,0.0022033459951640508,0.0016393417258430117,0.0024729708348661156,0.0016903511762170916,0.0019854191908003993,0.001847357335102524,0.0022271960923019936,0.0016458302246089623,0.0019344008687829642,0.0017940070362177645,0.001590505303375873,0.0019368560188791069,0.0022465668925472364,0.002356138491017121,0.002309290747386788,0.002195430628551525,0.0020475188647502487,0.002219921834229301,0.001813263874935464,0.0015189570276748648,0.0018362507335182357,0.002203144318344946,0.0021048927700132686,0.0023746422266433696,0.0017777040004671966,0.001986352975171962,0.0022259147919329904,0.0024800661070132064,0.001996451743184393,0.0018745556963381213,0.002278755973046534,0.0017894003218863817,0.0021376256388138523,0.0020406777440324696,0.001443629682961998,0.001693311889463065,0.0016536401561790817,0.001998941010002766,0.0019326206156836045,0.00162469880826491,0.002346455762342164,0.001799745300183603,0.001525380807051097,0.0018368299898173686,0.0017822478262498873,0.0016678378778156614,0.0014057713712727876,0.001478907352085896,0.0013854804925473925,0.0016645440020120897,0.0014985869743459493,0.0015051111893744904,0.00160152978969033,0.0019163917679882667,0.0013505479680686703,0.0013624876137501131,0.001657573972729652,0.0019121151398737966,0.0017509685923199324,0.0014251244642305406,0.0023374511378879896,0.0012512991066997827,0.002183662611824872,0.0020413706816114125,0.0014646504265652387,0.0024218359777445977,0.0023440676603151737,0.0014351707995512255,0.0019896236033461827,0.0019072436020378988,0.002249849740204813,0.0018490129476119842,0.0012247880257051796,0.0021581220399699355,0.001369861420077027,0.001484481765934753,0.0015128025995084719,0.0021708565937130844,0.0011491362938846573,0.001189925225399799,0.001909306818187733,0.001978008475624193,0.002195586832004494,0.0015145771402083898,0.0017877030265553665,0.0015101159886145923,0.001292481250360578,0.0021731531648820504,0.0013899750004807707,0.001585621265992073,0.0021882406705053246,0.00201073432698184,0.0022325443916398494,0.001972675059176345,0.0019143048847836506,0.0012473026295440428,0.0019013882901278984,0.0023602280188051317,0.00165684126772343,0.00205010642566562,0.0018995233010392673,0.0022959179006333402,0.0019510826696768646,0.0023745927845677355,0.002016119192414756,0.0019763949333091234,0.0015772540622118634,0.0018497816827789321,0.001845131968237177,0.0011740656865597422,0.002351298200107827,0.0017311567075540518,0.00179825560749506,0.001764003823376257,0.0017464616032459605,0.0018627994130245998,0.0015421109054083748,0.0018997015435778086,0.0015064864982153837,0.0021347938527417356,0.0014302000969874929,0.0019225458961034672,0.0017489759082068037,0.0017558792294368004,0.0018911779428609785,0.0017898227802793567,0.0020571513389652622,0.001153143872879099,0.0022477429935657124,0.0020869334066206213,0.0013801284616884338,0.001728810843352098,0.0011345591536762673,0.0020047085713604655,0.002149892820487185,0.0024578923049130104,0.0017496419728251862,0.0016196127371777328,0.002396890026555208,0.001976265380949588,0.001337061302171409,0.001394387035707636,0.0014839803076226966,0.001865484869852002,0.0015491034581486046,0.0020056851910160984,0.0012799133499175744,0.0017474704823770245,0.0016607234779654032,0.0016602416157330327,0.0018106976907757133,0.002265136821821754,0.00132375241755654,0.0015703441276954688,0.0024988378034393045,0.0018657928090703747,0.0014388325328571596,0.00248034497183469,0.0017341902438560573,0.0018777977567824837,0.0019072436020378988,0.0021603923014392123,0.002019553071001667,0.0017286294407229874,0.001890900874452966,0.0017491425974151997,0.0016009132530102781,0.0013958399052244877,0.0025820902864421586,0.001899255689243717,0.0016374931234214205,0.0023286354927342374,0.0017698838259026146,0.002265039359547516,0.0012654095062113468,0.001939739318998412,0.0012277203690409693,0.0014995299134896035,0.0014523742529443538,0.002622186878943175,0.0011551228895938144,0.001446580016584241,0.0019319982946025209,0.00173205290379646,0.0018239966523906231,0.0014448141640443746,0.0020373838682288983,0.0022536409625269886,0.0019898686471110662,0.0014591479170272448,0.0021872457997073567,0.0014814572081497098,0.002073564671557781,0.001969563904649539,0.0014244824099812728,0.0014251244642305406,0.0017624322545562684,0.001870264520210801,0.001634290645358603,0.0022446221501692936,0.0016332136035869871,0.0014506505955741104,0.0016671358359345088,0.001593707070703512,0.0015320488024117944,0.0020202016194015475,0.0014535165314511977,0.0020729586787206003,0.002095134072954083,0.0018897893970956528,0.00209342861187276,0.0016526465631392956,0.0021882138361574944,0.001914556269201197,0.0020433395701844334,0.0018967435108481622,0.001843111375056762,0.0020634552687804992,0.002098001975535848,0.0019252046005997147,0.001958799793072586,0.0021965737710215945,0.0021040183392938313,0.0021098506605789435,0.0015167770565008665,0.0016508978341696885,0.0015755451056684371,0.0016832246350671988,0.001540528997245492,0.0016838813014020035,0.002046891752496839,0.002028007544704015,0.0017496419728251862,0.0018185653313072432,0.0020032072027672677,0.0017550677228498446,0.002168246457648011,0.0020998304951726815,0.0016738378805990913,0.0011570857508898733,0.001494777798865868,0.00165339214256918,0.0015930701188781105,0.0016216034572588398,0.0014874687506009634,0.0020175968635462393,0.001818190507889983,0.001544854446524903,0.0016916245199174468,0.0015668132393803639,0.0020558983924489874,0.0020173239049819263,0.0016614444655325346,0.0018261836735937145,0.0014139692962107093,0.0014758113972100392,0.0021535161813511323,0.001672466493762878,0.0017165346697312132,0.0017377107924503496,0.001967556804736064,0.0014602585387407465,0.0016009132530102781,0.0013470248402256452,0.0018594525240374503,0.00206146321000689,0.0021452533770548524,0.002046988337825907,0.0011864901787872512,0.0017909457206670225,0.001822158815365786,0.001957962233421132,0.0019896848877032063,0.0015483364744887697,0.0016403917239023013,0.00170035397063841,0.001244600925013833,0.0021264052401500444,0.001502336745052489,0.0015163386804934213,0.0016027581406298317,0.0014981141144620276,0.0019750962578676022,0.0018985405982379071,0.0013333333333333333,0.0019867254759025135,0.0022001242299169318,0.0023380706854914247,0.0018804182177068062,0.0014400408227037242,0.002255291160323857,0.001617028780894258,0.0023014772748645588,0.0018603985547928177,0.0018777001520831602,0.0022539882406086113,0.0022288335090610728,0.0013862354356274783,0.001784559855346814,0.002002336745052489,0.0021880796194788873,0.0020956473051094112,0.0018971040044291527,0.001285707586277687,0.0016738378805990913,0.0021515863523827693,0.0015299848483358225,0.0013649707598133362,0.001960742827269982,0.0021439342573869083,0.0023354228747143745,0.001697685706590274,0.0012015755609381584,0.001991455373303269,0.0016503958524143375,0.001591791130897207,0.0013407323532264091,0.0022836052261147113,0.0020612812927116742,0.0014758113972100392,0.0012277203690409693,0.001886800091480273,0.0015004691692678423,0.0015595920007696806,0.0015772540622118634,0.0012111310901158168,0.0017886945709438974,0.0020437314206251697,0.001836366696468871,0.0016258145836939113,0.001881092960267993,0.0014597038691211207,0.0013785771713173958,0.0018786744207316562,0.001747805836927175,0.002166901365732135,0.0018024304109843794,0.0019494945877057146,0.0014630128549225597,0.0012262586674363473,0.0016445464566182768,0.0013972840487456754,0.0017391047046061208,0.001635897215968923,0.0022463141207252914,0.0015228318520133716,0.0022467983668493026,0.0017015755609381582,0.002106632148879885,0.0016272020611357333,0.001572785257022869,0.001554779154554658,0.002149766897900656,0.0019749008501579596,0.001772014402139197,0.0020921915459330915,0.001572785257022869,0.002117893188680147,0.002243153201161265,0.002016448349445599,0.0018346213524387091,0.001961157156792631,0.0022150031411554364,0.0018689519663509454,0.0017050034059509392,0.0017415247742292393,0.0017803527941583457,0.001313773841560307,0.0020319460243920714,0.0016291311766001956,0.0014737250572356346,0.0015381364484159802,0.0020310706329231573,0.001400856910522724,0.0017474704823770245,0.0016468523267791826,0.001697685706590274,0.0020643553228858326,0.0017021840366069844,0.0013738623305788252,0.001800688503530553,0.002279454739872993,0.0012473026295440428,0.00147736435744238,0.001513247463971136,0.0019806950865180724,0.0014933336553446803,0.0017555549553843056,0.0018755427632968589,0.002006200623525329,0.0014884562229271479,0.0014166409811805342,0.0017793261721569583,0.00219509183921945,0.0014859798964726289,0.002022136834463262,0.0016313170932319052,0.0015193906602062447,0.001206400789887513,0.0013425470725835316,0.001624978237899474,0.0016453175396098645,0.0017745764044091532,0.002120645703143983,0.0012432386031062163,0.0018375232603797512,0.0016024516406858678,0.0018851967766755592,0.0016329435876422933,0.0017322317429073312,0.0014874687506009634,0.001838903833589575,0.0011345591536762673,0.0018038945400077058,0.0017756234631177614,0.0015717420919442553,0.002079542053989659,0.001738408758610922,0.001923596776665195,0.0019372373816449852,0.0015440737667044336,0.0017511339062992743,0.0012810834211972031,0.00149764032283389,0.0016012217189582685,0.001828829964344382,0.0017865648034903472,0.002220344829366015,0.0015971804612504889,0.0015211174121405318,0.0019668840310081708,0.001607609738734785,0.0016810227041712182,0.001259098141946273,0.0021528953465794736,0.0018481313731194846,0.0013314474477953608,0.0011450607865972342,0.0015741691409780704,0.0017730726523317454,0.0013285905923251288,0.001390715984652636,0.0015,0.00146355995225411,0.0018016280214517356,0.0020825175850012973,0.002010453461194174,0.0017610090063618488,0.0019556437866130906,0.0015717420919442553,0.002206201660125837,0.001651648847295007,0.001580635962877376,0.0018713695737155723,0.0012172967913628506,0.0011511484326014198,0.0013958399052244877,0.0011966515150024892,0.0015202555862233386,0.0013965630611785435,0.0017210715811870503,0.0017516291673878228,0.0017205091267236078,0.0017307972916822255,0.0013198105395457657,0.001765097841652506,0.001748140724409556,0.0014689635318695063,0.0018097930166559035,0.0015401318886936594,0.0018058768197712482,0.0016801362546013878,0.0013001499833200508,0.0014540856421866584,0.0016277548180998107,0.00181768983269923,0.0017822478262498873,0.0017260753283702926,0.0011609640474436812,0.0017247880257051796,0.0015671686705958328,0.0015650281593666971,0.00181768983269923,0.001375444238741708,0.002030605896912203,0.001313773841560307,0.002084797527010752,0.0016624024316342545,0.0011882138361574944,0.001193311889463065,0.0011409150084907293,0.001517651418095193,0.001383963458029517,0.0019483329952365745,0.0012810834211972031,0.0013361347146144257,0.0022999983069483605,0.0017459555718277332,0.0013487928568199753,0.0012552302434193853,0.0019017418919173323,0.0016450607865972342,0.0013854804925473925,0.0016416978062742957,0.001621886505170844,0.0016366964937358647,0.0018603985547928177,0.0018113418089575263,0.001515459523486642,0.0019418419485298215,0.0011847540761296949,0.00209485726275751,0.0016849717757131324,0.002216653910583387,0.0016761062858522,0.0011120708903285825,0.0012377107924503496,0.001876623877281797,0.0021736668843798553,0.001382436791481938,0.002006143407778841,0.001816936859724352,0.0014400408227037242,0.0018060083925096784,0.001215770124815271,0.0014737250572356346,0.0013965630611785435,0.0013987195704631267,0.0019126222384943997,0.0016905638689983032,0.0021906967065098205,0.001609701913791966,0.0015353147157576672,0.0016845361792652304,0.0020551528130191028,0.0016856236943415316,0.001382436791481938,0.001581641326739883,0.002162730852981432,0.0016406535085481725,0.0016437728929264658,0.001991576996560026,0.0013333333333333333,0.0017926203589403802,0.0013096634991879286,0.0018191887414917751,0.00189191523488667,0.0015682318226896172,0.0017828279210390478,0.001852940516898182,0.001881669807822103,0.00138320133639788,0.001886235435627478,0.0011388150023607902,0.0014829742426675852,0.0012751752818631547,0.0012247880257051796,0.0013505479680686703,0.001297983759898572,0.0015603239622892068,0.0015978066313269712,0.0012763685804586325,0.0018362507335182357,0.0017397986420963768,0.0012775559861975293,0.001654629660347057,0.0011609640474436812,0.0012404905826414547,0.001191624519917447,0.001542504761636455,0.001394387035707636,0.0016526465631392956,0.001339819831548717,0.00173736104813635,0.0016369623303284279,0.0013574430404719804,0.0015769132412143591,0.0012641604167868594,0.0012218194796857695,0.0011511484326014198,0.0016481238748163763,0.0014869734895124151,0.0012822478262498876,0.001693941612669304,0.0015635904918640975,0.0012775559861975293,0.001236308752480983,0.0013980028808908559,0.001299069311058351,0.0012751752818631547,0.0015643104001069102,0.002227515353391077,0.0019323874339874747,0.0015228318520133716,0.0021383861883017014,0.001956911164400191,0.0015898598018513385,0.0017955232011199484,0.0016173172622407771,0.0015266452227963982,0.0017981197221150762,0.0018980925839970934,0.001855844657629636,0.001966276920975627,0.001894022442501342,0.0016244190535230772,0.0015769132412143591,0.0017385829340430083,0.0018747534341564049,0.0016064059856650786,0.0014471657639469472,0.001787134588528258,0.0016241389729165908,0.0016054991995238263,0.0012486421827216125,0.0017498082010886208,0.0018894177599683758,0.0014192833063806738,0.001191624519917447,0.0012432386031062163,0.0022756980788432575,0.0019708927235798893,0.0017370107943621355,0.0018158029605513239,0.0014430352471252992,0.0018971040044291527,0.0017486421827216123,0.0018306176987765582,0.0017751752818631547,0.0015799633773381833,0.0018352045425705423,0.0013127528244275,0.0014569111644001911,0.0019974030764668563,0.0019451093748530735,0.0018355537789042412,0.0021664023560982104,0.002031482978873698,0.0014212461676767327,0.001798391416125319,0.0014829742426675852,0.0015717420919442553,0.0019382261033466018,0.0016193269983758574,0.001879547900021726,0.0018071893185185584,0.0012616426013884914,0.0017537635885424715,0.0018675303877047737,0.0013407323532264091,0.002326410348506157,0.0019143887087947774,0.002059408661703626,0.001978265640540131,0.0017087775720750415,0.001546408243036747,0.001286849864784531,0.0017117158877453399,0.0016573299857239566,0.0016403917239023013,0.00183473810367843,0.0015219761601014655,0.0018407323532264091,0.0018937486343410103,0.0018514207427963614,0.0011388150023607902,0.0016609640474436812,0.0012834066196901822,0.0016543826657968521,0.0014585906765148498,0.0015409254510426135,0.0015336873039717433,0.001325699385064479,0.0015055705002562417,0.0012404905826414547,0.0018239966523906231,0.0021326056407511298,0.0019319982946025209,0.0017298963945118768,0.0020681434060041267,0.0014869734895124151,0.0017774078807579953,0.001400856910522724,0.0011258145836939113,0.002078824105629935,0.0016645440020120897,0.0019424393380879947,0.0016945696909719562,0.0014471657639469472,0.0018211728614533824,0.0012913654749315768,0.0015452438379840625,0.002024746097029713,0.0012552302434193853,0.0016875689117472191,0.0013706669456996841,0.001642996832521262,0.001762904804672625,0.0017354283078008684,0.001731515586984079,0.0016924696848420176,0.0019158092640818663,0.0019309053419321602,0.0019124533244210804,0.0019283092680551577,0.002019011274527544,0.0014608119317893484,0.001979035489138479,0.001411945869065341,0.0019851695679661643,0.0019524458045513337,0.0018676322082328595,0.0018578674874903714,0.0014179657733664494,0.0015211174121405318,0.0016563515543698733,0.0017721658661904928,0.0016416978062742957,0.0014957357649675877,0.0014394374367572749,0.0018923748969908736,0.001387738247853717,0.0016340218368638864,0.0017760708105462968,0.0017079879189072643,0.0015525249270427167,0.001936091473963165,0.0018319203076792826,0.0017437503787662107,0.0011144167545305364,0.0015946593459025776,0.0018269082823996992,0.0016403917239023013,0.0021761062858522,0.00171672542672137,0.0017739760316291208,0.0014295714713392915,0.0013980028808908559,0.0016241389729165908,0.0015703441276954688,0.0012348984893562837,0.0014345550522916017,0.0017214458212213245,0.0015525249270427167,0.0015996754166936,0.0019771062262597993,0.0011722371669229085,0.001529569922998206,0.0018784798825547974,0.0015956078645822202,0.0015671686705958328,0.0016897119666953702,0.0016879990534960656,0.0014651938147591697,0.0017688114162151736,0.0015502493658304248,0.0020210636384237735,0.0016556151091587056,0.0016821261901533088,0.001193311889463065,0.0012404905826414547,0.0014804405082269735,0.0018297850765177264,0.0011450607865972342,0.0014668166499867174,0.0019119458690653407,0.001206400789887513,0.0013198105395457657,0.0022356266891258984,0.0017286294407229874,0.00196355995225411,0.0019165579388127666,0.0014597038691211207,0.0016129532736068348,0.0013208020839342966,0.0015809715514503173,0.001594342339695182,0.0016914127636963796,0.0014357849740192013,0.0012834066196901822,0.0015498680030645465,0.0017015755609381582,0.001585621265992073,0.0016903511762170916,0.0013086248402360097,0.0019057713712727876,0.0013633181816691557,0.002031585954966699,0.001515459523486642,0.0019395884252542182,0.0013323922394764764,0.0014418419485298214,0.001524534154157038,0.00174409095838899,0.0016770076896200816,0.0015198235121205844,0.001590827405464873,0.0015671686705958328,0.0015467951283551005,0.001361654166907052,0.0017926203589403802,0.0011366964937358647,0.0012048031150826467,0.0012391047046061208,0.0011097019137919658,0.0013565918920664657,0.00129359187207408,0.0014966899296065261,0.0015584898635910718,0.0011302266189207766,0.0013295466539166528,0.0013809003698103748,0.0019072436020378988,0.001742554536717427,0.0012079879189072643,0.0016173172622407771,0.0014029754191476496,0.0016873535519715311,0.0015921115162523787,0.0019349400790728021,0.0015101159886145923,0.0017210715811870503,0.001793453324577604,0.001676331953793196,0.0012262586674363473,0.0011812438068750566,0.0013899750004807707,0.0012552302434193853,0.0016181806354250573,0.001252616639714007,0.001316811134663458,0.0014132967106715165,0.0017908056395832576,0.0014962133205833194,0.0012203213491478939,0.001236308752480983,0.0013217895562604811,0.0015051111893744904,0.0014357849740192013,0.0011722371669229085,0.0014778797899516103,0.0015741691409780704,0.0017282662243797795,0.0015228318520133716,0.0016838813014020035,0.0012048031150826467,0.001432698292690735,0.0016102963496286646,0.001696444141834412,0.0014535165314511977,0.0017854211667399707,0.0018970139316903279,0.0014512265220134805,0.001294697387462821,0.0017212587740135401,0.0015525249270427167,0.00169561285605057,0.0015046509994283142,0.0017268078473632773,0.0013285905923251288,0.001223308333814104,0.0011471071748936402,0.0014085351853053883,0.0018114704257958332,0.0018715699480384028,0.0017091714283031217,0.0017578157433146063,0.0014092212033840934,0.0011235778310668576,0.0013649707598133362,0.0015789509582699026,0.0015206868853048646,0.0017054034878626794,0.0013847231716899013,0.0011609640474436812,0.0013514207427963614,0.0014859798964726289,0.0019808858435082293,0.0011213200757605331,0.0012715594366799348,0.0011551228895938144,0.0011966515150024892,0.0012473026295440428,0.0012763685804586325,0.00171672542672137,0.0018549878222517322,0.0011983040931466695,0.001305481669027457,0.0011366964937358647,0.0014071572493081215,0.0014192833063806738,0.001499058906143143,0.0017420402067384695,0.0015724380379394543,0.0012691183073525348,0.0016851892783724513,0.0019226268963311094,0.0016825661704654262,0.0012654095062113468,0.0019107576250556567,0.0012834066196901822,0.0014388325328571596,0.001286849864784531,0.0011491362938846573,0.0015487202721336732,0.0011324026443916843,0.001741352717568244,0.0016742932768971136,0.0014529460705110663,0.0018471357229453789,0.001476847817665899,0.0016155811595832208,0.0015249578532507803,0.0020756308425826926,0.0016999453908060605,0.0016869222528900054,0.0013980028808908559,0.002064175581391025,0.0013342707581989798,0.0016277548180998107,0.0011302266189207766,0.0015073990198930757,0.001661923925658462,0.0016736098586062024,0.001421896910086052,0.0012418685186387215,0.0011511484326014198,0.0017079879189072643,0.0011388150023607902,0.0013505479680686703,0.0017724685083619531,0.0021354631619379433,0.0012334799060470308,0.0015228318520133716,0.0014913945385974462,0.0017582974446579765,0.0014874687506009634,0.002038986534764496,0.0014477500878638699,0.0011830053471600878,0.00132375241755654,0.0015189570276748648,0.0012913654749315768,0.001175880405916865,0.001313773841560307,0.0017606915816642888,0.0016198981368236805,0.0016285815782500998,0.001315802960551324,0.0013793540675457064,0.0017199453534911659,0.0013461359328418054,0.001524534154157038,0.001542504761636455,0.0019281510257503473,0.0014022713215040288,0.0011999453908060607,0.001470029827069198,0.0012715594366799348,0.0018036289969950946,0.0013285905923251288,0.00165413541726763,0.0016310449379414109,0.001905510627520345,0.00138320133639788,0.001525380807051097,0.0014981141144620276,0.0012968932855874434,0.0015444644234491503,0.0020716113775221825,0.0017329457721580448,0.0011471071748936402,0.0011949875002403854,0.0016633565962731929,0.0012629048046726248,0.0014705612066743725,0.0016960288581845816,0.0017117158877453399,0.0019287044187989491,0.0017327674635303097,0.0013884861463524362,0.0017741262654193761,0.0013899750004807707,0.0012787375569952492,0.0019954368103431244,0.001966681831270832,0.001189925225399799,0.0017195687689608116,0.0018648678057661709,0.0018776025077474096,0.0012913654749315768,0.0018194376537018725,0.0014394374367572749,0.0016064059856650786,0.0015819755160549457,0.0013407323532264091,0.0015595920007696806,0.0013847231716899013,0.0016810227041712182,0.0013033631604025314,0.001790384906014,0.0018246061563253046,0.0013540202186381979,0.0016114808307110412,0.0012957978432668624,0.0019425139075329965,0.0017594176757786547,0.0016070086154879961,0.0011999453908060607,0.0016155811595832208,0.0011120708903285825,0.0018963824759853152,0.0017065997548748539,0.0017563648220087365,0.0013624876137501131,0.001484481765934753,0.0016012217189582685,0.0013574430404719804,0.0014884562229271479,0.0015506301246961836,0.0016126595054902916,0.001252616639714007,0.0014459928388236248,0.001609701913791966,0.0016213200757605331,0.0011235778310668576,0.0017878449263372842,0.0012552302434193853,0.0018250926495079185,0.0017264418668154812,0.0013075816751573959,0.0016590327183978125,0.0012247880257051796,0.0015202555862233386,0.0018267876658065096,0.0017565264685180052,0.0017643169082817952,0.0019682946881184023,0.0012763685804586325,0.0014173042896659584,0.0016812438068750566,0.0012377107924503496,0.001642478063876706,0.001843561865443302,0.0019269608772712846,0.0016201831981178642,0.0016676040915323132,0.0015968667636541596,0.0014064653087630435,0.0017169160324970916,0.0013793540675457064,0.0012031947534103602,0.001618467738949892,0.0016805798878886404,0.0018480209486980345,0.0011551228895938144,0.0019836663642780828,0.0016388150023607902,0.001571044125783683,0.0016033699709179145,0.001270341969909396,0.002029569922998206,0.0016678378778156614,0.0019327759446124437,0.0015498680030645465,0.0016129532736068348,0.0015819755160549457,0.0012486421827216125,0.0016033699709179145,0.001845131968237177,0.001765097841652506,0.0013624876137501131,0.0011450607865972342,0.001591791130897207,0.0019825327620938897,0.0015198235121205844,0.0018729679122871893,0.001352290361008198,0.0014981141144620276,0.0017576549615142447,0.001338903833589575,0.001765720767320808,0.0012565264685180052,0.001352290361008198,0.0017439207288785302,0.001989500987752765,0.0017282662243797795,0.0015064864982153837,0.0015028013812810924,0.0017675799196769449,0.0012079879189072643,0.0013443481984096288,0.0011491362938846573,0.001678577060426104,0.001497165595782385,0.0017464616032459605,0.001807973392605119,0.0014962133205833194,0.0017269906289558736,0.0012845598553468138,0.0016216034572588398,0.001218813825880726,0.0016496409093342517,0.001701981382424334,0.001968963531869506,0.0012616426013884914,0.0015198235121205844,0.0011190409196110203,0.0012432386031062163,0.0015734781946018118,0.0016227336552197152,0.0014363975837097677,0.0014339377241643656,0.0015377353654647977,0.0016266480305369723,0.0011647807811286943,0.0015198235121205844,0.001917800572965941,0.0012834066196901822,0.0011280307207961542,0.001791784497704158,0.0014029754191476496,0.0016476160622232326,0.0017268078473632773,0.0014424393380879947,0.0011258145836939113,0.002001463124713417,0.0018503292784915386,0.0014957357649675877,0.0016503958524143375,0.0017565264685180052,0.0017552302434193855,0.0014678924870096006,0.0016794692661751386,0.0012727707700906081,0.0014923660517311458,0.0018188148893716603,0.001524534154157038,0.0019239997416890902,0.0017205091267236078,0.0019519444955940577,0.0012787375569952492,0.0014112675916804994,0.001382436791481938,0.0015713933621173818,0.001508761341800692,0.001786707376381261,0.0014619149115834332,0.0016374931234214205,0.0012775559861975293,0.0013106976907757133,0.0017244189555276057,0.001731515586984079,0.0018599785561297314,0.001828829964344382,0.001299069311058351,0.0017986628034831148,0.0017157701248152713,0.0017284479011345363,0.0013633181816691557,0.001292481250360578,0.0013106976907757133,0.0012879867424271999,0.0017054034878626794,0.0012512991066997827,0.0017910857201897438,0.001369861420077027,0.0012565264685180052,0.0013854804925473925,0.00169561285605057,0.0014552198385041773,0.0016030642503764344,0.0017532727088072021,0.0015999854736978545,0.00170035397063841,0.001754090285839308,0.001960397006451732,0.0014238386367092062,0.0012306173820790087,0.001359136351508684,0.0014546534090938664,0.0011388150023607902,0.0013801284616884338,0.0012957978432668624,0.0016144167545305364,0.0016260927204206812,0.0019527317982496134,0.0016105930173695455,0.0014668166499867174,0.0018122406854192293,0.0015581213590385129,0.0016578177124093995,0.0015570124446665232,0.0016094041438796303,0.0015717420919442553,0.0015990541006541414,0.0015136915068923117,0.001286849864784531,0.0018640425825675582,0.001530399058900755,0.0018064026792995562,0.0015625065718911542,0.001700558000496627,0.0015748581075625727,0.001153143872879099,0.001189925225399799,0.0011388150023607902,0.0011551228895938144,0.0018048216379419142,0.0018128806889205326,0.0012203213491478939,0.0015193906602062447,0.001589536400089766,0.001517214634735337,0.0016498928204871852,0.0013266669886780136,0.0012486421827216125,0.0018357863216433349,0.0015643104001069102,0.0017348984893562837,0.0013690531868001277,0.001676782655281259,0.0018255781603714748,0.0017306173820790087,0.001508761341800692,0.0013738623305788252,0.001738756983398043,0.0016294055054074553,0.0013487928568199753,0.0018949328910464463,0.0018885794703099364,0.0012902444977335244,0.0019003243539960893,0.001215770124815271,0.0016924696848420176,0.0016280307207961545,0.0013690531868001277,0.0014737250572356346,0.0014758113972100392,0.0016345591536762673,0.0014370086365760625,0.0012879867424271999,0.0013352045425705423,0.0011609640474436812,0.0012126874008790397,0.0016324026443916841,0.001669931788059647,0.0016324026443916841,0.001376231307115442,0.0017788848459269493,0.0016204679218615912,0.0016070086154879961,0.0020233118438687477,0.0012715594366799348,0.0014050754252775885,0.0018070583905689679,0.0012277203690409693,0.0014962133205833194,0.0016033699709179145,0.0013505479680686703,0.001731515586984079,0.0012727707700906081,0.0012810834211972031,0.0015083080915750937,0.0015617812344678695,0.001214233703143708,0.0012739760316291208,0.0011190409196110203,0.0014716204558476763,0.0018438991802147517,0.0012095646404487754,0.001191624519917447,0.001481963950536385,0.001670163323150702,0.0014351707995512255,0.0013514207427963614,0.0016830053471600878,0.0015965526562633358,0.0017574940721315395,0.0015949759347218245,0.0016377580812151525,0.0015145771402083898,0.001313773841560307,0.0014238386367092062,0.0016126595054902916,0.0013540202186381979,0.0012691183073525348,0.0017343675009031424,0.0015475670364770413,0.0018714697817493135,0.0013641458904847137,0.0015320488024117944,0.0015799633773381833,0.0015096652871265295,0.001869558650878389,0.0012799133499175744,0.001555152813019103,0.0011983040931466695,0.0012822478262498876,0.0018531568454539177,0.0017085804017700356,0.0011471071748936402,0.0013854804925473925,0.0013854804925473925,0.0012822478262498876,0.00129359187207408,0.0014064653087630435,0.0013295466539166528,0.0013361347146144257,0.0016703946355047423,0.0014619149115834332,0.0011590327183978125,0.0015119103937594372,0.0014966899296065261,0.0016796918012891083,0.0012715594366799348,0.0012603737373701788,0.0014071572493081215,0.0016708565937130846,0.0013304989291157184,0.002116269866513119,0.0013086248402360097,0.001394387035707636,0.001177681531742962,0.001494777798865868,0.0014394374367572749,0.0011812438068750566,0.0013452437270927706,0.001730257158530764,0.001294697387462821,0.0011590327183978125,0.0017760708105462968,0.001508761341800692,0.0019175525593560395,0.0017483079934065495,0.001468428605790191,0.0012691183073525348,0.0013285905923251288,0.0017410082344527585,0.0014966899296065261,0.0017193802552910367,0.001361654166907052,0.0018643523732569407,0.0018013599621447293,0.0012775559861975293,0.0017944214847664774,0.0014471657639469472,0.0017347216234612317,0.0014737250572356346,0.0012822478262498876,0.0015502493658304248,0.0016877840788071985,0.0016792465249146694,0.0011190409196110203,0.0016260927204206812,0.0018739615053269753,0.0017184354636099214,0.001701169053362922,0.0017044020321314642,0.0014737250572356346,0.001583307647847201,0.0014864772062124325,0.0013407323532264091,0.0011794692661751384,0.0013086248402360097,0.0016082093629195523,0.0014418419485298214,0.0011590327183978125,0.0014705612066743725,0.0013608178211126146,0.001840276525272869,0.0012691183073525348,0.0014923660517311458,0.001608508615196488,0.001305481669027457,0.0014251244642305406,0.0016481238748163763,0.0017584577975638738,0.0017264418668154812,0.0012291732385578207,0.001658061205264113,0.0019784583338910188,0.0016659611918129669,0.0015755451056684371,0.0014064653087630435,0.0018449082945712974,0.001678577060426104,0.001784272064560236,0.001316811134663458,0.001338903833589575,0.001742554536717427,0.001513247463971136,0.0013117274532639008,0.001551768796943255,0.001175880405916865,0.0016657255728098098,0.001162879987249986,0.0011570857508898733,0.001245955571827733,0.001501871209237209,0.0017247880257051796,0.0020131919009036487,0.0020330230087335192,0.001476847817665899,0.0016888570354001002,0.0017316948260333639,0.0013548805028241611,0.0015614177435846154,0.0015069431919395356,0.0013044247478818192,0.001881573762614722,0.0018621754096290193,0.0014370086365760625,0.0019395884252542182,0.0011345591536762673,0.001651648847295007,0.0013649707598133362,0.0015671686705958328,0.0015675235771893906,0.0015755451056684371,0.0014694972705425633,0.0016740656865597424,0.0016845361792652304,0.0016661965801562702,0.0013266669886780136,0.001400856910522724,0.0011409150084907293,0.0016945696909719562,0.0014126222384943997,0.0012391047046061208,0.0017794731010790255,0.0016496409093342517,0.0018617585058861167,0.001826546250953417,0.0014794194910941665,0.001501871209237209,0.0016626413280011307,0.0013994341301969764,0.0015933888057020737,0.0012739760316291208,0.0018737631149085576,0.0013958399052244877,0.0016406535085481725,0.001554779154554658,0.001369861420077027,0.0016602416157330327,0.0014529460705110663,0.001215770124815271,0.0014569111644001911,0.0016650173273095833,0.0014345550522916017,0.0017338353372624994,0.001394387035707636,0.0014105873955451967,0.0016388150023607902,0.0015529021022941448,0.001822772989833762,0.0013565918920664657,0.0016673700777196992,0.0015328694488516753,0.0011511484326014198,0.0013987195704631267,0.0012775559861975293,0.001285707586277687,0.0011491362938846573,0.0013217895562604811,0.0015064864982153837,0.0013657928090703747,0.0015581213590385129,0.0016181806354250573,0.0013496720138267545,0.0012291732385578207,0.0016633565962731929,0.0014132967106715165,0.001189925225399799,0.001294697387462821,0.001162879987249986,0.0017974391409262536,0.001337061302171409,0.0014382261033466018,0.0011703946355047423,0.0014126222384943997,0.0011213200757605331,0.001359136351508684,0.0013470248402256452,0.0014225458961034671,0.0012391047046061208,0.0014363975837097677,0.0015682318226896172,0.0014952572589917953,0.0012616426013884914,0.0017268078473632773,0.001443629682961998,0.0011703946355047423,0.0015004691692678423,0.0011345591536762673,0.0014563487099367484,0.0015336873039717433,0.0015096652871265295,0.0016972725635788697,0.001177681531742962,0.0016756543135885175,0.0014483329952365745,0.0011966515150024892,0.0016997408402420605,0.0014859798964726289,0.001245955571827733,0.0016788004224240346,0.0019319982946025209,0.0011983040931466695,0.0011280307207961542,0.0015892125627701337,0.0014879629936803904,0.0012348984893562837,0.0015073990198930757,0.0015529021022941448,0.0014205936593428353,0.0014173042896659584,0.001191624519917447,0.001468428605790191,0.0017095646404487752,0.0011609640474436812,0.0011097019137919658,0.0013314474477953608,0.0016796918012891083,0.001542504761636455,0.0013936572956225403,0.00147736435744238,0.0011190409196110203,0.0014192833063806738,0.0012913654749315768,0.0014630128549225597,0.0013127528244275,0.0014864772062124325,0.0012218194796857695,0.0015968667636541596,0.0014824696272179904,0.0013452437270927706,0.0015809715514503173,0.001299069311058351,0.0016099993154049962,0.0019264831635244504,0.0011409150084907293,0.0011280307207961542,0.001142996832521262,0.001421896910086052,0.001509213739250198,0.0018474680646340604,0.0013793540675457064,0.001153143872879099,0.0018629032563315393,0.0016761062858522,0.0015588578042496804,0.001689925225399799,0.001206400789887513,0.0018191887414917751,0.001367428524041534,0.0013096634991879286,0.001786707376381261,0.0013777977567824837,0.0012763685804586325,0.00144124307107582,0.0015859499730473405,0.0011966515150024892,0.0011740656865597422,0.0011450607865972342,0.0015603239622892068,0.0012565264685180052,0.0019333188070311878,0.0016645440020120897,0.0017134617950217673,0.001524109707138647,0.0016213200757605331,0.0016592749845880622,0.0017442610674682332,0.0018100518424865803,0.0018203068228457484,0.0013624876137501131,0.0017663420833602668,0.0017514641936774188,0.0017370107943621355,0.0015720903167313765,0.001497165595782385,0.0011949875002403854,0.0012739760316291208,0.0015299848483358225,0.0012015755609381584,0.0016565965357191153,0.0016272020611357333,0.00182375241755654,0.001569290294715015,0.001572785257022869,0.0013407323532264091,0.0013217895562604811,0.0012775559861975293,0.0011666666666666668,0.0016526465631392956,0.001355737720036821,0.0014477500878638699,0.0018066651784233144,0.0012539269926761687,0.0014166409811805342,0.0016958209470834464,0.0014778797899516103,0.0014799305416021307,0.0011144167545305364,0.0012095646404487754,0.0013342707581989798,0.0014406426982957875,0.0017733741560370575,0.0016213200757605331,0.0012787375569952492,0.00129359187207408,0.001313773841560307,0.0011235778310668576,0.0011609640474436812,0.0012306173820790087,0.001818190507889983,0.0012715594366799348,0.001517214634735337,0.0012666521403645213,0.001175880405916865,0.0013470248402256452,0.0014646504265652387,0.0014238386367092062,0.0011120708903285825,0.001533278724139394,0.0014057713712727876,0.0014962133205833194,0.0015911490766479395,0.0013425470725835316,0.001470029827069198,0.0013285905923251288,0.0013314474477953608,0.0011609640474436812,0.0014668166499867174,0.0016570857508898733,0.0013178150992680865,0.001525380807051097,0.0014918807858278287,0.0016244190535230772,0.0015349088942714915,0.001316811134663458,0.0013314474477953608,0.001214233703143708,0.001653143872879099,0.0012539269926761687,0.001481963950536385,0.0016263705357877874,0.0015101159886145923,0.001244600925013833,0.0012539269926761687,0.0014763301658545956,0.0013921911375830139,0.0017015755609381582,0.0014459928388236248,0.0011703946355047423,0.0015839709563326252,0.0013178150992680865,0.0014535165314511977,0.001341641424908427,0.0016834437231675332,0.0014257648086129396,0.001563950715412342,0.0015717420919442553,0.0012834066196901822,0.0012810834211972031,0.001206400789887513,0.001313773841560307,0.001662879987249986,0.0011666666666666668,0.001622451603370973,0.0012913654749315768,0.001259098141946273,0.0014064653087630435,0.0011491362938846573,0.0016070086154879961,0.0014641058075929203,0.0019367796736892348,0.0017522879326587395,0.0015336873039717433,0.0014563487099367484,0.0018354374231441767,0.0012218194796857695,0.0016761062858522,0.0012126874008790397,0.0012262586674363473,0.0016680714370117633,0.0011812438068750566,0.0016088074955003299,0.0012834066196901822,0.0011812438068750566,0.0016794692661751386,0.0015765719364395493,0.0014859798964726289,0.0017329457721580448,0.0019297287818934674,0.0011812438068750566,0.0017069971916157216,0.0015984311749858392,0.0016985098690886092,0.0017331239486563655,0.0013649707598133362,0.001193311889463065,0.0017467983668493028,0.0012320529037964602,0.0011450607865972342,0.0014257648086129396,0.0013304989291157184,0.0015765719364395493,0.0011213200757605331,0.0013086248402360097,0.0015202555862233386,0.001297983759898572,0.0013208020839342966,0.0012126874008790397,0.0013314474477953608,0.001502336745052489,0.0012377107924503496,0.0014552198385041773,0.0011144167545305364,0.0016432557977304422,0.0011647807811286943,0.001223308333814104,0.0013266669886780136,0.0013461359328418054,0.0015014047703450968,0.0018139011643980615,0.0016135397352963008,0.001387738247853717,0.0019395884252542182,0.0017247880257051796,0.0016845361792652304,0.0011511484326014198,0.0014580321415982433,0.001375444238741708,0.0012552302434193853,0.0018453554340278721,0.0019808222746582936,0.0011666666666666668,0.001517651418095193,0.0011324026443916843,0.0015051111893744904,0.0012334799060470308,0.001257815743314606,0.0013285905923251288,0.0013022968652028396,0.0015105658468814182,0.0015475670364770413,0.0013352045425705423,0.0013690531868001277,0.001270341969909396,0.0011388150023607902,0.0015769132412143591,0.0014238386367092062,0.001218813825880726,0.0012603737373701788,0.0015279030243052895,0.0016943605137743523,0.0015809715514503173,0.001578273636206586,0.0017916449045661405,0.0011167399530235154,0.0014105873955451967,0.001223308333814104,0.0015734781946018118,0.0018310921916261098,0.0012262586674363473,0.0017619587739172576,0.0016313170932319052,0.0013314474477953608,0.0018146636888430757,0.0015892125627701337,0.0017394519236895356,0.0012629048046726248,0.001162879987249986,0.0012763685804586325,0.0014173042896659584,0.0013407323532264091,0.0014839803076226966,0.0011812438068750566,0.0014036774610288023,0.0017913654749315765,0.0013869880158145602,0.0016453175396098645,0.0013178150992680865,0.001392925334103014,0.0016198981368236805,0.001338903833589575,0.0011471071748936402,0.0014225458961034671,0.0015069431919395356,0.001580635962877376,0.0015573826513193027,0.0011235778310668576,0.001383963458029517,0.0013847231716899013,0.0017686578236366633,0.0012247880257051796,0.0014952572589917953,0.0017641604167868594,0.001383963458029517,0.0012763685804586325,0.0016832246350671988,0.0014535165314511977,0.0012957978432668624,0.001257815743314606,0.0015510102815713904,0.0016009132530102781,0.0011213200757605331,0.0013994341301969764,0.0012763685804586325,0.0013086248402360097,0.0014192833063806738,0.0017462930444073147,0.0015846324400331162,0.0012775559861975293,0.0014742483418240626,0.00147736435744238,0.0012654095062113468,0.0011491362938846573,0.0012739760316291208,0.0013816698078221031,0.001499058906143143,0.0012751752818631547,0.0016869222528900054,0.0012095646404487754,0.0018361347146144257,0.0012968932855874434,0.001236308752480983,0.001616161254372381,0.0016563515543698733,0.001257815743314606,0.001175880405916865,0.0012822478262498876,0.0012739760316291208,0.0016590327183978125,0.0014483329952365745,0.0012512991066997827,0.0015544049145203838,0.0014231931351846717,0.0014418419485298214,0.001301225820342934,0.0013227729898337619,0.0015965526562633358,0.0016654897226943022,0.0014938160008895435,0.0014580321415982433,0.0014388325328571596,0.0016345591536762673,0.001448914492916554,0.0011144167545305364,0.0018242406393963186,0.001175880405916865,0.0011450607865972342,0.0012603737373701788,0.0016501444679967914,0.0012799133499175744,0.0015381364484159802,0.0013304989291157184,0.0014370086365760625,0.0016061041034239416,0.0012891182700376397,0.0012377107924503496,0.0013001499833200508,0.0015643104001069102,0.0014966899296065261,0.0017467983668493028,0.00169561285605057,0.0015369311868774676,0.0016321317157168439,0.001306533964682824,0.0011590327183978125,0.0014231931351846717,0.0015324594757370415,0.0011144167545305364,0.0013425470725835316,0.0014874687506009634,0.0012666521403645213,0.0017333019932209476,0.001551768796943255,0.0011949875002403854,0.0015779342583471662,0.0017733741560370575,0.0012666521403645213,0.001478907352085896,0.0016803581735589785,0.001411945869065341,0.001297983759898572,0.001387738247853717,0.0013649707598133362,0.0011551228895938144,0.0011235778310668576,0.0011830053471600878,0.0014199393754738688,0.0016324026443916841,0.0012751752818631547,0.0011666666666666668,0.0011830053471600878,0.0013086248402360097,0.0012095646404487754,0.001142996832521262,0.0016493887339849903,0.001214233703143708,0.001162879987249986,0.001355737720036821,0.0014430352471252992,0.0012822478262498876,0.001604284807177411,0.001218813825880726,0.001214233703143708,0.0015682318226896172,0.0017459555718277332,0.0014995299134896035,0.001390715984652636,0.00138320133639788,0.0013117274532639008,0.001359136351508684,0.0015004691692678423,0.0013690531868001277,0.0013540202186381979,0.001177681531742962,0.0014630128549225597,0.0013247278719307797,0.0016377580812151525,0.0014799305416021307,0.0013505479680686703,0.0013730674565541798,0.0015211174121405318,0.0014726750591763451,0.001270341969909396,0.0017467983668493028,0.001699126142403708,0.0014597038691211207,0.0014400408227037242,0.0014092212033840934,0.001484481765934753,0.0013869880158145602,0.001270341969909396,0.0013461359328418054,0.001996868414711949,0.0013285905923251288,0.0013505479680686703,0.0012348984893562837,0.0015646695475575226,0.0015110148650762953,0.0014477500878638699,0.001524109707138647,0.0011120708903285825,0.001743238603106216,0.001494777798865868,0.0013574430404719804,0.0011794692661751384,0.0014918807858278287,0.0014874687506009634,0.001478907352085896,0.0014752915069026764,0.0011882138361574944,0.001305481669027457,0.0012277203690409693,0.001175880405916865,0.0014962133205833194,0.001693941612669304,0.001259098141946273,0.0016088074955003299,0.0013531568454539177,0.0015150187366107148,0.0012404905826414547,0.001524534154157038,0.0011280307207961542,0.0015993649593574017,0.0016350952724568577,0.0013936572956225403,0.0015599582600537216,0.0014345550522916017,0.0011409150084907293,0.0014179657733664494,0.0014105873955451967,0.001337061302171409,0.001352290361008198,0.0011366964937358647,0.0014339377241643656,0.001327630714110348,0.0013777977567824837,0.001704602657235704,0.0012512991066997827,0.0014302000969874929,0.0016463418187880894,0.0012616426013884914,0.0014001465727136973,0.001236308752480983,0.0013809003698103748,0.0013247278719307797,0.0011511484326014198,0.0011847540761296949,0.0011511484326014198,0.0013285905923251288,0.0013198105395457657,0.001508761341800692,0.0012031947534103602,0.0011740656865597422,0.0012822478262498876,0.0016638322624490517,0.001285707586277687,0.0013746545855739308,0.0011666666666666668,0.0012629048046726248,0.0017408358076447372,0.0012432386031062163,0.0014580321415982433,0.0012404905826414547,0.0013106976907757133,0.001270341969909396,0.0014529460705110663,0.001286849864784531,0.001214233703143708,0.0016573299857239566,0.0015051111893744904,0.001162879987249986,0.0013582911865841136,0.0016901382951288336,0.001468428605790191,0.0016561063231670952,0.0016624024316342545,0.001700558000496627,0.0013793540675457064,0.0011409150084907293,0.0011097019137919658,0.0017834066196901822,0.0013624876137501131,0.0015101159886145923,0.0013496720138267545,0.0014454042236619158,0.0011097019137919658,0.0013217895562604811,0.0013127528244275,0.0012111310901158168,0.001382436791481938,0.0016592749845880622,0.0015823092415401371,0.0014179657733664494,0.001223308333814104,0.0015984311749858392,0.001223308333814104,0.0016856236943415316,0.0011409150084907293,0.0013540202186381979,0.001671087240419961,0.001215770124815271,0.001588238425691025,0.0014591479170272448,0.001325699385064479,0.0011740656865597422,0.0013461359328418054,0.0012565264685180052,0.0013582911865841136,0.0015491034581486046,0.0015544049145203838,0.001497165595782385,0.0013574430404719804,0.0013565918920664657,0.0015215471694908279,0.0014078472043682754,0.0013869880158145602,0.0012079879189072643,0.0016583044517931853,0.001621886505170844,0.0012968932855874434,0.001531637426480003,0.001191624519917447,0.0015506301246961836,0.0019151418127900497,0.001426403452211444,0.0014105873955451967,0.001600295131401285,0.0015004691692678423,0.0011812438068750566,0.0013434493219479258,0.0016640697431335228,0.0014064653087630435,0.0012727707700906081,0.0011740656865597422,0.001372269946126617,0.0012218194796857695,0.0014251244642305406,0.0011345591536762673,0.0015014047703450968,0.0014166409811805342,0.001376231307115442,0.0013117274532639008,0.0014546534090938664,0.0016123653780242804,0.0014406426982957875,0.001754579501010066,0.0013777977567824837,0.0015262244892271406,0.0016285815782500998,0.0012377107924503496,0.001245955571827733,0.0012486421827216125,0.0011213200757605331,0.0015809715514503173,0.0011551228895938144,0.001339819831548717,0.0014909073060629854,0.001671317666094981,0.0013574430404719804,0.0013117274532639008,0.0013649707598133362,0.0014092212033840934,0.0015755451056684371,0.001189925225399799,0.001390715984652636,0.0013770158075616964,0.0013785771713173958,0.0016088074955003299,0.0015628684217314254,0.0012348984893562837,0.0013487928568199753,0.0017504719673444573,0.001206400789887513,0.0012822478262498876,0.0016091060047546612,0.001285707586277687,0.0015635904918640975,0.0014483329952365745,0.0015789509582699026,0.0015921115162523787,0.0013461359328418054,0.0018095339119180277,0.001206400789887513,0.0018139011643980615,0.0014938160008895435,0.001669931788059647,0.0011590327183978125,0.0013379843327616474,0.0014732006313494905,0.001387738247853717,0.0017889771199464239,0.0013641458904847137,0.001301225820342934,0.0012715594366799348,0.0015064864982153837,0.0011120708903285825,0.0011647807811286943,0.0016551228895938144,0.0011471071748936402,0.0012418685186387215,0.0014400408227037242,0.001390715984652636,0.001738408758610922,0.0013714697817493134,0.0014483329952365745,0.0015628684217314254,0.0014834778013301246,0.0018456902437920843,0.0011551228895938144,0.0014869734895124151,0.0015765719364395493,0.0014923660517311458,0.0013379843327616474,0.001888952404348995,0.0011830053471600878,0.0011366964937358647,0.0013574430404719804,0.0015682318226896172,0.001524534154157038,0.0011409150084907293,0.0014952572589917953,0.0018062713221952342,0.0013487928568199753,0.0014064653087630435,0.001355737720036821,0.0012079879189072643,0.0011999453908060607,0.001206400789887513,0.0011830053471600878,0.0014668166499867174,0.001530399058900755,0.0014289411979155535,0.0012810834211972031,0.0011144167545305364,0.001506028935425581,0.0016315889408283933,0.001533278724139394,0.001299069311058351,0.001301225820342934,0.001313773841560307,0.0013033631604025314,0.001270341969909396,0.0012616426013884914,0.0014721483356941235,0.0012603737373701788,0.0015428979737821084,0.0011949875002403854,0.001587586801515845,0.0013425470725835316,0.0012291732385578207,0.001327630714110348,0.0013548805028241611,0.0011609640474436812,0.00129359187207408,0.0012348984893562837,0.0016155811595832208,0.0015599582600537216,0.0013862354356274783,0.0016036753032427293,0.0011966515150024892,0.0014314524392637106,0.0015724380379394543,0.0011190409196110203,0.0014923660517311458,0.0013899750004807707,0.0011812438068750566,0.0013247278719307797,0.001392925334103014,0.0013633181816691557,0.0013649707598133362,0.001236308752480983,0.0015373336123663509,0.0011882138361574944,0.0014057713712727876,0.001223308333814104,0.0012727707700906081,0.0012277203690409693,0.0015219761601014655,0.00160152978969033,0.0016315889408283933,0.0012203213491478939,0.0018028306038758966,0.001292481250360578,0.0012629048046726248,0.0014036774610288023,0.0012787375569952492,0.0015494860344798813,0.001382436791481938,0.0012015755609381584,0.0013854804925473925,0.0014630128549225597,0.0011324026443916843,0.001286849864784531,0.001355737720036821,0.0016258145836939113,0.0014705612066743725,0.0013304989291157184,0.0016155811595832208,0.001339819831548717,0.0012822478262498876,0.0014192833063806738,0.0012218194796857695,0.0014529460705110663,0.0015678779607074555,0.0013793540675457064,0.0015460207342123731,0.0012348984893562837,0.0011213200757605331,0.0015274844877792813,0.001444222652864196,0.0016230153766034151,0.0012957978432668624,0.001355737720036821,0.0013342707581989798,0.0012845598553468138,0.0012031947534103602,0.0011590327183978125,0.0016645440020120897,0.0013295466539166528,0.0017352518313353453,0.0011235778310668576,0.0012432386031062163,0.0011190409196110203,0.0014173042896659584,0.0014166409811805342,0.0011794692661751384,0.001544854446524903,0.0012739760316291208,0.001355737720036821,0.0014933336553446803,0.0011666666666666668,0.0014758113972100392,0.0013075816751573959,0.0011949875002403854,0.001740663257100209,0.0011570857508898733,0.001671317666094981,0.001369861420077027,0.0014591479170272448,0.0018832967338097567,0.0016905638689983032,0.001315802960551324,0.0014854815560383268,0.001162879987249986,0.0013295466539166528,0.0017790320446909472,0.001572785257022869,0.0016073093649624543,0.0012277203690409693,0.0013666120574727272,0.0015829753061585195,0.001306533964682824,0.0012203213491478939,0.001245955571827733,0.001327630714110348,0.0013582911865841136,0.0011235778310668576,0.0014363975837097677,0.001578273636206586,0.0012499743145138677,0.001189925225399799,0.0012891182700376397,0.0014763301658545956,0.0016167399530235154,0.0014225458961034671,0.0011740656865597422,0.0015862782313556352,0.0012079879189072643,0.0015802999052776255,0.0011144167545305364,0.0016388150023607902,0.0014406426982957875,0.0016690034117191556,0.0012404905826414547,0.0013434493219479258,0.0012666521403645213,0.0011794692661751384,0.0012654095062113468,0.0013086248402360097,0.0014199393754738688,0.0014952572589917953,0.0013809003698103748,0.0012048031150826467,0.0013770158075616964,0.0012111310901158168,0.0014747704900715565,0.0015028013812810924,0.001245955571827733,0.0013770158075616964,0.0011409150084907293,0.0014166409811805342,0.001375444238741708,0.0015467951283551005,0.0015185226117057846,0.0011740656865597422,0.0013127528244275,0.0016882138361574946,0.0016851892783724513,0.0012902444977335244,0.001189925225399799,0.0012787375569952492,0.0012031947534103602,0.001292481250360578,0.001244600925013833,0.0016673700777196992,0.0011471071748936402,0.0011830053471600878,0.001524109707138647,0.0011830053471600878,0.0014799305416021307,0.0012891182700376397,0.0013044247478818192,0.0015802999052776255,0.0014726750591763451,0.0014205936593428353,0.0014092212033840934,0.001375444238741708,0.0014105873955451967,0.001236308752480983,0.0014132967106715165,0.0012095646404487754,0.0013075816751573959,0.001339819831548717,0.001252616639714007,0.0011235778310668576,0.0015389366127932836,0.0011882138361574944,0.0014580321415982433,0.001270341969909396,0.001339819831548717,0.0011864901787872512,0.0013033631604025314,0.0011280307207961542,0.00132375241755654,0.001530399058900755,0.0015713933621173818,0.0014889484424920388,0.0011280307207961542,0.00147736435744238,0.001285707586277687,0.001236308752480983,0.0013443481984096288,0.0012799133499175744,0.0011551228895938144,0.0012787375569952492,0.001359136351508684,0.001142996832521262,0.0011864901787872512,0.0011450607865972342,0.0015502493658304248,0.0014512265220134805,0.001339819831548717,0.0013793540675457064,0.0012291732385578207,0.0012277203690409693,0.001531637426480003,0.0013972840487456754,0.0017504719673444573,0.0014569111644001911,0.0017144262936013262,0.0013540202186381979,0.0014078472043682754,0.0013487928568199753,0.001394387035707636,0.0014758113972100392,0.0014540856421866584,0.0011213200757605331,0.0013770158075616964,0.001468428605790191,0.0015487202721336732,0.0015885635767527188,0.0014132967106715165,0.0014092212033840934,0.0011235778310668576,0.0015096652871265295,0.001315802960551324,0.001524534154157038,0.001259098141946273,0.0011302266189207766,0.001325699385064479,0.0011864901787872512,0.001294697387462821,0.001244600925013833,0.0014747704900715565,0.0012126874008790397,0.0011235778310668576,0.0013649707598133362,0.001189925225399799,0.0012486421827216125,0.0012810834211972031,0.001175880405916865,0.001462464509933529,0.0015291542804167797,0.0011097019137919658,0.001585621265992073,0.001175880405916865,0.0014270404040368453,0.0013641458904847137,0.0013434493219479258,0.0012048031150826467,0.0013075816751573959,0.0011324026443916843,0.001533278724139394,0.0014794194910941665,0.001446580016584241,0.0014523742529443538,0.0011491362938846573,0.0015696420858143162,0.0014333188070311878,0.0012845598553468138,0.001257815743314606,0.001244600925013833,0.0015682318226896172,0.0015796263777406482,0.001294697387462821,0.001347910473541723,0.0014186254422945631,0.001430827083453526,0.0014159758378145283,0.0014295714713392915,0.0014913945385974462,0.0012822478262498876,0.0012499743145138677,0.0013899750004807707,0.0014597038691211207,0.0011258145836939113,0.0013965630611785435,0.0014580321415982433,0.0013075816751573959,0.0012666521403645213,0.001245955571827733,0.001347910473541723,0.0014535165314511977,0.0012739760316291208,0.0014535165314511977,0.001142996832521262,0.0011097019137919658,0.0011388150023607902,0.0014001465727136973,0.0015069431919395356,0.0013958399052244877,0.0013314474477953608,0.001236308752480983,0.0011190409196110203,0.0011097019137919658,0.001484481765934753,0.0012095646404487754,0.0016252573431815166,0.0013470248402256452,0.001214233703143708,0.0013342707581989798,0.0012334799060470308,0.0011409150084907293,0.001338903833589575,0.0013582911865841136,0.0011966515150024892,0.0014406426982957875,0.0013816698078221031,0.0016132466832509075,0.001355737720036821,0.0011213200757605331,0.001299069311058351,0.0013342707581989798,0.0014874687506009634,0.0013407323532264091,0.0011280307207961542,0.0011491362938846573,0.0012715594366799348,0.0014763301658545956,0.0012822478262498876,0.0011666666666666668,0.001376231307115442,0.001153143872879099,0.0014814572081497098,0.0012499743145138677,0.0014289411979155535,0.0014752915069026764,0.0012095646404487754,0.0011409150084907293,0.0012377107924503496,0.0011511484326014198,0.0015055705002562417,0.001294697387462821,0.0014454042236619158,0.001443629682961998,0.0013342707581989798,0.0011491362938846573,0.001316811134663458,0.0014933336553446803,0.0012486421827216125,0.0013127528244275,0.0014814572081497098,0.0015752018519720548,0.0013847231716899013,0.0011847540761296949,0.001223308333814104,0.001252616639714007,0.0014105873955451967,0.001162879987249986,0.0011740656865597422,0.001618754500073304,0.001494777798865868,0.0017590981419462728,0.0012320529037964602,0.001347910473541723,0.0011324026443916843,0.0013227729898337619,0.0012666521403645213,0.0012377107924503496,0.0012739760316291208,0.0014078472043682754,0.0011213200757605331,0.0014889484424920388,0.001765720767320808,0.001359136351508684,0.0011366964937358647,0.0012291732385578207,0.001252616639714007,0.0013987195704631267,0.0011409150084907293,0.0013208020839342966,0.001376231307115442,0.0011722371669229085,0.0012787375569952492,0.0014454042236619158,0.0011324026443916843,0.0012172967913628506,0.0011324026443916843,0.0013217895562604811,0.001292481250360578,0.0012320529037964602,0.0013379843327616474,0.0013777977567824837,0.0012079879189072643,0.0014001465727136973,0.0012486421827216125,0.0013540202186381979,0.0014864772062124325,0.001484481765934753,0.0011366964937358647,0.0013075816751573959,0.0011966515150024892,0.0014406426982957875,0.0012391047046061208,0.0015599582600537216,0.0012654095062113468,0.0011999453908060607,0.0011491362938846573,0.0015028013812810924,0.0013361347146144257,0.0012473026295440428,0.0016039802483355764,0.0014535165314511977,0.001430827083453526,0.0014483329952365745,0.001509213739250198,0.0012641604167868594,0.0016548764014394954,0.0012095646404487754,0.0011847540761296949,0.001193311889463065,0.0011235778310668576,0.0011703946355047423,0.001316811134663458,0.0011235778310668576,0.0012499743145138677,0.0012787375569952492,0.0013461359328418054,0.0011280307207961542,0.0011794692661751384,0.0011258145836939113,0.0013809003698103748,0.0011647807811286943,0.0015,0.0013266669886780136,0.0014613640541294877,0.0013657928090703747,0.001315802960551324,0.001223308333814104,0.0014879629936803904,0.0012172967913628506,0.0013914546923718461,0.001693731888126151,0.0013425470725835316,0.0014333188070311878,0.0016920474737177637,0.0011830053471600878,0.0012111310901158168,0.0013266669886780136,0.0012775559861975293,0.0014742483418240626,0.0012666521403645213,0.001368242227604825,0.0012172967913628506,0.0012539269926761687,0.001215770124815271,0.001175880405916865,0.0012891182700376397,0.0014357849740192013,0.0011280307207961542,0.0014710914145484857,0.0011120708903285825,0.0013001499833200508,0.0015487202721336732,0.0011949875002403854,0.001784559855346814,0.0011794692661751384,0.0014283092680551577,0.0012277203690409693,0.0014036774610288023,0.0015193906602062447,0.0015599582600537216,0.0015475670364770413,0.0015885635767527188,0.0012095646404487754,0.0012834066196901822,0.001153143872879099,0.0012306173820790087,0.0012486421827216125,0.001257815743314606,0.0013809003698103748,0.0011097019137919658,0.0011366964937358647,0.0015211174121405318,0.0012079879189072643,0.0013487928568199753,0.0012079879189072643,0.0012432386031062163,0.0014705612066743725,0.0011949875002403854,0.0014085351853053883,0.001566457281989699,0.0011999453908060607,0.001587260326009502,0.0014849821806283403,0.001415308849388279,0.0015096652871265295,0.0011097019137919658,0.0012048031150826467,0.0012603737373701788,0.0013188148893716603,0.0014064653087630435,0.001411945869065341,0.0013117274532639008,0.001175880405916865,0.0015150187366107148,0.0014388325328571596,0.0011409150084907293,0.0011830053471600878,0.0012291732385578207,0.0013657928090703747,0.0014283092680551577,0.001448914492916554,0.0012775559861975293,0.001306533964682824,0.0011324026443916843,0.0011388150023607902,0.0011830053471600878,0.0011666666666666668,0.0013624876137501131,0.0011120708903285825,0.0012775559861975293,0.001400856910522724,0.00138320133639788,0.0011722371669229085,0.001426403452211444,0.0016144167545305364,0.0016158713819159583,0.0013361347146144257,0.001191624519917447,0.0013001499833200508,0.0014064653087630435,0.0015706943814696832,0.0011966515150024892,0.0014192833063806738,0.0011666666666666668,0.0014394374367572749,0.0011864901787872512,0.0012432386031062163,0.0011302266189207766,0.0015502493658304248,0.0012603737373701788,0.0012499743145138677,0.001369861420077027,0.0011167399530235154,0.001223308333814104,0.0012334799060470308,0.0013531568454539177,0.0011812438068750566,0.001681905897720601,0.0015775944008015665,0.0012079879189072643,0.00138320133639788,0.0011864901787872512,0.0011213200757605331,0.0011830053471600878,0.001347910473541723,0.0014050754252775885,0.0012822478262498876,0.0013106976907757133,0.0013965630611785435,0.0013208020839342966,0.0014314524392637106,0.001341641424908427,0.0012739760316291208,0.0013407323532264091,0.0011983040931466695,0.0012616426013884914,0.0014050754252775885,0.0012739760316291208,0.0012810834211972031,0.0013314474477953608,0.001517651418095193,0.0015661007968636432,0.001177681531742962,0.001299069311058351,0.0012218194796857695,0.0011144167545305364,0.0012739760316291208,0.0012902444977335244,0.0011097019137919658,0.0012247880257051796,0.0011388150023607902,0.001153143872879099,0.0012473026295440428,0.0016302266189207766,0.001252616639714007,0.001294697387462821,0.001481963950536385,0.0012499743145138677,0.001257815743314606,0.0013777977567824837,0.0012799133499175744,0.0011949875002403854,0.001494777798865868,0.0012262586674363473,0.0013809003698103748,0.0013208020839342966,0.0012629048046726248,0.0011864901787872512,0.001315802960551324,0.0011794692661751384,0.001177681531742962,0.001395114567801203,0.0012763685804586325,0.0012306173820790087,0.0011190409196110203,0.0014036774610288023,0.0013127528244275,0.0012048031150826467,0.0011491362938846573,0.0011258145836939113,0.00138320133639788,0.0011388150023607902,0.0013452437270927706,0.0012262586674363473,0.0011666666666666668,0.001142996832521262,0.0013117274532639008,0.0012079879189072643,0.0011551228895938144,0.0015158995037987595,0.0011882138361574944,0.0012473026295440428,0.0013582911865841136,0.001305481669027457,0.0011847540761296949,0.0011120708903285825,0.001215770124815271,0.001162879987249986,0.0013914546923718461,0.0013505479680686703,0.0012015755609381584,0.0012751752818631547,0.001375444238741708,0.001524534154157038,0.0013746545855739308,0.0015145771402083898,0.0011609640474436812,0.0013379843327616474,0.0013434493219479258,0.0015224043867034878,0.0012015755609381584,0.0011491362938846573,0.001175880405916865,0.0011213200757605331,0.0012834066196901822,0.001337061302171409,0.0011590327183978125,0.0011703946355047423,0.0011647807811286943,0.0011366964937358647,0.0011097019137919658,0.0012739760316291208,0.0011551228895938144,0.0013582911865841136,0.0011097019137919658,0.0011097019137919658,0.0012391047046061208,0.001313773841560307,0.0012834066196901822,0.0012751752818631547,0.00129359187207408,0.0013565918920664657,0.0014619149115834332,0.0014064653087630435,0.0013117274532639008,0.001223308333814104,0.0013470248402256452,0.001270341969909396,0.001257815743314606,0.0011450607865972342,0.0012306173820790087,0.0011609640474436812,0.00147736435744238,0.0012799133499175744,0.0013033631604025314,0.0012565264685180052,0.0011590327183978125,0.001244600925013833,0.001294697387462821,0.001367428524041534,0.001375444238741708,0.0013127528244275,0.0014345550522916017,0.0012432386031062163,0.0015946593459025776,0.0014370086365760625,0.0012432386031062163,0.001206400789887513,0.001285707586277687,0.001259098141946273,0.0011471071748936402,0.001175880405916865,0.0015614177435846154,0.0011590327183978125,0.0011144167545305364,0.001375444238741708,0.0014231931351846717,0.0015888882887176389,0.001162879987249986,0.0012891182700376397,0.0016067074893703908,0.001267888385624935,0.001327630714110348,0.0012111310901158168,0.0012654095062113468,0.0013361347146144257,0.0013198105395457657,0.0014357849740192013,0.0011949875002403854,0.001175880405916865,0.001361654166907052,0.0012787375569952492,0.001426403452211444,0.0011388150023607902,0.0011794692661751384,0.001162879987249986,0.0011812438068750566,0.0011830053471600878,0.0012565264685180052,0.0011511484326014198,0.0011966515150024892,0.0014904190842232067,0.001394387035707636,0.0011491362938846573,0.0011366964937358647,0.0012247880257051796,0.0011213200757605331,0.001313773841560307,0.0012751752818631547,0.001306533964682824,0.0013624876137501131,0.0011491362938846573,0.0011830053471600878,0.0011258145836939113,0.0011345591536762673,0.0016862738502315153,0.0012666521403645213,0.0013452437270927706,0.001285707586277687,0.0011812438068750566,0.0011864901787872512,0.0013936572956225403,0.0012291732385578207,0.001218813825880726,0.001153143872879099,0.001252616639714007,0.001518087409463028,0.0016045889807454652,0.001525380807051097,0.0011235778310668576,0.0011366964937358647,0.0012691183073525348,0.0011570857508898733,0.0012218194796857695,0.001299069311058351,0.001177681531742962,0.001372269946126617,0.0012111310901158168,0.0011511484326014198,0.0014057713712727876,0.0013847231716899013,0.0011324026443916843,0.001301225820342934,0.0011213200757605331,0.0014085351853053883,0.0011882138361574944,0.0011258145836939113,0.0014591479170272448,0.0011345591536762673,0.0011302266189207766,0.0012913654749315768,0.0012727707700906081,0.001177681531742962,0.001286849864784531,0.0011830053471600878,0.0013899750004807707,0.0015799633773381833,0.0012432386031062163,0.0013352045425705423,0.0013914546923718461,0.0014043774591170164,0.001361654166907052,0.001316811134663458,0.0011280307207961542,0.001206400789887513,0.0011703946355047423,0.001191624519917447,0.0014092212033840934,0.0012291732385578207,0.0012048031150826467,0.0012957978432668624,0.0011258145836939113,0.0011409150084907293,0.001306533964682824,0.0011190409196110203,0.001426403452211444,0.0011213200757605331,0.0012203213491478939,0.0011491362938846573,0.001341641424908427,0.001153143872879099,0.0011647807811286943,0.0013323922394764764,0.0013505479680686703,0.0012512991066997827,0.0013295466539166528,0.0015483364744887697,0.001245955571827733,0.0013972840487456754,0.00132375241755654,0.0011097019137919658,0.0011983040931466695,0.0012377107924503496,0.0012391047046061208,0.0012968932855874434,0.0011144167545305364,0.0012691183073525348,0.0011703946355047423,0.0011345591536762673,0.001223308333814104,0.001259098141946273,0.001175880405916865,0.0011812438068750566,0.0013730674565541798,0.0011471071748936402,0.0012565264685180052,0.0013574430404719804,0.0013086248402360097,0.0011864901787872512,0.0012616426013884914,0.0017099572106151302,0.0011590327183978125,0.0011450607865972342,0.001245955571827733,0.001218813825880726,0.001206400789887513,0.001162879987249986,0.0012031947534103602,0.0014619149115834332,0.0016683047695613515,0.0011366964937358647,0.0013188148893716603,0.0012539269926761687,0.0011703946355047423,0.0011882138361574944,0.0011144167545305364,0.0011966515150024892,0.0011812438068750566,0.001257815743314606,0.0011685378759038756,0.0013323922394764764,0.0012539269926761687,0.0011450607865972342,0.0012048031150826467,0.0011609640474436812,0.0011491362938846573,0.0012902444977335244,0.0011590327183978125,0.0012822478262498876,0.0012079879189072643,0.0011120708903285825,0.001390715984652636,0.0012691183073525348,0.001162879987249986,0.001177681531742962,0.0011471071748936402,0.001175880405916865,0.0014494945877057146,0.001153143872879099,0.001191624519917447,0.0012203213491478939,0.0011511484326014198,0.001175880405916865,0.0013086248402360097,0.001259098141946273,0.0012262586674363473,0.0011120708903285825,0.001206400789887513,0.0011167399530235154,0.0011213200757605331,0.001306533964682824,0.0013434493219479258,0.00132375241755654,0.001267888385624935,0.001327630714110348,0.0011450607865972342,0.0011258145836939113,0.0011949875002403854,0.0012348984893562837,0.0011144167545305364,0.0011190409196110203,0.001347910473541723,0.001270341969909396,0.001193311889463065,0.0012432386031062163,0.0013247278719307797,0.0011999453908060607,0.0012377107924503496,0.0013801284616884338,0.0012968932855874434,0.0011703946355047423,0.001189925225399799,0.0011491362938846573,0.0011830053471600878,0.0012565264685180052,0.0011388150023607902,0.001189925225399799,0.0011847540761296949,0.0011722371669229085,0.001162879987249986,0.0012616426013884914,0.0012641604167868594,0.0013086248402360097,0.0012418685186387215,0.0012691183073525348,0.0012432386031062163,0.0013096634991879286,0.0011551228895938144,0.0014029754191476496,0.0011213200757605331,0.0011491362938846573,0.0012277203690409693,0.001162879987249986,0.001215770124815271,0.0013188148893716603,0.001361654166907052,0.0011609640474436812,0.001341641424908427,0.0012552302434193853,0.0012654095062113468,0.0011703946355047423,0.001206400789887513,0.0011409150084907293,0.0011864901787872512,0.001153143872879099,0.0012512991066997827,0.0012048031150826467,0.0015051111893744904,0.0011345591536762673,0.001375444238741708,0.001286849864784531,0.0012095646404487754,0.0012763685804586325,0.0011097019137919658,0.0013147905414830432,0.0012432386031062163,0.0011722371669229085,0.0014029754191476496,0.0012787375569952492,0.0011235778310668576,0.0011280307207961542,0.0016033699709179145,0.0011120708903285825,0.0013582911865841136,0.0013706669456996841,0.001153143872879099,0.00129359187207408,0.00132375241755654,0.0011235778310668576,0.001177681531742962,0.0011740656865597422,0.0011388150023607902,0.0012277203690409693,0.0011551228895938144,0.0011812438068750566,0.0011144167545305364,0.0012031947534103602,0.0012629048046726248,0.0011491362938846573,0.001299069311058351,0.0011511484326014198,0.0012499743145138677,0.0014619149115834332,0.001153143872879099,0.0011120708903285825,0.0011471071748936402,0.0011167399530235154,0.0014716204558476763,0.0013461359328418054,0.0011609640474436812,0.0012565264685180052,0.001175880405916865,0.0011570857508898733,0.0012348984893562837,0.0013582911865841136,0.0011213200757605331,0.0011235778310668576,0.0013746545855739308,0.0012277203690409693,0.0012565264685180052,0.001245955571827733,0.0011450607865972342,0.0011190409196110203,0.0012015755609381584,0.0011097019137919658,0.0011144167545305364,0.0012751752818631547,0.0013854804925473925,0.001267888385624935,0.001206400789887513,0.0011302266189207766,0.001153143872879099,0.0011471071748936402,0.001193311889463065,0.0012348984893562837,0.0011280307207961542,0.0011302266189207766,0.0011685378759038756,0.0011097019137919658,0.001252616639714007,0.0013641458904847137,0.001153143872879099,0.0012629048046726248,0.0012499743145138677,0.001244600925013833,0.0011167399530235154,0.0011190409196110203,0.0011144167545305364,0.0011703946355047423,0.0012126874008790397,0.0011144167545305364,0.0012391047046061208,0.001191624519917447,0.0011345591536762673,0.0011647807811286943,0.0014225458961034671,0.0014244824099812728,0.0015717420919442553,0.0011609640474436812,0.0011830053471600878,0.001223308333814104,0.0013514207427963614,0.001189925225399799,0.0013247278719307797,0.0013487928568199753,0.0013086248402360097,0.0011740656865597422,0.0011740656865597422,0.0011144167545305364,0.001206400789887513,0.0011324026443916843,0.001162879987249986,0.001191624519917447,0.0012968932855874434,0.001294697387462821,0.0011280307207961542,0.001432698292690735,0.0013425470725835316,0.0011740656865597422,0.0011812438068750566,0.0011190409196110203,0.0012404905826414547,0.0019379223140787987,0.0015678779607074555,0.0012822478262498876,0.0012031947534103602,0.001214233703143708,0.0011722371669229085,0.001297983759898572,0.0011366964937358647,0.0012247880257051796,0.0014923660517311458,0.0013333333333333333,0.0012031947534103602,0.0011144167545305364,0.0011280307207961542,0.0011983040931466695,0.0011983040931466695,0.0012391047046061208,0.0011570857508898733,0.0011366964937358647,0.0011388150023607902,0.002386117631904833,0.0012654095062113468,0.0011685378759038756,0.0019189545993254062,0.0015741691409780704,0.0012095646404487754,0.0011144167545305364,0.0011647807811286943,0.0012603737373701788,0.0014382261033466018,0.0017073939725200848,0.001142996832521262,0.0011794692661751384,0.0012473026295440428,0.0011167399530235154,0.0011280307207961542,0.0012203213491478939,0.0015675235771893906,0.0011685378759038756,0.0014363975837097677,0.0012172967913628506,0.0012654095062113468,0.0014849821806283403,0.001730437337762486,0.0011258145836939113,0.0015236845095504248,0.001153143872879099,0.001175880405916865,0.001142996832521262,0.001177681531742962,0.0012031947534103602,0.0011966515150024892,0.0013862354356274783,0.00132375241755654,0.001387738247853717,0.0011409150084907293,0.001175880405916865,0.001206400789887513,0.001175880405916865,0.001292481250360578,0.0011258145836939113,0.0011213200757605331,0.0011409150084907293,0.001162879987249986,0.0011570857508898733,0.0012291732385578207,0.0011685378759038756,0.0012822478262498876,0.0013117274532639008,0.0014923660517311458,0.0015748581075625727,0.0016968587094775944,0.0012629048046726248,0.0015974937501201927,0.0011703946355047423,0.0011511484326014198,0.0011388150023607902,0.0011324026443916843,0.0011551228895938144,0.0011280307207961542,0.0012203213491478939,0.001153143872879099,0.0013178150992680865,0.0014173042896659584,0.0014212461676767327,0.002115290586528546,0.0016058018416952864,0.001782538048582625,0.0017938687278024,0.0017641604167868594,0.0011882138361574944,0.0021280307207961545,0.001811984206276531,0.002001171211148995,0.0018994341301969764,0.0017035978535441343,0.001191624519917447,0.0017558792294368004,0.001893016951240141,0.0013147905414830432,0.0015946593459025776,0.0017331239486563655,0.0018144097826172842,0.0018001499833200508,0.0016310449379414109,0.0011830053471600878,0.002136796216903181,0.0018070583905689679,0.0017467983668493028,0.0016974792238180472,0.0013314474477953608,0.0014430352471252992,0.00147736435744238,0.0017913654749315765,0.0020160642890754417,0.0013641458904847137,0.001963833034820069,0.001517214634735337,0.0018458017435267421,0.0016733816201709528,0.0015397341232208464,0.00201073432698184,0.0017348984893562837,0.0017552302434193855,0.0019207569525059747,0.001359136351508684,0.0013198105395457657,0.0018855749901605095,0.0011190409196110203,0.0013208020839342966,0.0017452792023986742,0.0017544165398560943,0.001850219859070546,0.0016377580812151525,0.001411945869065341,0.0014651938147591697,0.0011491362938846573,0.0019327759446124437,0.001551389838356568,0.0012334799060470308,0.001162879987249986,0.001796346188255893,0.0013086248402360097,0.0017579764176764026,0.0017277203690409693,0.0016666666666666668,0.0011812438068750566,0.001492850340260381,0.0014884562229271479,0.0016021447495485068,0.0014454042236619158,0.0015249578532507803,0.0014186254422945631,0.0016332136035869871,0.001506028935425581,0.0014869734895124151,0.0014591479170272448,0.0018045571173723528,0.0013086248402360097,0.0019379223140787987,0.0015479520632582415,0.0015393356986500141,0.0011167399530235154,0.0012565264685180052,0.001359136351508684,0.0011409150084907293,0.0011167399530235154,0.001339819831548717,0.0013801284616884338,0.0016147083848555297,0.0011120708903285825,0.0015249578532507803,0.0012603737373701788,0.0014270404040368453,0.0011235778310668576,0.0011740656865597422,0.0011450607865972342,0.0015621441766854314,0.0011167399530235154,0.0013980028808908559,0.0013127528244275,0.0011120708903285825,0.0015119103937594372,0.0011794692661751384,0.0011491362938846573,0.001245955571827733,0.001626925205407413,0.0015946593459025776,0.001315802960551324,0.0012031947534103602,0.0011740656865597422,0.0016079097377424867,0.0011258145836939113,0.0013770158075616964,0.0014225458961034671,0.001367428524041534,0.0013198105395457657,0.001316811134663458,0.001214233703143708,0.0018320383774943147,0.0011167399530235154,0.001421896910086052,0.0013936572956225403,0.0012739760316291208,0.0015185226117057846,0.0011666666666666668,0.0014854815560383268,0.0011830053471600878,0.0014179657733664494,0.0016488835884767607,0.0012499743145138677,0.0014270404040368453,0.0011258145836939113,0.0011812438068750566,0.0011366964937358647,0.0013487928568199753,0.001325699385064479,0.0012629048046726248,0.0016432557977304422,0.0012512991066997827,0.0011190409196110203,0.0014388325328571596,0.0014742483418240626,0.001245955571827733,0.00138320133639788,0.0011258145836939113,0.0014251244642305406,0.0011609640474436812,0.0013624876137501131,0.0012845598553468138,0.0012691183073525348,0.0011302266189207766,0.0012015755609381584,0.0013624876137501131,0.0011120708903285825,0.0015962381380059583,0.0011450607865972342,0.0013323922394764764,0.001189925225399799,0.001368242227604825,0.0011213200757605331,0.001395114567801203,0.0011551228895938144,0.0012799133499175744,0.0015262244892271406,0.0011345591536762673,0.0011551228895938144,0.001359136351508684,0.001142996832521262,0.001376231307115442,0.0011097019137919658,0.0012348984893562837,0.001352290361008198,0.0011511484326014198,0.0013958399052244877,0.001297983759898572,0.001257815743314606,0.0011144167545305364,0.0013352045425705423,0.0011213200757605331,0.0011666666666666668,0.001640129653932509,0.0012404905826414547,0.0011609640474436812,0.0011647807811286943,0.0015198235121205844,0.0012048031150826467,0.0012079879189072643,0.001244600925013833,0.0012654095062113468,0.0011345591536762673,0.0011647807811286943,0.0011590327183978125,0.0011511484326014198,0.001306533964682824,0.0012247880257051796,0.0015417164029843887,0.0011812438068750566,0.001214233703143708,0.0012565264685180052,0.0014057713712727876,0.0012031947534103602],\"subreddit\":[\"politics\",\"trees\",\"pics\",\"Metal\",\"AskReddit\",\"tattoos\",\"redditguild\",\"WTF\",\"cocktails\",\"funny\",\"gaming\",\"Fitness\",\"mcservers\",\"TeraOnline\",\"GetMotivated\",\"itookapicture\",\"Paleo\",\"trackers\",\"Minecraft\",\"gainit\",\"IAmA\",\"AdviceAnimals\",\"movies\",\"smallbusiness\",\"Republican\",\"todayilearned\",\"IWantOut\",\"DIY\",\"Frugal\",\"relationships\",\"atheism\",\"Jeep\",\"Music\",\"grandrapids\",\"reddit.com\",\"videos\",\"yoga\",\"bestof\",\"ShitRedditSays\",\"gifs\",\"technology\",\"aww\",\"CrohnsDisease\",\"birthcontrol\",\"TwoXChromosomes\",\"Mustang\",\"4x4\",\"CCW\",\"dogpictures\",\"Cartalk\",\"space\",\"cars\",\"Economics\",\"Libertarian\",\"240sx\",\"UserCars\",\"Autos\",\"formula1\",\"bodybuilding\",\"Drifting\",\"Justrolledintotheshop\",\"gadgets\",\"business\",\"gamernews\",\"worldnews\",\"carporn\",\"motorsports\",\"Nissan\",\"startrek\",\"Flagstaff\",\"Rainmeter\",\"fffffffuuuuuuuuuuuu\",\"pcgaming\",\"screenshots\",\"truegaming\",\"Guildwars2\",\"gonewild\",\"gamingsuggestions\",\"Games\",\"dubstep\",\"skyrim\",\"SuggestALaptop\",\"battlefield3\",\"starcraft\",\"creepy\",\"darksouls\",\"books\",\"mw3\",\"hentai\",\"halo\",\"magicTCG\",\"swtor\",\"SOPA\",\"anime\",\"IndieGaming\",\"Jokes\",\"wow\",\"Design\",\"Android\",\"GameDeals\",\"playitforward\",\"pokemon\",\"Clarinet\",\"festivals\",\"SubredditDrama\",\"InternetAMA\",\"aves\",\"cringe\",\"AmISexy\",\"electricdaisycarnival\",\"ForeverAlone\",\"RedHotChiliPeppers\",\"tifu\",\"civ\",\"gameofthrones\",\"explainlikeimfive\",\"soccer\",\"germany\",\"seduction\",\"circlebroke\",\"sto\",\"4chan\",\"circlejerk\",\"apple\",\"cats\",\"minimalism\",\"beermoney\",\"Frisson\",\"beertrade\",\"beer\",\"batman\",\"BBQ\",\"beerporn\",\"Homebrewing\",\"2012Elections\",\"Parenting\",\"fresno\",\"picrequests\",\"loseit\",\"Marriage\",\"Mommit\",\"VirginiaTech\",\"loseit_classic\",\"RedditLaqueristas\",\"LadyBoners\",\"GradSchool\",\"CalPoly\",\"Conservative\",\"toosoon\",\"dune\",\"caps\",\"MURICA\",\"Christianity\",\"scifi\",\"hockey\",\"StarWars\",\"worldpolitics\",\"NoFap\",\"malefashionadvice\",\"Military\",\"comicbooks\",\"AskWomen\",\"writing\",\"MensRights\",\"community\",\"ask\",\"sex\",\"Connecticut\",\"Favors\",\"fifthworldproblems\",\"keto\",\"BeardPorn\",\"FanTheories\",\"DebateAnAtheist\",\"ruby\",\"beards\",\"comics\",\"doctorwho\",\"firstworldproblems\",\"TheLastAirbender\",\"ladybonersgw\",\"AskMen\",\"homestuck\",\"custommagic\",\"DebateAChristian\",\"relationship_advice\",\"rpg\",\"tf2\",\"OneY\",\"DebateReligion\",\"nosleep\",\"buildapc\",\"frugalmalefashion\",\"buildapcsales\",\"thewalkingdead\",\"badcompany2\",\"personalfinance\",\"Dexter\",\"malelivingspace\",\"halloween\",\"buffy\",\"zombies\",\"horror\",\"GunPorn\",\"guns\",\"Firearms\",\"Tgirls\",\"Boobies\",\"reportthespammers\",\"redditrequest\",\"dirtysmall\",\"redheads\",\"grool\",\"ginger\",\"AnythingGoesPics\",\"modhelp\",\"cumsluts\",\"NSFW_GIF\",\"nsfwhardcore\",\"TinyTits\",\"thick\",\"progresspics\",\"IASIP\",\"tomhiddleston\",\"breakingbad\",\"MyChemicalRomance\",\"harrypotter\",\"Health\",\"shamelessplug\",\"LifeProTips\",\"tipofmytongue\",\"metalmusicians\",\"wicked_edge\",\"AbandonedPorn\",\"photography\",\"C25K\",\"HDR\",\"running\",\"Nirvana\",\"SkyPorn\",\"urbanexploration\",\"AskHistorians\",\"FloridaGators\",\"pearljam\",\"ireland\",\"AndroidQuestions\",\"baseball\",\"GNV\",\"fantasybaseball\",\"devils\",\"ufl\",\"sports\",\"AskPhotography\",\"redsox\",\"battlestations\",\"applehelp\",\"iphone\",\"AMA\",\"somethingimade\",\"ExpectationVsReality\",\"audiophile\",\"mildlyinteresting\",\"hometheater\",\"britishproblems\",\"cordcutters\",\"self\",\"techsupportgore\",\"techsupport\",\"xbox360\",\"ipad\",\"0x10c\",\"dbz\",\"forhire\",\"recordthis\",\"Diablo\",\"rpg_gamers\",\"Torchlight\",\"Sherlock\",\"netflix\",\"FinalFantasy\",\"coheedandcambria\",\"firefly\",\"digimon\",\"PS3\",\"FullmetalAlchemist\",\"ffxiv\",\"bleach\",\"webcomics\",\"yugioh\",\"sandy\",\"television\",\"redditcasual\",\"fantasyfootball\",\"jailbreak\",\"Invites\",\"letsplay\",\"SteamGifts\",\"freebies\",\"secretsanta\",\"nfl\",\"poppunkers\",\"RedditThroughHistory\",\"DoesAnybodyElse\",\"Rateme\",\"buccaneers\",\"GhettoJerk\",\"jacksonville\",\"olympics\",\"csshelp\",\"TrueAtheism\",\"Jaguars\",\"CHIBears\",\"RotMG\",\"Braveryjerk\",\"TheoryOfReddit\",\"amiugly\",\"deaf\",\"cannabis\",\"askscience\",\"Dallas\",\"evolution\",\"news\",\"texas\",\"Foodforthought\",\"Marijuana\",\"entertainment\",\"environment\",\"martialarts\",\"linguistics\",\"medicine\",\"cowboys\",\"medical\",\"science\",\"subaru\",\"BarefootRunning\",\"programming\",\"ragecomics\",\"mylittlepony\",\"falloutequestria\",\"MLPLounge\",\"mylittlelistentothis\",\"MyLittleSupportGroup\",\"mylittleandysonic1\",\"leagueoflegends\",\"PloungeMafia\",\"metacirclejerk\",\"ainbow\",\"Dogtraining\",\"Meditation\",\"Cascadia\",\"gaybros\",\"bicycling\",\"nottheonion\",\"whichbike\",\"travel\",\"bikecommuting\",\"dogs\",\"engineering\",\"duolingo\",\"Brazil\",\"bodyweightfitness\",\"QuotesPorn\",\"realasians\",\"TrueReddit\",\"Animesuggest\",\"Korean\",\"SteamTrade\",\"LearnUselessTalents\",\"InsightfulQuestions\",\"Documentaries\",\"Tokyo\",\"history\",\"photoshopbattles\",\"mac\",\"nyc\",\"Judaism\",\"WeAreTheMusicMakers\",\"lego\",\"occupywallstreet\",\"BuyItForLife\",\"socialism\",\"vinyl\",\"gamedev\",\"netsec\",\"Ubuntu\",\"linux\",\"drunk\",\"web_design\",\"PixelArt\",\"firefox\",\"Romania\",\"FIFA12\",\"OperationGrabAss\",\"FIFA\",\"EarthPorn\",\"shittyadvice\",\"reddevils\",\"exmormon\",\"firstworldanarchists\",\"Images\",\"Fallout\",\"RandomActsOfGaming\",\"HalfLife\",\"Makemeagif\",\"oregon\",\"EmmaWatson\",\"Piracy\",\"hcfactions\",\"gravityfalls\",\"HistoryPorn\",\"MineZ\",\"nanowrimo\",\"vexillology\",\"Dreams\",\"answers\",\"gaymers\",\"rant\",\"Paranormal\",\"asexuality\",\"fantasywriters\",\"depression\",\"memes\",\"gay\",\"Sonsofanarchy\",\"jobs\",\"agnostic\",\"Nerf\",\"reddeadredemption\",\"newjersey\",\"SquaredCircle\",\"gentlemanboners\",\"shittyaskscience\",\"FloridaTrees\",\"see\",\"cripplingalcoholism\",\"roosterteeth\",\"tall\",\"falcons\",\"Netherlands\",\"geology\",\"Acadiana\",\"electronicmusic\",\"POLITIC\",\"Amateur\",\"LegalTeens\",\"porn\",\"RealGirls\",\"gamingpc\",\"UVA\",\"wikipedia\",\"listentothis\",\"nba\",\"asmr\",\"Nationals\",\"geek\",\"Charlotte\",\"offbeat\",\"poker\",\"happy\",\"hiphopheads\",\"SteamGameSwap\",\"ColoradoSprings\",\"49ers\",\"HIMYM\",\"tf2trade\",\"runescape\",\"actuallesbians\",\"serbia\",\"UniversityofReddit\",\"lgbt\",\"dykesgonemild\",\"tax\",\"AskCulinary\",\"offmychest\",\"food\",\"KitchenConfidential\",\"kungfu\",\"childfree\",\"AskScienceFiction\",\"GuildWars\",\"Clemson\",\"reactiongifs\",\"Borderlands2\",\"SRSBusiness\",\"SRSMen\",\"Feminism\",\"SRSMeta\",\"EnoughPaulSpam\",\"opensource\",\"SRSMythos\",\"SRSDiscussion\",\"longboarding\",\"lifehacks\",\"lacrosse\",\"airsoft\",\"forwardsfromgrandma\",\"Offensive_Wallpapers\",\"Bioshock\",\"metalgearsolid\",\"Steam\",\"truetf2\",\"ronpaul\",\"TWD\",\"Internet_Box\",\"Yogscast\",\"simpleliving\",\"SkincareAddiction\",\"survivor\",\"dayz\",\"Chargers\",\"facepalm\",\"KingdomHearts\",\"diablo3\",\"eyes\",\"ukulele\",\"rap\",\"zelda\",\"NetflixBestOf\",\"codbo\",\"MMA\",\"VideoEditing\",\"blackops2\",\"Guitar\",\"shutupandtakemymoney\",\"audioengineering\",\"Filmmakers\",\"Cooking\",\"nintendo\",\"ragenovels\",\"Hungergames\",\"PandR\",\"52weeksofcooking\",\"gameswap\",\"alcohol\",\"venturebros\",\"awesome\",\"3DS\",\"iphonehelp\",\"PostHardcore\",\"microsoft\",\"CrusaderKings\",\"summonerschool\",\"LeagueOfMemes\",\"CircLoLjerk\",\"TeamRedditTeams\",\"ImGoingToHellForThis\",\"LadiesofScience\",\"MINI\",\"rangers\",\"GrandTheftAutoV\",\"xbmc\",\"DepthHub\",\"AlienBlue\",\"investing\",\"ladyladyboners\",\"taiwan\",\"education\",\"asoiaf\",\"Thetruthishere\",\"electronic_cigarette\",\"CarAV\",\"florida\",\"RageOfBahamut\",\"DealsReddit\",\"fantasybball\",\"minnesotavikings\",\"androidapps\",\"MorbidReality\",\"kateupton\",\"microgrowery\",\"eatsandwiches\",\"Buddhism\",\"oklahoma\",\"MMFB\",\"tulsa\",\"wallpaper\",\"Nepal\",\"piercing\",\"photoshop\",\"reptiles\",\"hardware\",\"flying\",\"Physics\",\"whatisthisthing\",\"WikiLeaks\",\"RealEstate\",\"Pennsylvania\",\"Pitt\",\"abletonlive\",\"law\",\"pittsburgh\",\"conspiracy\",\"bigboobproblems\",\"mangonewild\",\"gonewildcurvy\",\"bigdickproblems\",\"bdsm\",\"sooners\",\"Borderlands\",\"patientgamers\",\"SomebodyMakeThis\",\"estimation\",\"Punny\",\"AskSocialScience\",\"eCards\",\"subredditoftheday\",\"ShittyLifeProTips\",\"DestructionPorn\",\"sydney\",\"YouShouldKnow\",\"wallpapers\",\"legaladvice\",\"TrollXChromosomes\",\"SRSWomen\",\"MakeupAddiction\",\"girlsinyogapants\",\"feet\",\"booksuggestions\",\"mfw\",\"CelebFakes\",\"shittyadviceanimals\",\"stockings\",\"desktops\",\"voluptuous\",\"spacedicks\",\"nsfw_gifs\",\"milf\",\"gif\",\"WomenOfColor\",\"Celebs\",\"SilkRoad\",\"asktrees\",\"treemusic\",\"chiptunes\",\"drawing\",\"SF4\",\"gamemaker\",\"Vocaloid\",\"uktrees\",\"dataisbeautiful\",\"conspiratard\",\"languagelearning\",\"SRDBroke\",\"NeutralPolitics\",\"RedditDayOf\",\"circlebroke2\",\"trance\",\"Virginia\",\"MapPorn\",\"Gamingcirclejerk\",\"PoliticalDiscussion\",\"Colorado\",\"GreenParty\",\"EFLcomics\",\"CircleMusic\",\"reloading\",\"gats\",\"knives\",\"Trombone\",\"defaultgems\",\"JusticePorn\",\"TrueFilm\",\"moped\",\"BorderCollie\",\"islam\",\"minnesota\",\"Insurance\",\"oblivion\",\"anonymous\",\"dishonored\",\"discgolf\",\"literature\",\"Minneapolis\",\"stopsmoking\",\"NigelThornberry\",\"Planetside\",\"backpacking\",\"teenagers\",\"newreddits\",\"redditlogos\",\"deutschland\",\"ADHD\",\"OkCupid\",\"smnc\",\"SuicideWatch\",\"Diablo3Strategy\",\"trumpet\",\"Metalcore\",\"KSU\",\"Boxer\",\"ufc\",\"stlouisblues\",\"Fishing\",\"Pieces\",\"woahdude\",\"regularshow\",\"zen\",\"feminisms\",\"IWantToLearn\",\"nutrition\",\"BostonSocialClub\",\"BTFC\",\"adventuretime\",\"ClopClop\",\"pokemonconspiracies\",\"gamegrumps\",\"mylittlehuman\",\"Supernatural\",\"mlpmature\",\"manga\",\"OnePiece\",\"overclocking\",\"24hoursupport\",\"networking\",\"snackexchange\",\"pcmods\",\"Astronomy\",\"ITcrowd\",\"boltedontits\",\"Stacked\",\"palegirls\",\"GirlswithGlasses\",\"happygirls\",\"hugeboobs\",\"Hotchickswithtattoos\",\"suicidegirls\",\"MilitaryPorn\",\"KarmaConspiracy\",\"pussy\",\"Cinemagraphs\",\"asshole\",\"nsfwoutfits\",\"anal\",\"carcrash\",\"Blowjobs\",\"curvy\",\"burstingout\",\"PrettyGirls\",\"ideasfortheadmins\",\"GirlswithNeonHair\",\"randomsexiness\",\"datgap\",\"SexyButNotPorn\",\"bikinis\",\"shorthairedhotties\",\"watchpeopledie\",\"HighHeels\",\"HumanPorn\",\"AsianHotties\",\"camwhores\",\"HairyPussy\",\"Bondage\",\"BustyPetite\",\"electricians\",\"InternetIsBeautiful\",\"casualiama\",\"drums\",\"superman\",\"philosophy\",\"Anarchism\",\"DebateaCommunist\",\"HistoricalWhatIf\",\"Liberal\",\"communism\",\"DCcomics\",\"ifyoulikeblank\",\"introvert\",\"psychology\",\"totalwar\",\"Demotivational\",\"ExposurePorn\",\"spaceporn\",\"Poetry\",\"AmericanHorrorStory\",\"FifthWorldPics\",\"GifSound\",\"Slender_Man\",\"shortscarystories\",\"FearMe\",\"piano\",\"whatsthisbug\",\"creepypasta\",\"creepy_gif\",\"metametacirclejerk\",\"Drugs\",\"Psychonaut\",\"nursing\",\"catpictures\",\"nugs\",\"Anxiety\",\"orangecounty\",\"Scotch\",\"architecture\",\"steelers\",\"DAE\",\"mctourney\",\"Awesomenauts\",\"mindcrack\",\"Terraria\",\"GalaxyNexus\",\"talesfromtechsupport\",\"TalesFromRetail\",\"Stretched\",\"knitting\",\"fairytail\",\"singapore\",\"Bass\",\"AndroidGaming\",\"classicalmusic\",\"China\",\"beijing\",\"MachinePorn\",\"EngineeringStudents\",\"AdamCarolla\",\"DotA2\",\"HeroesofNewerth\",\"Dota2Trade\",\"snowboarding\",\"surfing\",\"Barca\",\"Tf2Scripts\",\"TF2fashionadvice\",\"NewToTF2\",\"nuzlocke\",\"bindingofisaac\",\"ents\",\"mflb\",\"treecomics\",\"StonerEngineering\",\"AskModerators\",\"GaybrosGoneWild\",\"kzoo\",\"GaymersGoneMild\",\"uofm\",\"gaybrosgonemild\",\"tumblr\",\"sad\",\"HIFW\",\"drawsome\",\"malehairadvice\",\"learnprogramming\",\"EDC\",\"learnmath\",\"math\",\"guineapigs\",\"evedreddit\",\"dayton\",\"eveporn\",\"Eve\",\"minerapocalypse\",\"dating_advice\",\"ps3bf3\",\"BostonTerrier\",\"corgi\",\"allrages\",\"greenday\",\"nostalgia\",\"davidtennant\",\"fnv\",\"Rockband\",\"MMORPG\",\"Civcraft\",\"chrome\",\"tekkit\",\"video\",\"windows\",\"climbing\",\"ShouldIbuythisgame\",\"futurama\",\"webdev\",\"Loans\",\"creepyPMs\",\"CastleStory\",\"Random_Acts_Of_Pizza\",\"Random_Acts_Of_Amazon\",\"minecraftsuggestions\",\"feedthebeast\",\"evolutionReddit\",\"women\",\"cogsci\",\"energy\",\"privacy\",\"Archaeology\",\"cyberlaws\",\"Bad_Cop_No_Donut\",\"southpaws\",\"Trucks\",\"paintball\",\"counterstrike\",\"3dsFCswap\",\"vita\",\"Anarcho_Capitalism\",\"PoliticalHumor\",\"Mastiff\",\"PropagandaPosters\",\"OldSchoolCool\",\"Archery\",\"masseffect\",\"GTA\",\"cheatatmathhomework\",\"Deathcore\",\"facebook\",\"iosgaming\",\"help\",\"Dredmor\",\"xbox\",\"AirForce\",\"findareddit\",\"roguelikes\",\"assassinscreed\",\"browsers\",\"steamdeals\",\"Tribes\",\"AppHookup\",\"whatstheword\",\"worldbuilding\",\"Screenwriting\",\"WritersGroup\",\"progmetal\",\"progrockmusic\",\"LosAngeles\",\"mcpublic\",\"Morrowind\",\"gwu\",\"capstone\",\"Kayaking\",\"skiing\",\"Msstate\",\"Saints\",\"TopGear\",\"mississippi\",\"Toyota\",\"motorcycles\",\"LawSchool\",\"golf\",\"Watches\",\"sportsbook\",\"coins\",\"randomactsofkindness\",\"dayzlfg\",\"redstone\",\"RedditRescueForce\",\"mylittlefortress\",\"TF2LFT\",\"pkmntcg\",\"polandball\",\"Supplements\",\"INTP\",\"Hawken\",\"Assistance\",\"BPD\",\"LucidDreaming\",\"MinecraftCirclejerk\",\"GiftofGames\",\"l4d2\",\"spongebob\",\"HardcoreSMP\",\"StonerProTips\",\"glassheads\",\"bmx\",\"CannabisExtracts\",\"lostgeneration\",\"occult\",\"WhiteRights\",\"collapse\",\"overpopulation\",\"new_right\",\"softscience\",\"genetics\",\"conservatives\",\"sailormoon\",\"rupaulsdragrace\",\"yankees\",\"ween\",\"familyguy\",\"Lubbock\",\"youtubehaiku\",\"JoeRogan\",\"BlackMesaSource\",\"AFL\",\"ImaginaryLandscapes\",\"NBA2k\",\"indianapolis\",\"aviation\",\"Colorization\",\"misc\",\"CrazyIdeas\",\"PerfectTiming\",\"test\",\"ArtPorn\",\"botany\",\"pic\",\"whatsthisplant\",\"species\",\"DesignPorn\",\"BotanicalPorn\",\"RoomPorn\",\"waterporn\",\"AdPorn\",\"VietNam\",\"MacroPorn\",\"Awww\",\"VillagePorn\",\"CemeteryPorn\",\"InfrastructurePorn\",\"birdpics\",\"InteriorDesign\",\"herpetology\",\"fashion\",\"hinduism\",\"ArchitecturePorn\",\"AnimalPorn\",\"Ska\",\"Denton\",\"IDAP\",\"punk\",\"FortWorth\",\"metanarchism\",\"TheFacebookDelusion\",\"gaybears\",\"quotes\",\"acne\",\"UIUC\",\"actuary\",\"GeekTool\",\"ainbowdash\",\"violinist\",\"HomeworkHelp\",\"Gunners\",\"AllThingsTerran\",\"hardwareswap\",\"trapmuzik\",\"askminecraft\",\"Hiphopcirclejerk\",\"KingOfTheHill\",\"Frat\",\"dolan\",\"latin\",\"arabic\",\"Lawrence\",\"IndieFolk\",\"CollegeBasketball\",\"UniversityofKansas\",\"Modern_Family\",\"Moviesinthemaking\",\"ArianaGrande\",\"starlets\",\"JenniferLawrence\",\"Rift\",\"chemistry\",\"animenocontext\",\"9gag\",\"Instagram\",\"OpiatesRecovery\",\"REDDITORSINRECOVERY\",\"Etsy\",\"Graffiti\",\"showerbeer\",\"Dodge\",\"cableporn\",\"GlobalOffensive\",\"workaholics\",\"insects\",\"nexus4\",\"PokePorn\",\"peloton\",\"firewater\",\"Charcuterie\",\"triathlon\",\"195\",\"Maplestory\",\"pinkfloyd\",\"omegle\",\"FixedGearBicycle\",\"yiff\",\"Scrubs\",\"videography\",\"r4r\",\"tattoo\",\"classicrage\",\"operabrowser\",\"confession\",\"mississauga\",\"trailerparkboys\",\"ryerson\",\"argentina\",\"awwnime\",\"katawashoujo\",\"atheistvids\",\"lists\",\"Bundesliga\",\"Enhancement\",\"Owls\",\"lectures\",\"StandUpComedy\",\"Art\",\"Rammstein\",\"LANL_German\",\"windowshots\",\"MetalMemes\",\"berlin\",\"KerbalSpaceProgram\",\"hawkthorne\",\"lol\",\"hotties\",\"nsfw_wtf\",\"Faces\",\"Upskirt\",\"NSFWFunny\",\"spiders\",\"MLPdrawingschool\",\"AntiJokes\",\"scaredshitless\",\"shittyreactiongifs\",\"Michigan\",\"ModestMouse\",\"detroitlions\",\"mlb\",\"AnimalCrossing\",\"powerrangers\",\"supermoto\",\"Dualsport\",\"250r\",\"bikesgonewild\",\"minnesotatwins\",\"pornvids\",\"Redskins\",\"cigars\",\"LasVegas\",\"bostonceltics\",\"lotro\",\"truezelda\",\"datfeel\",\"skeptic\",\"religion\",\"AusFinance\",\"humanism\",\"GalaxyS3\",\"MtAugusta\",\"CivcraftExchange\",\"PostCollapse\",\"Catholicism\",\"TheSimpsons\",\"stopdrinking\",\"chillmusic\",\"needadvice\",\"ASU\",\"findfashion\",\"femalefashionadvice\",\"FancyFollicles\",\"GetEmployed\",\"Advice\",\"woodworking\",\"recipes\",\"auslaw\",\"hookah\",\"Cubs\",\"Pizza\",\"Breadit\",\"macsetups\",\"Dentistry\",\"wsu\",\"college\",\"ZombieSurvivalTactics\",\"Hunting\",\"southpark\",\"LaTeX\",\"bleachshirts\",\"nook\",\"cosplay\",\"DaftPunk\",\"ouya\",\"papercraft\",\"Playdate\",\"valve\",\"RandomKindness\",\"beatles\",\"ILiveIn\",\"folk\",\"urbanplanning\",\"Anthropology\",\"Bluegrass\",\"museum\",\"germanshepherds\",\"hiking\",\"askashittydoctor\",\"Indiana\",\"gratefuldead\",\"medicalschool\",\"Gwinnett\",\"GreenBayPackers\",\"nflcirclejerk\",\"askseddit\",\"treesgonewild\",\"cmu\",\"vaporents\",\"EmmaStone\",\"nyjets\",\"Portal\",\"androidthemes\",\"progressive\",\"DnD\",\"elianscript\",\"chicagotrees\",\"MovieSuggestions\",\"chicagoEDM\",\"aggies\",\"radiohead\",\"vegan\",\"dvdcollection\",\"askphilosophy\",\"triangle\",\"SRSFunny\",\"korea\",\"NCSU\",\"SRSMailbag\",\"Freethought\",\"sixwordstories\",\"graphic_design\",\"labor\",\"humor\",\"calvinandhobbes\",\"GaryJohnson\",\"bigbangtheory\",\"FilmIndustryLA\",\"boardgames\",\"ArtisanVideos\",\"gamecollecting\",\"3Dprinting\",\"analog\",\"CableManagement\",\"Massdrop\",\"lfg\",\"AskEngineers\",\"Xcom\",\"SpideyMeme\",\"LongboardBuilding\",\"Omaha\",\"arresteddevelopment\",\"psych\",\"lost\",\"InlandEmpire\",\"Glocks\",\"JRPG\",\"modclub\",\"gamemusic\",\"redditdev\",\"IndianaUniversity\",\"nova\",\"Entrepreneur\",\"orlando\",\"TexasRangers\",\"motorcitykitties\",\"Patriots\",\"Romney\",\"whitesox\",\"media\",\"eagles\",\"autism\",\"nhl\",\"economy\",\"weather\",\"obama\",\"CAKEWIN\",\"TimAndEric\",\"truecreepy\",\"rule34\",\"LearnJapanese\",\"photocritique\",\"bioinformatics\",\"maryland\",\"gamereviews\",\"GeekPorn\",\"crossdressing\",\"Madden\",\"DragonsDogma\",\"southafrica\",\"geocaching\",\"seinfeld\",\"kitchener\",\"Hair\",\"CampingandHiking\",\"Food_Pantry\",\"flash\",\"javascript\",\"metacanada\",\"BSG\",\"twincitiessocial\",\"til\",\"souleater\",\"Naruto\",\"buildapcforme\",\"aoe2\",\"Bacon\",\"PipeTobacco\",\"notinteresting\",\"nature\",\"wisconsin\",\"femmit\",\"democrats\",\"Baking\",\"Firefighting\",\"daddit\",\"mashups\",\"Aquariums\",\"olympia\",\"Libraries\",\"alcoholism\",\"homestead\",\"memphis\",\"UFOs\",\"UofT\",\"exmuslim\",\"OneParagraph\",\"BooksAMA\",\"GuessTheMovie\",\"Stargate\",\"Python\",\"PHP\",\"Coldplay\",\"WebGames\",\"Glitch_in_the_Matrix\",\"ftlgame\",\"Dublin\",\"okc\",\"origami\",\"comicswap\",\"skyrimmods\",\"nfffffffluuuuuuuuuuuu\",\"OFWGKTA\",\"buccos\",\"ImaginaryTechnology\",\"rockhounds\",\"Edmonton\",\"AdrenalinePorn\",\"fitnesscirclejerk\",\"Wordpress\",\"DenverBroncos\",\"hardbodies\",\"crossfit\",\"skateboarding\",\"curiosityrover\",\"climate\",\"Ultralight\",\"Hammocks\",\"Bushcraft\",\"AppalachianTrail\",\"Outdoors\",\"camping\",\"Survival\",\"Futurology\",\"Hawaii\",\"TinyHouses\",\"futurebeats\",\"futuregarage\",\"realdubstep\",\"admincraft\",\"hacking\",\"EDM\",\"Beatmatch\",\"relationship_tips\",\"Gaben\",\"DJs\",\"ihaveissues\",\"xxfitness\",\"Standup\",\"NewOrleans\",\"Lovecraft\",\"whoselineisitanyway\",\"Northwestern\",\"StanleyKubrick\",\"learnspanish\",\"software\",\"vegetarian\",\"AnythingGoesUltimate\",\"Ebay\",\"budgetfood\",\"Songwriters\",\"EA_NHL\",\"banana\",\"MultipleSclerosis\",\"BMW\",\"Audi\",\"fringe\",\"bristol\",\"typography\",\"design_critiques\",\"CrappyDesign\",\"gonewildaudio\",\"beagle\",\"penpals\",\"RandomActsOfPolish\",\"Ladybonersgonecuddly\",\"GoneWildPlus\",\"LeagueofLegendsMeta\",\"SkyrimPorn\",\"BabyBumps\",\"juicyasians\",\"nocontext\",\"Norway\",\"chemicalreactiongifs\",\"ontario\",\"Bonsai\",\"leafs\",\"PictureChallenge\",\"RESissues\",\"dubai\",\"graphicnovels\",\"melodicdeathmetal\",\"excel\",\"nashville\",\"DetroitRedWings\",\"stalker\",\"linux4noobs\",\"archlinux\",\"slowcooking\",\"gardening\",\"whatsthisbird\",\"EndlessWar\",\"DnB\",\"futurefunkairlines\",\"Techno\",\"House\",\"comedy\",\"intj\",\"rapecounseling\",\"Berserk\",\"mysterybox\",\"opieandanthony\",\"wilfred\",\"LiveFromNewYork\",\"Darts\",\"Finland\",\"tea\",\"Foofighters\",\"shreveport\",\"shittyaskreddit\",\"magicskyfairy\",\"MachineLearning\",\"greece\",\"Boxing\",\"Dodgers\",\"SFGiants\",\"Cardinals\",\"Braves\",\"firefall\",\"spiral_knights\",\"UCSC\",\"leaves\",\"nongolfers\",\"deism\",\"Nootropics\",\"premed\",\"popping\",\"CanadianForces\",\"russia\",\"blender\",\"ImaginaryMonsters\",\"biology\",\"ActionFigures\",\"PlantedTank\",\"Augusta\",\"GaState\",\"electrohouse\",\"postrock\",\"greenville\",\"geography\",\"warriors\",\"fcbayern\",\"Munich\",\"Equality\",\"NBASpurs\",\"Vegetarianism\",\"Miami\",\"tasker\",\"reddit_news\",\"htpc\",\"asustransformer\",\"Minecraft360\",\"highseddit\",\"DumpsterDiving\",\"lockpicking\",\"torrents\",\"PowerShell\",\"sysadmin\",\"homelab\",\"financialindependence\",\"SolidWorks\",\"SocialEngineering\",\"everymanshouldknow\",\"NotaMethAddict\",\"Basketball\",\"chess\",\"Database\",\"mandolin\",\"ar15\",\"fountainpens\",\"Nexus7\",\"neopets\",\"nin\",\"fasting\",\"rickygervais\",\"Rabbits\",\"AskGames\",\"shittyfoodporn\",\"radioreddit\",\"firstimpression\",\"thesims\",\"bostontrees\",\"saplings\",\"KansasCityChiefs\",\"kansascity\",\"baldursgate\",\"mylittlefanfic\",\"MW2\",\"CallOfDuty\",\"bonnaroo\",\"jhu\",\"teslore\",\"LongDistance\",\"iiiiiiitttttttttttt\",\"SaltLakeCity\",\"AnythingGoesNews\",\"Bikeporn\",\"AskAcademia\",\"Velo\",\"ads\",\"BicyclingCirclejerk\",\"shittingadvice\",\"ToolBand\",\"shroomers\",\"Floridar4r\",\"gonewildstories\",\"baconreader\",\"headphones\",\"RedditLaqueristaSwap\",\"antisrs\",\"BoardwalkEmpire\",\"EnoughLibertarianSpam\",\"oaklandraiders\",\"GearsOfWar\",\"pitbulls\",\"shittyama\",\"Shatter\",\"lakers\",\"Coffee\",\"steampunk\",\"whiskey\",\"experimentalmusic\",\"bayarea\",\"animation\",\"GirlGamers\",\"UCI\",\"comiccon\",\"meetup\",\"SRSGaming\",\"longrange\",\"UTAustin\",\"RioGrandeValley\",\"sanantonio\",\"chillstep\",\"microbiology\",\"labrats\",\"HailCorporate\",\"leangains\",\"rage\",\"Bitcoin\",\"malelifestyle\",\"finance\",\"Teachers\",\"iran\",\"rush\",\"stocks\",\"britishcolumbia\",\"eldertrees\",\"google\",\"hiphop\",\"Fantasy\",\"EnoughObamaSpam\",\"CanadaPolitics\",\"Green\",\"youtube\",\"TechNewsToday\",\"AskFeminists\",\"DippingTobacco\",\"sailing\",\"TrueBlood\",\"LSD\",\"DJSetups\",\"DJsCirclejerk\",\"GreekLife\",\"d3loot\",\"shanghai\",\"chinacirclejerk\",\"kpop\",\"Pareidolia\",\"DunderMifflin\",\"disney\",\"Charleston\",\"OnOff\",\"EDH\",\"UBC\",\"darknetplan\",\"AskACountry\",\"MLS\",\"udub\",\"ultimate\",\"DeadSpace\",\"doodleordie\",\"terriblefacebookmemes\",\"wii\",\"pickle\",\"Switzerland\",\"wedding\",\"AfterEffects\",\"linuxquestions\",\"computing\",\"gamingnews\",\"LoLCodeTrade\",\"scooters\",\"Smite\",\"longbeach\",\"California\",\"Adelaide\",\"ptsd\",\"ChronicPain\",\"alltheleft\",\"AmericanPolitics\",\"MMJ\",\"selfhelp\",\"makeupexchange\",\"Reformed\",\"spotify\",\"milwaukee\",\"farming\",\"revolutionNBC\",\"entwives\",\"FolkPunk\",\"Sprint\",\"SantaBarbara\",\"SDSU\",\"arduino\",\"AnimalRights\",\"Magic\",\"MontrealEnts\",\"computergraphics\",\"barefoot\",\"Volvo\",\"SlenderMan\",\"lds\",\"transhumanism\",\"Pottermore\",\"uwaterloo\",\"newhampshire\",\"ripcity\",\"Seahawks\",\"drupal\",\"eastside\",\"prowrestling\",\"tampabayrays\",\"wrestling\",\"moderatepolitics\",\"arizona\",\"Honda\",\"katyperry\",\"NASCAR\",\"Arkansas\",\"cad\",\"MechanicAdvice\",\"fixit\",\"ElPaso\",\"phoenix\",\"MTB\",\"unicycling\",\"Shortfilms\",\"howardstern\",\"acting\",\"Astros\",\"Texans\",\"beadsprites\",\"PenmanshipPorn\",\"earthbound\",\"AZCardinals\",\"UpliftingNews\",\"java\",\"cedarrapids\",\"drunkencookery\",\"modelmakers\",\"printSF\",\"crappymusic\",\"Transhuman\",\"robotics\",\"chomsky\",\"singularity\",\"SWORDS\",\"killingfloor\",\"customization\",\"GuildWarsDyeJob\",\"Toonami\",\"navy\",\"UCSD\",\"911truth\",\"editors\",\"prisonarchitect\",\"oculus\",\"windowsphone\",\"htc\",\"tightdresses\",\"consolerepair\",\"UGA\",\"guitarpedals\",\"WorldofTanks\",\"Thenewsroom\",\"movieclub\",\"startups\",\"allthingsprotoss\",\"starcraft_strategy\",\"SEO\",\"craigslist\",\"compsci\",\"spaceribs\",\"PSO2\",\"Gore\",\"soccercirclejerk\",\"country\",\"OaklandAthletics\",\"Hardcore\",\"liquiddnb\",\"90sHipHop\",\"classicfilms\",\"FL_Studio\",\"counter_strike\",\"edmproduction\",\"ThisIsOurMusic\",\"arma\",\"gmod\",\"makinghiphop\",\"trap\",\"windows8\",\"ArcherFX\",\"wheredidthesodago\",\"barista\",\"TheWarZ\",\"gamesell\",\"chelseafc\",\"tonightsdinner\",\"portugal\",\"treedibles\",\"Learnmusic\",\"postprocessing\",\"DeepSpaceNine\",\"bikewrench\",\"Brooklyn\",\"redditgetsdrawn\",\"longisland\",\"transpassing\",\"Proofreading\",\"ineedafavor\",\"REDDITEXCHANGE\",\"ITdept\",\"bipolar\",\"newfoundland\",\"SkyDiving\",\"weightroom\",\"DessertPorn\",\"bettafish\",\"P90X\",\"deadpool\",\"goldenretrievers\",\"spirituality\",\"cardfightvanguard\",\"AnimeFigures\",\"malaysia\",\"opiates\",\"askdrugs\",\"MobileAL\",\"howyoudoin\",\"alberta\",\"transit\",\"tacos\",\"musicians\",\"Jazz\",\"relationshipadvice\",\"Heavymind\",\"NYCbike\",\"trailers\",\"kickstarter\",\"astrophotography\",\"FortCollins\",\"Tekken\",\"paris\",\"poland\",\"synthesizers\",\"homeland\",\"proghouse\",\"hardstyle\",\"Slackline\",\"chemhelp\",\"cuboulder\",\"norge\",\"SFM\",\"bakchodi\",\"Purdue\",\"AnnArbor\",\"LV426\",\"ArtCrit\",\"explainlikeimjive\",\"csharp\",\"ShittyTechSupport\",\"fitmeals\",\"raisingkids\",\"vertical\",\"WWE\",\"Theatre\",\"Pottery\",\"CFL\",\"solotravel\",\"VegRecipes\",\"ems\",\"airsoftmarket\",\"redditblack\",\"teaching\",\"rotmgtradingpost\",\"VinylCollectors\",\"nyu\",\"LetsTalkMusic\",\"commandline\",\"Horses\",\"worstof\",\"fantasyfb\",\"LibertarianDebates\",\"dominion\",\"ShitPoliticsSays\",\"LeagueOfGiving\",\"timberwolves\",\"SNSD\",\"BL2Guns\",\"AsianLadyboners\",\"kpics\",\"HermitCraft\",\"nerdfighters\",\"meme\",\"Pets\",\"Columbus\",\"TheDarkTower\",\"stephenking\",\"mildlyinfuriating\",\"Alienware\",\"scuba\",\"MedalofHonor\",\"disability\",\"aspergers\",\"Occupy\",\"coversongs\",\"WestVirginia\",\"shakespeare\",\"learnpython\",\"bookexchange\",\"Boise\",\"MonsterHunter\",\"pathofexile\",\"uncharted\",\"Cricket\",\"ForeverAloneDating\",\"gopro\",\"forza\",\"industrialmusic\",\"wtfart\",\"howto\",\"ImaginaryCharacters\",\"es\",\"Diablo3Wizards\",\"LARP\",\"grammar\",\"futurepopmusic\",\"ShittyEarthPorn\",\"glitch_art\",\"badMovies\",\"snes\",\"ObscureMedia\",\"pinball\",\"MoviePosterPorn\",\"ecchi\",\"londonontario\",\"uspolitics\",\"SampleSize\",\"FlashGames\",\"classic4chan\",\"HVAC\",\"gallifreyan\",\"pebble\",\"Cyberpunk\",\"statistics\",\"youngatheists\",\"dwarffortress\",\"computers\",\"crafts\",\"castles\",\"minecraftseeds\",\"Palestine\",\"timbers\",\"Pokemongiveaway\",\"pokemontrades\",\"TreesFortress2\",\"deadmau5\",\"knifeparty\",\"skrillex\",\"BlackAtheism\",\"merchents\",\"MLPvectors\",\"Reprap\",\"UMD\",\"PhilosophyofScience\",\"grunge\",\"AcademicPhilosophy\",\"ArtHistory\",\"Stoicism\",\"Scholar\",\"sociology\",\"ancientrome\",\"truthfulteenopinions\",\"Unity3D\",\"tennis\",\"Blink182\",\"ProtectAndServe\",\"lotr\",\"NZTrees\",\"timetolegalize\",\"taekwondo\",\"onetruegod\",\"Marvel\",\"SLO\",\"kindle\",\"berkeley\",\"needamod\",\"LetsNotMeet\",\"parrots\",\"ThriftStoreHauls\",\"serialkillers\",\"Tempe\",\"WWU\",\"Bellingham\",\"SoundersFC\",\"Eugene\",\"GreenDawn\",\"KingkillerChronicle\",\"MechanicalKeyboards\",\"emacs\",\"linux_gaming\",\"politicalfactchecking\",\"perl\",\"xkcd\",\"jquery\",\"csun\",\"exchristian\",\"Thailand\",\"googleplus\",\"italy\",\"it\",\"bloomington\",\"TransSpace\",\"asktransgender\",\"transgamers\",\"dresdenfiles\",\"Magicdeckbuilding\",\"genderqueer\",\"couchsurfing\",\"transgender\",\"mead\",\"chicagofood\",\"torontoraptors\",\"chicagobulls\",\"bicycletouring\",\"lowcar\",\"Torontoevents\",\"DOTA\",\"textpals\",\"dykesgonewild\",\"dirtypenpals\",\"Dachshund\",\"jmu\",\"shrooms\",\"DrugNerds\",\"chubby\",\"government\",\"Alabama\",\"dating\",\"fsu\",\"kol\",\"diabetes\",\"asoiafcirclejerk\",\"madmen\",\"Zappa\",\"KDRAMA\",\"resumes\",\"glutenfree\",\"Fibromyalgia\",\"Vindictus\",\"PocketPlanes\",\"chicagobeer\",\"MvC3\",\"gonenatural\",\"NSFWIAMA\",\"marchingband\",\"Cumberbitches\",\"django\",\"appletv\",\"Sexy\",\"NYGiants\",\"wine\",\"NewYorkMets\",\"NYKnicks\",\"HuntsvilleAlabama\",\"Winnipeg\",\"Spiderman\",\"aSongOfMemesAndRage\",\"electronics\",\"consulting\",\"neuroscience\",\"PastAndPresentPics\",\"snakes\",\"Colombia\",\"Transmogrification\",\"LSU\",\"batonrouge\",\"malegrooming\",\"japanese\",\"AdventureRacing\",\"Huskers\",\"USMC\",\"TeenMFA\",\"socialskills\",\"WoT\",\"starcraft2\",\"marketing\",\"whedon\",\"Forex\",\"socialmedia\",\"TalesFromThePizzaGuy\",\"USNEWS\",\"worldevents\",\"Animals\",\"Kentucky\",\"androiddev\",\"OSU\",\"logophilia\",\"exjw\",\"MECoOp\",\"Militaryfaq\",\"northernireland\",\"ravens\",\"barter\",\"castit\",\"RenewableEnergy\",\"Veterans\",\"BSD\",\"ScotchSwap\",\"ChemicalEngineering\",\"Anticonsumption\",\"BurningMan\",\"Pokemonexchange\",\"aerospace\",\"massage\",\"SRSFeminism\",\"SRSMusic\",\"SRSGSM\",\"coys\",\"RedDwarf\",\"shortstories\",\"dreamcast\",\"mathrock\",\"cyclocross\",\"VictoriaBC\",\"29er\",\"timelapse\",\"HongKong\",\"furry\",\"gaaaaaaayyyyyyyyyyyy\",\"Canning\",\"pakistan\",\"GirlTalk\",\"OCD\",\"ffxi\",\"SaintsRow\",\"nasa\",\"BabyExchange\",\"TRADE\",\"clothdiaps\",\"beyondthebump\",\"aaaaaatheismmmmmmmmmm\",\"Cuckold\",\"wowscrolls\",\"niggers\",\"mazda\",\"bestofworldstar\",\"footballmanagergames\",\"RATS\",\"ecigclassifieds\",\"RBA\",\"CompanyOfHeroes\",\"MST3K\",\"moviecritic\",\"AnarchistNews\",\"racism\",\"SimCity\",\"Sidehugs\",\"straightedge\",\"RadicalChristianity\",\"mycology\",\"alaska\",\"suits\",\"rct\",\"reddithax\",\"musictheory\",\"Luthier\",\"TestOutfit\",\"darksoulsbuilds\",\"DarkSoulsHelp\",\"PlayStationPlus\",\"UCDavis\",\"indie_rock\",\"secretpalace\",\"gorillaz\",\"musicpics\",\"goldredditsays\",\"paydaytheheist\",\"Accounting\",\"BHMGoneWild\",\"tolkienfans\",\"nextdoorasians\",\"DoctorWhumour\",\"Torchwood\",\"podcasts\",\"cute\",\"pugs\",\"TheHobbit\",\"theoffice\",\"Avengers\",\"HorseMask\",\"mythbusters\",\"arrow\",\"pokemonteams\",\"Brostep\",\"moombahton\",\"newcastle\",\"realmadrid\",\"weightlifting\",\"AskHistory\",\"swoleacceptance\",\"Liftingmusic\",\"Reds\",\"madisonwi\",\"Deathmetal\",\"GraphicDesign\",\"rescuedogs\",\"shiba\",\"lincoln\",\"adultswim\",\"streetart\",\"HomestarRunner\",\"speedrun\",\"Chefit\",\"freelance\",\"nonprofit\",\"HoustonSocials\",\"redditisland\",\"AlbumArtPorn\",\"Porsche\",\"drumcorps\",\"fastfood\",\"Themepark\",\"polyamory\",\"chesthairporn\",\"LGBTrees\",\"veganrecipes\",\"alpinism\",\"Cello\",\"BlackMetal\",\"HeadBangToThis\",\"bapcsalescanada\",\"BritishTV\",\"blackberry\",\"Tennessee\",\"againstmensrights\",\"SRSsucks\",\"TaylorSwift\",\"FreeKarma\",\"BigBrother\",\"tipofmypenis\",\"pornID\",\"GirlsFinishingTheJob\",\"Unashamed\",\"bisexual\",\"baduk\",\"ggggg\",\"labrador\",\"Louisiana\",\"MetalPorn\",\"NewSkaters\",\"southcarolina\",\"AskPhysics\",\"sabres\",\"Cleveland\",\"Buffalo\",\"ccna\",\"tablets\",\"computertechs\",\"ServerPorn\",\"sewing\",\"Plumbing\",\"Hungercraft\",\"guitarlessons\",\"circlejerkcopypasta\",\"glee\",\"craftit\",\"mylittlealcoholic\",\"gallopfrey\",\"camaro\",\"youtubecomments\",\"smoking\",\"ChineseLanguage\",\"ns2\",\"Gunpla\",\"saab\",\"classiccars\",\"Miata\",\"Habs\",\"angelsbaseball\",\"nope\",\"halifax\",\"French\",\"russian\",\"TEFL\",\"ebooks\",\"FantasyPL\",\"Warhammer\",\"oakland\",\"coding\",\"ShinyPokemon\",\"MinecraftInventions\",\"venturacounty\",\"ScenesFromAHat\",\"bourbon\",\"touchpad\",\"bartenders\",\"OKState\",\"D3T\",\"Wales\",\"mixes\",\"ducks\",\"SanJoseSharks\",\"techtheatre\",\"Suomi\",\"Nordiccountries\",\"facebookwins\",\"inthenews\",\"predaddit\",\"Fifa13\",\"Austria\",\"audio\",\"EA_FIFA\",\"TheWayWeWere\",\"WarshipPorn\",\"StockMarket\",\"Zune\",\"Muse\",\"jerseycity\",\"doommetal\",\"dayztrade\",\"Pathfinder_RPG\",\"SpecArt\",\"ios\",\"iWallpaper\",\"discworld\",\"Tucson\",\"UofArizona\",\"auto\",\"norfolk\",\"PAX\",\"Flyers\",\"Torontobluejays\",\"homedefense\",\"tabletopgamedesign\",\"Volkswagen\",\"photomarket\",\"pokemonrng\",\"ketorecipes\",\"fortlauderdale\",\"socialanxiety\",\"AlisonBrie\",\"alternativeart\",\"canucks\",\"Twitter\",\"raspberry_pi\",\"Fedora\",\"bjj\",\"d3hardcore\",\"allthingszerg\",\"VolleyballGirls\",\"ScottPilgrim\",\"indie\",\"RBI\",\"LiverpoolFC\",\"providence\",\"RhodeIsland\",\"opera\",\"beauty\",\"technicpack\",\"humansvszombies\",\"rit\",\"MetaHub\",\"transtimelines\",\"vermont\",\"burlington\",\"cscareerquestions\",\"hoggit\",\"Welding\",\"PennStateUniversity\",\"neuro\",\"BreakUps\",\"UTK\",\"buffalobills\",\"Rowing\",\"AskNYC\",\"puzzles\",\"sharedota2\",\"Gothenburg\",\"AGOTBoardGame\",\"atheismplus\",\"Parkour\",\"slashdiablo\",\"SouthDakota\",\"mturk\",\"HITsWorthTurkingFor\",\"kindlefire\",\"gis\",\"eu3\",\"warehouse13\",\"jpop\",\"Cyberpunk_Music\",\"birding\",\"Birmingham\",\"Djent\",\"spain\",\"england\",\"Maps\",\"Iceland\",\"Scotland\",\"Amsterdam\",\"Infographics\",\"Washington\",\"spaceflight\",\"trains\",\"massachusetts\",\"Utah\",\"residentevil\",\"DMB\",\"belgium\",\"ForeignMovies\",\"mountandblade\",\"springfieldMO\",\"socialwork\",\"centralpa\",\"TheVampireDiaries\",\"TechnicalDeathMetal\",\"Antitheism\",\"Munchkin\",\"breastfeeding\",\"DeadBedrooms\",\"Spokane\",\"MCPE\",\"Broadway\",\"MuayThai\",\"WouldYouRather\",\"cardsagainsthumanity\",\"OnceUponATime\",\"guildwars2funny\",\"sticker\",\"blackgirls\",\"Bombing\",\"Chihuahua\",\"PSP\",\"BobsBurgers\",\"retrogameswap\",\"Punk_Rock\",\"Anarchy101\",\"Norse\",\"meat\",\"ForeverAloneWomen\",\"Deusex\",\"singing\",\"spikes\",\"TallMeetTall\",\"Sneakers\",\"peacecorps\",\"thewestwing\",\"productivity\",\"linuxmint\",\"farcry\",\"Pictures\",\"Radiology\",\"rally\",\"ultrahardcore\",\"futureporn\",\"EnterShikari\",\"rollercoasters\",\"usenet\",\"infj\",\"auburn\",\"dungeondefenders\",\"StPetersburgFL\",\"karate\",\"MyLittleFriends\",\"Mylittlenosleep\",\"Knoxville\",\"GT5\",\"webhosting\",\"spicy\",\"lonely\",\"togetheralone\",\"phillies\",\"RandomActsOfPizza\",\"army\",\"pagan\",\"MCFC\",\"DrawForMe\",\"StLouisRams\",\"Synesthesia\",\"portlandstate\",\"Swimming\",\"marvelstudios\",\"ABraThatFits\",\"tf2memes\",\"bookporn\",\"2006Scape\",\"LoLFanArt\",\"reggae\",\"trippy\",\"penguins\",\"GODZILLA\",\"flatcore\",\"30ROCK\",\"lightshow\",\"ableton\",\"futurebeatproducers\",\"cocaine\",\"paradoxplaza\",\"mtgcube\",\"TheWire\",\"chuck\",\"Entomology\",\"wiiu\",\"TrueAskReddit\",\"Shitstatistssay\",\"austrian_economics\",\"BikingATX\",\"idm\",\"gallifrey\",\"advertising\",\"standupshots\",\"KingstonOntario\",\"libertarianmeme\",\"keyboards\",\"UMF\",\"listentous\",\"html5\",\"pug\",\"Hedgehog\",\"Daww\",\"rollerderby\",\"boulder\",\"tardcat\",\"witcher\",\"ColorBlind\",\"emulation\",\"hackintosh\",\"css\",\"newhaven\",\"xxketo\",\"toycameras\",\"DesktopDetective\",\"MvMatchup\",\"Warhammer40k\",\"HPMOR\",\"BipolarReddit\",\"costa_rica\",\"desmoines\",\"altrap\",\"diyaudio\",\"kratom\",\"climateskeptics\",\"Bowling\",\"RPI\",\"taoism\",\"RepublicOfMusic\",\"Weird\",\"athiesm\",\"SanJose\",\"AdviceAtheists\",\"ponypapers\",\"Idliketobeatree\",\"Psybient\",\"ambientmusic\",\"psytrance\",\"Battlefield\",\"TheDarkKnightRises\",\"KitSwap\",\"hypotheticalsituation\",\"ECE\",\"AskElectronics\",\"EngineeringPorn\",\"Spider_Man\",\"groovesharkplaylists\",\"Barcelona\",\"LoLChampConcepts\",\"houstonents\",\"gaymersgonewild\",\"doublebass\",\"gggg\",\"confessions\",\"DontPanic\",\"Edinburgh\",\"D3AH\",\"rccars\",\"radiocontrol\",\"msu\",\"awwwtf\",\"Blacksmith\",\"EmoScreamo\",\"Objectivism\",\"oliviawilde\",\"ghibli\",\"sheffield\",\"BurnNotice\",\"DowntonAbbey\",\"Hypothyroidism\",\"TheKillers\",\"supremeclothing\",\"Trichsters\",\"cancer\",\"chile\",\"brandnew\",\"NZXT\",\"Antiques\",\"ParallelWorldProblems\",\"mfacirclejerk\",\"SCP\",\"stencils\",\"TheSecretWorld\",\"passionx\",\"starbucks\",\"stunfisk\",\"KeepWriting\",\"Tobacco\",\"Dreamtheater\",\"Christian\",\"prolife\",\"Inglip\",\"LinkinPark\",\"smokerslounge\",\"faimprovement\",\"hawks\",\"Metroid\",\"Whatisthis\",\"Genealogy\",\"ColoradoAvalanche\",\"dxm\",\"macgaming\",\"Petloss\",\"crochet\",\"creepygaming\",\"smashbros\",\"Tulpas\",\"lowendgaming\",\"ProjectAwesome\",\"blackbookgraffiti\",\"NorthCarolina\",\"BBW\",\"washu\",\"iOSProgramming\",\"donaldglover\",\"MDMA\",\"LGBTeens\",\"blues\",\"aquaponics\",\"AudioPost\",\"Warmachine\",\"Calligraphy\",\"dragonage\",\"AustralianShepherd\",\"WhiteWolfRPG\",\"Megaman\",\"queen\",\"crypto\",\"AskTechnology\",\"visualnovels\",\"Clannad\",\"nsfw2\",\"Dance\",\"SwingDancing\",\"baylor\",\"iastate\",\"OpenChristian\",\"Illustration\",\"ferrets\",\"badlinguistics\",\"Rochester\",\"opengl\",\"javahelp\",\"canadaguns\",\"GetStudying\",\"LibertarianLeft\",\"classicalguitar\",\"vodka\",\"vmware\",\"insanityworkout\",\"WritingPrompts\",\"Albany\",\"upstate_new_york\",\"rutgers\",\"glasgow\",\"Syracuse\",\"columbiamo\",\"vcu\",\"orioles\",\"cosplaygirls\",\"Tacoma\",\"Shave_Bazaar\",\"freehugsbf3\",\"birdswitharms\",\"mcgill\",\"dragoncon\",\"ExplainLikeImCalvin\",\"TexasTech\",\"LadyGaga\",\"uofmn\",\"panthers\",\"HBL\",\"StonerPhilosophy\",\"cpp\",\"XFiles\",\"ShinyPorn\",\"TOR\",\"NarFFL\",\"Iowa\",\"pantyselling\",\"Harley\",\"amateurfights\",\"cork\",\"beatingwomen\",\"Motocross\",\"lolcats\",\"osx\",\"ZenHabits\",\"LittleRock\",\"upvotegifs\",\"AnimalsWithoutNecks\",\"proper\",\"comeonandslam\",\"gatech\",\"sushi\",\"SRSQuestions\",\"GodlessWomen\",\"pregnant\",\"NIU\",\"dotnet\",\"esports\",\"AnaheimDucks\",\"freemasonry\",\"bengals\",\"Cynicalbrit\",\"silenthill\",\"ScarlettJohansson\",\"ElderScrolls\",\"SonicTheHedgehog\",\"Permaculture\",\"EntExchange\",\"joomla\",\"X3TC\",\"astoria\",\"PokemonROMhacks\",\"ramen\",\"bboy\",\"bookshelf\",\"ucr\",\"Hamilton\",\"femalehairadvice\",\"whatsthisworth\",\"Needafriend\",\"bugs\",\"cfs\",\"deephouse\",\"ClimbingPorn\",\"flyfishing\",\"shareSMITE\",\"transformers\",\"pkmntcgtrades\",\"JurassicPark\",\"pokemonbattles\",\"Dinosaurs\",\"InfernalMachine\",\"WoWGoldMaking\",\"ReverseEngineering\",\"ProgrammerHumor\",\"vim\",\"AdvancedFitness\",\"bf3pc\",\"selfimprovement\",\"BetweenTheBuriedAndMe\",\"Monstercat\",\"SubredditDramaDrama\",\"HTML\",\"lookatmydog\",\"compDota2\",\"rugbyunion\",\"SoccerBetting\",\"NUFC\",\"FinancialPlanning\",\"PHPhelp\",\"vzla\",\"swinghouse\",\"SexPositive\",\"Delaware\",\"nycmeetups\",\"MassiveCock\",\"penis\",\"Frugal_Jerk\",\"musicals\",\"hydro\",\"cinematography\",\"Blacklight\",\"lookwhoimet\",\"Metallica\",\"TMNT\",\"Pokemoncollege\",\"Adoption\",\"Wellington\",\"sca\",\"trueMusic\",\"MotoLA\",\"roblox\",\"edmprodcirclejerk\",\"lebanon\",\"transpositive\",\"UWMadison\",\"techsupportanimals\",\"Ijustwatched\",\"VXJunkies\",\"legal\",\"LinuxActionShow\",\"cablefail\",\"seedboxes\",\"JapaneseFood\",\"hungary\",\"lexington\",\"Percussionists\",\"Gunsforsale\",\"Tennesseetitans\",\"roasting\",\"insomnia\",\"nerdcubed\",\"umass\",\"collegehockey\",\"starcitizen\",\"StopSelfHarm\",\"Colts\",\"bestoftribunal\",\"miamidolphins\",\"husky\",\"perth\",\"write\",\"blogs\",\"pantheism\",\"ShittyFanTheories\",\"Everton\",\"Cinema4D\",\"RDT2\",\"Heroclix\",\"dragonvale\",\"StencilTemplates\",\"tf2replays\",\"noiserock\",\"worldwhisky\",\"Cheap_Meals\",\"riseagainst\",\"Disneyland\",\"discexchange\",\"90daysgoal\",\"ketogains\",\"2XLookbook\",\"MAME\",\"linuxadmin\",\"rollerblading\",\"livesound\",\"phish\",\"Eminem\",\"vfx\",\"CODZombies\",\"deftones\",\"DesignMyRoom\",\"ShittyPoetry\",\"DMT\",\"Albuquerque\",\"misophonia\",\"Fixxit\",\"juggalo\",\"UTSA\",\"CarletonU\",\"swedents\",\"Journalism\",\"dust514\",\"Climbingvids\",\"Gundam\",\"rum\",\"LAlist\",\"BodyAcceptance\",\"basset\",\"BDSMcommunity\",\"Random_Acts_of_Etsy\",\"touhou\",\"ludology\",\"Mariners\",\"PrettyGirlsUglyFaces\",\"short\",\"CombatFootage\",\"Maine\",\"queensuniversity\",\"Gameboy\",\"n64\",\"planetaryannihilation\",\"QuakeLive\",\"Aleague\",\"sc2partners\",\"SALEM\",\"Random_Acts_of_Books\",\"bodymods\",\"USMilitarySO\",\"preppers\",\"bugout\",\"Ornithology\",\"Juicing\",\"twinpeaks\",\"flightsim\",\"amateurradio\",\"athensohio\",\"unixporn\",\"shittybattlestations\",\"fossworldproblems\",\"riddles\",\"lebowski\",\"WingChun\",\"siberianhusky\",\"jambands\",\"simracing\",\"banjo\",\"ak47\",\"Concordia\",\"day9\",\"StarcraftCirclejerk\",\"tinydick\",\"artificial\",\"Equestrian\",\"lolgrindr\",\"demonssouls\",\"Pokeents\",\"appstate\",\"futanari\",\"simonfraser\",\"Datsun\",\"Cigarettes\",\"ketorage\",\"selfpublish\",\"kandi\",\"Debate\",\"UCONN\",\"highschool\",\"winemaking\",\"Dreadlocks\",\"Surface\",\"ClashOfClans\",\"Spanish\",\"vinylscratch\",\"ilstu\",\"doppelbangher\",\"Browns\",\"clevelandcavs\",\"malefashion\",\"Blogging\",\"streetwear\",\"ipv6\",\"NativeAmerican\",\"turning\",\"learnart\",\"santacruz\",\"tryptonaut\",\"SQL\",\"Forts\",\"Guelph\",\"gue\",\"Beekeeping\",\"veg\",\"weddingplanning\",\"Destiny\",\"badphilosophy\",\"COents\",\"lampwork\",\"mypartneristrans\",\"shazbot\",\"onions\",\"sloths\",\"Catan\",\"theleaguefx\",\"RedditBrigade\",\"1911\",\"flashlight\",\"USF\",\"chinchilla\",\"SkyrimHelp\",\"mysql\",\"cosplayers\",\"composer\",\"AceOfSpades\",\"OttawaSenators\",\"BarCraft\",\"stonerrock\",\"ChivalryGame\",\"centralmich\",\"plotholes\",\"GayBroTeens\",\"GoogleTV\",\"canberra\",\"kde\",\"sarasota\",\"RandomActsOfVinyl\",\"HunterXHunter\",\"boating\",\"AcademicPsychology\",\"SketchDaily\",\"BiGoneMild\",\"canadients\",\"translator\",\"AnimalCollective\",\"folkmetal\",\"PowerMetal\",\"AskComputerScience\",\"ArtGW\",\"asstastic\",\"D3L4G\",\"freedesign\",\"Divorce\",\"greysanatomy\",\"Clojure\",\"triphop\",\"cowboybebop\",\"BinghamtonUniversity\",\"rails\",\"AustralianCattleDog\",\"Egypt\",\"subredditofthedead\",\"rocksmith\",\"IndianBabes\",\"brighton\",\"Africa\",\"roanoke\",\"gameDevClassifieds\",\"Bestof2011\",\"Turkey\",\"MCNSA\",\"happyhardcore\",\"bloodlinechampions\",\"lisp\",\"protools\",\"spacex\",\"starbound\",\"gnomoria\",\"deadisland\",\"painting\",\"love\",\"conlangs\",\"CalgarySocialClub\",\"MitchellAndWebb\",\"fredericton\",\"Complextro\",\"UnsentLetters\",\"TheCreatures\",\"FTH\",\"japanlife\",\"LondonSocialClub\",\"croatia\",\"incest\",\"harmonica\",\"gmu\",\"BackYardChickens\",\"haskell\",\"aikido\",\"sanmarcos\",\"txstate\",\"Neuropsychology\",\"wichita\",\"boardsofcanada\",\"scape\",\"Knife_Swap\",\"saudiarabia\",\"4Xgaming\",\"exjew\",\"Fantasy_Bookclub\",\"SSBPM\",\"Fighters\",\"asiantwoX\",\"scala\",\"homebrew\",\"traps\",\"harvestmoon\",\"bookhaul\",\"Liverpool\",\"artstore\",\"football\",\"MLPtunes\",\"metalworking\",\"ICoveredASong\",\"ftm\",\"debian\",\"Epilepsy\",\"retrogaming\",\"asianeats\",\"Metric\",\"Cubers\",\"RUG_Leeds\",\"UBreddit\",\"askagirl\",\"craftexchange\",\"improv\",\"psychedelicrock\",\"losangeleskings\",\"myevilplan\",\"Hotwife\",\"BDSMGW\",\"northkorea\",\"BostonBruins\",\"sneakermarket\",\"tarantulas\",\"RUGC_Midwest\",\"redditsync\",\"PortalMaps\",\"Magento\",\"babylon5\",\"pornfree\",\"amishsmp\",\"astrophysics\",\"Drexel\",\"Chattanooga\",\"mwo\",\"illustrator\",\"mizzou\",\"Halo4\",\"golang\",\"bassfishing\",\"chibike\",\"MeetLGBT\",\"doodles\",\"WahoosTipi\",\"entgaming\",\"BSA\",\"TheStopGirl\",\"bakedart\",\"BostonU\",\"unt\",\"NSFW_nospam\",\"MontgomeryCountyMD\",\"Alternativerock\",\"tech\",\"animegifs\",\"LSAT\",\"Nokia\",\"wallstreetbets\",\"RandomActsOfChristmas\",\"waterloo\",\"NuDisco\",\"IBD\",\"nethack\",\"Kiteboarding\",\"utdallas\",\"TrainPorn\",\"Greyhounds\",\"fweddit\",\"mixcd\",\"windsorontario\",\"illusionporn\",\"amv\",\"ICanDrawThat\",\"lovegaymale\",\"LGBTGoneWild\",\"turtle\",\"regina\",\"identifythisfont\",\"nrl\",\"pokemmo\",\"Eesti\",\"NakedProgress\",\"poi\",\"evangelion\",\"Silverbugs\",\"getdisciplined\",\"audiobooks\",\"simpleios\",\"mbti\",\"metaldetecting\",\"NewcastleUponTyne\",\"sharepoint\",\"akron\",\"verizon\",\"INDYCAR\",\"scion\",\"mormon\",\"lanparty\",\"wildcats\",\"IowaCity\",\"C_Programming\",\"matlab\",\"git\",\"drumstep\",\"TwoXSex\",\"FrugalFemaleFashion\",\"Georgia\",\"SBU\",\"quilting\",\"merlinbbc\",\"reasoners\",\"rolltide\",\"Pensacola\",\"rawdenim\",\"greatdanes\",\"PCOS\",\"Makeup\",\"PrettyLittleLiars\",\"infertility\",\"Animewallpaper\",\"poledancing\",\"AskBattlestations\",\"getting_over_it\",\"seventhworldproblems\",\"saskatoon\",\"coupons\",\"chicagomusicscene\",\"CastleTV\",\"policydebate\",\"Nebraska\",\"ABDL\",\"wien\",\"AutoDetailing\",\"Rule34LoL\",\"northdakota\",\"arlington\",\"juggling\",\"DIY_eJuice\",\"Ducati\",\"Kappa\",\"judo\",\"christmas\",\"wemetonline\",\"TryingForABaby\",\"Hooping\",\"psbattleroyale\",\"dcuonline\",\"motivation\",\"bigonewild\",\"santarosa\",\"Ghosts\",\"Punkskahardcore\",\"SouthJersey\",\"Helicopters\",\"ColoradoRockies\",\"ecycle\",\"steamswap\",\"Bakersfield\",\"AskLiteraryStudies\",\"DayZServers\",\"auckland\",\"Gymnastics\",\"RTLSDR\",\"thegdstudio\",\"onebros\",\"hamsters\",\"volleyball\",\"TheGirlSurvivalGuide\",\"acappella\",\"NewMexico\",\"Handwriting\",\"3dsmax\",\"playstation\",\"saskatchewan\",\"TestGuildPleaseIgnore\",\"youngjustice\",\"BorderlandsGuns\",\"MLPvids\",\"billiards\",\"Cornell\",\"grime\",\"TripSit\",\"BacktotheFuture\",\"DanishEnts\",\"homeschool\",\"NYCapartments\",\"tales\",\"PointsPlus\",\"node\",\"elite\",\"HPfanfiction\",\"avporn\",\"lanterncorps\",\"ussoccer\",\"astrology\",\"fargo\",\"liquor\",\"missoula\",\"Pegging\",\"avengedsevenfold\",\"trailrunning\",\"CuteGuyButts\",\"AustinClassifieds\",\"talesfromcallcenters\",\"cade\",\"rockets\",\"capetown\",\"gradadmissions\",\"wowguilds\",\"Toughmudder\",\"AskScienceDiscussion\",\"ukbike\",\"nes\",\"ThankYouBasedGod\",\"puns\",\"shittyprogramming\",\"chunky\",\"led_zeppelin\",\"Montana\",\"skylanders\",\"excatholic\",\"Saxophonics\",\"BlueJackets\",\"homegym\",\"MUD\",\"Umphreys\",\"dustforce\",\"TheBrewery\",\"Fencing\",\"Wilmington\",\"jewelry\",\"foxes\",\"Gear4Sale\",\"credditMWO\",\"ACMilan\",\"Bulldogs\",\"indonesia\",\"MusicBattlestations\",\"crustpunk\",\"Waco\",\"oxford\",\"MotionDesign\",\"Femdom\",\"broslikeus\",\"xmen\",\"puppy101\",\"kelowna\",\"Sissies\",\"thinkpad\",\"Cisco\",\"uCinci\",\"AskNetsec\",\"telecaster\",\"teen4teen\",\"Veterinary\",\"FutureWhatIf\",\"RedditPost\",\"chastity\",\"grimm\",\"MusicInTheMaking\",\"photographs\",\"motogp\",\"BeardedDragons\",\"ptcgo\",\"shoegaze\",\"toledo\",\"pewdiepie\",\"nottingham\",\"moviescirclejerk\",\"bestofnetflix\",\"IndustrialDesign\",\"F1Porn\",\"AnimeSketch\",\"BikeShop\",\"raleigh\",\"hetalia\",\"Reno\",\"AFOL\",\"yorku\",\"apathy\",\"fragrance\",\"savannah\",\"SCREENPRINTING\",\"SQLServer\",\"ReefTank\",\"vintageaudio\",\"WorcesterMA\",\"visualbasic\",\"outside\",\"Syria\",\"Temple\",\"Wicca\",\"Scams\",\"Logic_Studio\",\"BBWGW\",\"TibiaMMO\",\"HowToHack\",\"FIU\",\"beetle\",\"japanesemusic\",\"shutupandwrite\",\"Swingers\",\"borussiadortmund\",\"plants\",\"3Dmodeling\",\"EdmontonOilers\",\"everquest\",\"swgemu\",\"WowUI\",\"pharmacy\",\"TheMentalist\",\"herpetoculture\",\"SVRiders\",\"weed\",\"GoneWildCD\",\"Netrunner\",\"nonmonogamy\",\"Shadowrun\",\"IBO\",\"cassetteculture\",\"graffhelp\",\"BeautyBoxes\",\"Cameras\",\"stanford\",\"techsupportmacgyver\",\"jakeandamir\",\"gso\",\"sexytimechat\",\"PanicHistory\",\"CysticFibrosis\",\"treesdating\",\"sixers\",\"optometry\",\"baconit\",\"JamesBond\",\"kettlebell\",\"minimal\",\"AcousticOriginals\",\"brasil\",\"100pushups\",\"whitewater\",\"techsnap\",\"notredame\",\"riotpls\",\"WVU\",\"freebietalk\",\"asianamerican\",\"Ford\",\"bitchimabus\",\"bootroom\",\"SJSU\",\"projectcar\",\"WtSSTaDaMiT\",\"men_in_panties\",\"europeanmalefashion\",\"ChicoCA\",\"guildrecruitment\",\"Dirtbikes\",\"CafeRacers\",\"Shootmania\",\"fcs\",\"slp\",\"gundeals\",\"selfharm\",\"fireemblem\",\"shittymcsuggestions\",\"uofu\",\"SFSU\",\"AdvancedRunning\",\"twinks\",\"AmateurArchives\",\"LOLStreams\",\"characterdrawing\",\"FinancialCareers\",\"asatru\",\"OregonStateUniv\",\"Throwers\",\"trackandfield\",\"BDSMpersonals\",\"GW2_Guild\",\"purebattlefield\",\"Catacombs\",\"jackrussellterrier\",\"GamePhysics\",\"NotTimAndEric\",\"chillwave\",\"uwo\",\"Rolla\",\"CRH\",\"pettyrevenge\",\"askgaybros\",\"LoLGaymers\",\"VPN\",\"GolfGTI\",\"mit\",\"highdeas\",\"freemusic\",\"wifesharing\",\"TalesFromYourServer\",\"steroids\",\"Shotguns\",\"askaconservative\",\"YAlit\",\"knifeclub\",\"fortwayne\",\"schnauzers\",\"themountaingoats\",\"AtheismComingOut\",\"gaysian\",\"cringepics\",\"EvilLeagueOfEvil\",\"NewsOfTheStupid\",\"TumblrInAction\",\"fullmoviesonyoutube\",\"GalaxyNote2\",\"annakendrick\",\"BravestWarriors\",\"IsJewBoyMarriedYet\",\"santashelpers\",\"Ingress\",\"RAOWL\",\"zombiespartyup\",\"razer\",\"montageparodies\",\"Bozeman\",\"myfriendwantstoknow\",\"MakeNewFriendsHere\",\"TheTerminal\",\"ifiwonthelottery\",\"GameTrade\",\"im14andthisisfunny\",\"dontstarve\",\"explainlikeIAmA\",\"BIRDTEAMS\",\"RandomActsofMakeup\",\"StackAdvice\",\"TrueWalkingDead\",\"woweconomy\",\"DebateCommunism\",\"MLPIOS\",\"comicbookart\",\"blackpeoplegifs\",\"AmIFreeToGo\",\"blackladies\",\"BlackOps2Emblems\",\"foreskin\",\"comicbookmovies\",\"armawasteland\",\"lolwallpaper\",\"weddings\",\"thesimscc\",\"ConfusedBoners\",\"D3GC\",\"guitars\",\"TheRedLion\",\"Im14andthisisWTF\",\"Negareddit\",\"Drama\",\"KarmaCourt\",\"gunpolitics\",\"progun\",\"newtothenavy\",\"TheRedPill\",\"gloving\",\"swordartonline\",\"bitcointip\",\"perfectloops\",\"PokemonMelanite\",\"comiccodes\",\"ThanksObama\",\"RWBY\",\"NFL_Draft\",\"uglyduckling\",\"theketodiet\",\"CFB\",\"mexico\",\"sanfrancisco\",\"washingtondc\",\"india\",\"minecraftxbox\",\"nsfw\",\"Atlanta\",\"FoodPorn\",\"boston\",\"CityPorn\",\"powerlifting\",\"sandiego\",\"Austin\",\"chromeos\",\"cincinnati\",\"PS4\",\"vancouver\",\"philadelphia\",\"StLouis\",\"farcry3\",\"canada\",\"japan\",\"howtonotgiveafuck\",\"ottawa\",\"fffffffuuuuuuuuuuuud\",\"de\",\"vegas\",\"london\",\"unitedkingdom\",\"AskUK\",\"chicago\",\"webdesign\",\"europe\",\"ukpolitics\",\"nononono\",\"australia\",\"melbourne\",\"montreal\",\"toronto\",\"ColbertRally\",\"starcraft2_class\",\"Portland\",\"mcwasted\",\"counting\",\"2007scape\",\"promos\",\"FiftyFifty\",\"ass\",\"GunsAreCool\",\"ucf\",\"TournamentOfMemes\",\"changemyview\",\"Shitty_Car_Mods\",\"Team_Awesome\",\"csuf\",\"sweden\",\"Spartacus_TV\",\"newzealand\",\"blog\",\"Calgary\",\"Brewers\",\"tappedout\",\"EatCheapAndHealthy\",\"Israel\",\"TwinCities\",\"Louisville\",\"DornerCase\",\"baltimore\",\"Detroit\",\"Quebec\",\"Philippines\",\"houston\",\"announcements\",\"Seattle\",\"Denmark\",\"france\",\"CrossStitch\",\"hockeyplayers\",\"Ohio\",\"shameless\",\"misfitstv\",\"summoners\",\"Bravenewbies\",\"brisbane\",\"ploungeafterdark\",\"Coachella\",\"amazondeals\",\"Scrolls\",\"ReviewThis\",\"migraine\",\"Padres\",\"tampa\",\"AsianParentStories\",\"ucla\",\"NorthKoreaNews\",\"StarWarsEU\",\"Ask_Politics\",\"XboxMinecraft\",\"wildhockey\",\"androidcirclejerk\",\"pcmasterrace\",\"whowouldwin\",\"infp\",\"Skullgirls\",\"Megaten\",\"Warframe\",\"evenewbies\",\"asheville\",\"DailyDouble\",\"UCSantaBarbara\",\"heat\",\"Pyongyang\",\"Maya\",\"fatpeoplestories\",\"SFxT\",\"Injusticegame\",\"litecoin\",\"Lollapalooza\",\"Sacramento\",\"WaltDisneyWorld\",\"Defiance\",\"Redditropolis\",\"AnimalsBeingJerks\",\"iOSthemes\",\"arabs\",\"NoStupidQuestions\",\"AndroidUsers\",\"FallOutBoy\",\"whitepeoplegifs\",\"Ni_no_Kuni\",\"Roadcam\",\"GWCouples\",\"Showerthoughts\",\"FRC\",\"Darkfall\",\"SourceFed\",\"HomeImprovement\",\"TruePokemon\",\"blunderyears\",\"harlemshake\",\"cycling\",\"itmejp\",\"BitcoinMining\",\"TheBestOfAmazon\",\"DungeonsAndDragons\",\"BitMarket\",\"Nexus10\",\"latterdaysaints\",\"projectzomboid\",\"Ameristralia\",\"BronyHate\",\"TrueChristian\",\"NEU\",\"fantasyhockey\",\"ENFP\",\"RandomActsOfTf2\",\"SWARJE\",\"braswap\",\"elderscrollsonline\",\"hiphop101\",\"spotted\",\"LatvianJokes\",\"justified\",\"marvelheroes\",\"SSX\",\"INGLIN\",\"IAmAFiction\",\"USC\",\"Unexpected\",\"TheBluePill\",\"askcarsales\",\"Tallahassee\",\"DestinyTheGame\",\"ShitCosmoSays\",\"UniversityOfHouston\",\"CubeWorld\",\"BioshockInfinite\",\"qotsa\",\"ElectricForest\",\"RapeSquadKillas\",\"arma3\",\"PuzzleAndDragons\",\"Kikpals\",\"mtgfinance\",\"Harmontown\",\"ProRevenge\",\"dota2pubs\",\"feedthebeastservers\",\"LOLDyrus\",\"YGOBinders\",\"thatHappened\",\"foodhacks\",\"CoDCompetitive\",\"StateOfDecay\",\"GTAV\",\"GoneMild\"],\"x\":[0.13358401010183255,0.10227899186020159,0.3371836134925293,0.039489287704817036,0.42710881669332385,0.02880471116958046,0.038629674291641644,0.3068001429150564,0.06124585358430917,0.36322502988026845,0.272296776775897,0.04060363915300406,0.06498247235115687,0.04767835194565058,0.06504145779385706,0.03151936820396296,0.050039353704151274,0.06865099545822635,0.065904098980148,0.06252784500497709,0.22478283713712996,0.22984765494111714,0.11023337612168783,0.05745644700106549,0.04772487672398568,0.20436025698859922,0.07049335689828864,0.02570495752535044,0.02918336021941897,0.024117294597422866,0.153860653919,0.07239628593503049,0.11657181471849923,0.10663511567782222,0.09904489992702213,0.22396035882461884,0.06386816920723527,0.03420037804640753,0.04965888808864315,0.07092819728247725,0.09540762704165844,0.14014345265483033,0.11848887779337024,0.026382892996283075,0.026985812980018002,0.045778567484824624,0.04544676809721266,0.025444401800570532,0.06448952653785699,0.045929714295586864,0.048425385366215365,0.026879455040370096,0.03131000084394154,0.02569880020157069,0.041434898973186016,0.029858049245627797,0.03154671869510346,0.06055375663434921,0.05192377114713545,0.03573696692733816,0.04263802325715216,0.04228874215573411,0.03380387101735348,0.049133305959663136,0.11770762752585942,0.036039884195632206,0.036132452875330165,0.039899440724459355,0.05039229661965229,0.09020605258619749,0.07943575535564333,0.11241421814475412,0.057827055466973046,0.06583920912425224,0.033660220559592106,0.025647940949876987,0.052569231748339586,0.04426585114468949,0.04518550737873782,0.04943855286576343,0.05019027061622234,0.08474195229140934,0.02964283706734748,0.03344729413830819,0.04766718440021008,0.0545561790854813,0.030163071718612197,0.059068918131738805,0.04040319197280156,0.027995065850560188,0.0230001952976974,0.046140758700058966,0.09603439444149257,0.023435741834813197,0.043513143937753185,0.06798227601529895,0.02879264972790243,0.05404453824427465,0.043592461393014065,0.036272783975980175,0.04142584988514329,0.04446104589564889,0.065725625064702,0.04362316634201119,0.04247389933506347,0.06288478934985309,0.04240309860548654,0.03382303014859966,0.02970173520194291,0.057046914542124884,0.06918949692248122,0.07943963304265564,0.06795979449187659,0.07098573902147264,0.03405989574818518,0.04705068444713464,0.03458578683101964,0.08941898644918489,0.04563169165463572,0.0424433913775858,0.05607998522664808,0.0329123009769732,0.045772095241639055,0.031463539270999465,0.029963034028489266,0.05532507247455738,0.07032442861588198,0.08537761512887697,0.03552465053296938,0.04165458717932348,0.04661774445297238,0.04986968577584843,0.04383026960801931,0.044302075221867236,0.0459071875499355,0.05680869693304173,0.11887706955432176,0.10706514175506641,0.028136937263979825,0.05341431672918174,0.03627539513151662,0.12813251672408119,0.028887144123792154,0.025336465490444004,0.030391812481834354,0.06526492151617157,0.1045813225575521,0.04829364794732114,0.057095444031528976,0.06365957211764267,0.03891833643464658,0.0766835659871953,0.0267063905485729,0.03541747250002068,0.030286852302174278,0.048246555344293646,0.04104084192401737,0.04346933426043375,0.039317471558823314,0.06837083184419987,0.0379432651371869,0.02173483555425762,0.05065136222680899,0.04897474602084728,0.04298679656276499,0.11270979975671105,0.040064913511792165,0.12650391532511288,0.06495515499656854,0.07597790953941111,0.03338524379239792,0.05090723881894349,0.06713427493433473,0.04441041132547448,0.026330603445851287,0.0779521762684895,0.03801743029447004,0.027472596859769396,0.042385479132318216,0.037572016109334985,0.03301540868665058,0.02353025911910384,0.05139697836009053,0.022483775396418833,0.03672584303146933,0.036270910544911064,0.04733922159442271,0.03833547795087018,0.0474702879929699,0.04099591431402607,0.026860028603569383,0.039820354899378595,0.038959860692943965,0.045753027287610826,0.02713688594948001,0.04427959015362294,0.041253953220239115,0.06475553173848139,0.054808882158576225,0.07707755858246373,0.05837096553940611,0.060179711378554004,0.052999911004062254,0.030719547465481438,0.027635714934915994,0.027115652153538485,0.05380662036038173,0.0641674510847513,0.06013610220926362,0.053663702068225266,0.05504910228983265,0.06001004287762177,0.03691170729559012,0.06366912657292025,0.08019260053854174,0.0629784735056565,0.05043035016339967,0.06646253308843156,0.04959280808876052,0.05145899107190936,0.0687776611085237,0.044341772084224955,0.0724885362283574,0.03274454355381922,0.030615099799012602,0.062257590167638294,0.03972569570561836,0.047038946206942704,0.058509097398816906,0.04201632143021046,0.036154681839640476,0.03352840023521097,0.06910568309305935,0.07632783537848119,0.026039342170460413,0.04607960559732349,0.04169986795191277,0.04212599553855592,0.05898123204107258,0.04765290781670722,0.05463650596347774,0.036415869421010674,0.05690336670642307,0.06884582529684823,0.10130442682290332,0.05037644319626128,0.041593514038078684,0.1240091299732779,0.037071924632513624,0.0377585636556771,0.09842451559599237,0.04324407918857147,0.03139407440277776,0.053106903805146384,0.0447639340933117,0.040035101182493274,0.031114073574598687,0.10570053931524011,0.049566489609007454,0.06060966372115293,0.0663704252890306,0.037168097714644854,0.05976758094665347,0.0614646240263204,0.047641738641298816,0.03221479653658334,0.049255289457368116,0.03689616905288353,0.05235889747425168,0.03892352424646602,0.05449116043152196,0.06489737123784083,0.07693093310127923,0.08281554263002111,0.02924270830593085,0.055744689542803524,0.05509356663458021,0.04454207113238209,0.07820858883507723,0.06845617158311643,0.08654402334145375,0.05905793217242452,0.050500453161593746,0.05465983510916488,0.04395050700640129,0.052631052902606584,0.0581993168200143,0.03825707188469428,0.06061359286264385,0.11142939591291734,0.058825124154182486,0.04358294956751608,0.028479153584381346,0.038775441320179,0.06465400799805496,0.0729032319695015,0.04578966202294452,0.08087055851912267,0.06069991928147493,0.03907609283555849,0.08230760839960227,0.06389034641443035,0.040943124235718414,0.03471421985789047,0.044105012186567885,0.05229813435128908,0.12511439530155324,0.09186914805358343,0.08043451144603264,0.05913630573049084,0.04682882257563874,0.0577082916362733,0.0774275630236772,0.04488694112371306,0.040349041607948895,0.022751969666551394,0.08500071428427405,0.05078171150957176,0.05654950928719938,0.1293788221218961,0.05216144352820633,0.050067787246815786,0.0798540004793453,0.03429305193361229,0.0501336725616916,0.038033918955807815,0.0367034399363102,0.08268290053392041,0.0544242053647688,0.09213061857121296,0.05666824657435259,0.09749047697742616,0.06973585263651434,0.050317314867151595,0.04937540333147783,0.02837152212545842,0.07084208051438919,0.020803770158565472,0.01736508026501565,0.018142593865387944,0.0160091089222812,0.016694608470837227,0.018048949973399713,0.055230667168158824,0.013137688985591551,0.049800741922330645,0.031054844027579145,0.06395970112055296,0.05717782904897712,0.06446591631393356,0.02872813921786285,0.025033339985589622,0.0636813828966411,0.02922049020357714,0.04173946426365292,0.02543032032631143,0.06439283849014195,0.06796925840465429,0.08718297943390721,0.08695426256454922,0.04925378704387401,0.07460054431192387,0.0765673345144483,0.03357789625853313,0.020411901336194298,0.07700398814865869,0.03303028552193733,0.06960717714835257,0.0398613127763697,0.065801983318225,0.08751324001485074,0.042479933039845014,0.07481291772667426,0.04613721487869697,0.07940159791331342,0.07464299696631835,0.03342237927707453,0.07462541883721475,0.0587816251744027,0.046960665035392424,0.04069629922807198,0.06102242730735862,0.039933048687134265,0.03504832739687783,0.035313449585789504,0.02822387107323202,0.08029970748042532,0.039287723922934475,0.060658823826201455,0.051443809696097235,0.08766597743691776,0.04373970094712113,0.05399129936664165,0.04359399624035653,0.06471906373481351,0.07687754982632862,0.036244238612419974,0.09942454642999,0.06486883669175009,0.09707443224261113,0.04590699922798447,0.034063260618661474,0.06870933730609487,0.0584625737654838,0.0867970781250272,0.08081524537016949,0.06150473625533808,0.05535284700741242,0.03379962924119538,0.06007167914024315,0.04546887510494486,0.05566440927073614,0.05768676509063943,0.08411689296341746,0.05986464963669671,0.028230721562600168,0.07790142949164783,0.057922915229037225,0.044859019506985294,0.041843207316899875,0.04471961603826058,0.10353859862935236,0.032205682709516306,0.0582217838536225,0.07662570459145862,0.08142638684836266,0.07934146164476136,0.06830716741848648,0.10380266014017824,0.06903110062480997,0.06758859729329252,0.08882172490280967,0.06437415353036177,0.06328925876842614,0.07713576717907633,0.05809511995983079,0.12126362564479119,0.044753410366526594,0.10045672477689593,0.08842102900714821,0.09536459581935346,0.039628740148109416,0.03997121989369576,0.04512191869073728,0.057622940802485215,0.08051143129819066,0.06408446455503324,0.04599837293121505,0.092244494471422,0.04643815082405757,0.04034307304963715,0.02723524483186786,0.1112316463632987,0.04474255431831388,0.03322569136429712,0.12915498620172772,0.03600126559436771,0.10818757111965886,0.0531910326982797,0.024282439798983677,0.022270683567899335,0.09795777287274277,0.05207828946539626,0.062335994750168745,0.032351472854256665,0.07888955243734141,0.03863163546754925,0.08734732531349348,0.0912433213913673,0.03268070955281279,0.03883293523988985,0.05895042469203594,0.04783931161790029,0.045035039753262104,0.03234007973018478,0.04832787543251002,0.07548026088906133,0.06315948033069294,0.04968036138914232,0.033332104487929254,0.114132658326821,0.033097347697837565,0.056449978944916004,0.027192473062769448,0.03410413090386572,0.04201196993497669,0.027620005660940732,0.035239970050033445,0.024764770262286132,0.025560596599234632,0.040896338315543644,0.08151773458320256,0.08035180882476312,0.09205059454291935,0.06483524759102882,0.06558250048508243,0.06457092275944276,0.0724494718990642,0.07092235022585945,0.036501798518653476,0.029779953681431295,0.03323179792457063,0.03632474072578532,0.041950254403725136,0.06290335068387963,0.02865187947162218,0.02437930135899419,0.07760137683861558,0.027041267615595097,0.04733257405705932,0.030840520997351135,0.04915713848077241,0.042418890219719826,0.058886687865823906,0.08094187554366013,0.046200703069457234,0.05195422086267854,0.07767194667878176,0.06041262965542283,0.07509130603313596,0.07180703355692522,0.047003119353948256,0.028883192288330646,0.07153284190996044,0.04372941653232454,0.06863974826293828,0.03391405816930059,0.051656825148328776,0.07234775026772715,0.05424428092270906,0.05042084851049708,0.03274642370748034,0.045626848230005554,0.07962492735087899,0.06566748335625747,0.07693021625686527,0.053066797395686274,0.03644223281456392,0.08489464237684168,0.04994428903155544,0.04557885920072407,0.046651092865821364,0.05716126702653812,0.029472803928965882,0.03680357859494845,0.02907461993793374,0.025777748984181684,0.07413275757111576,0.03555415599509847,0.07778972082975323,0.05149824283084547,0.033872625496735156,0.058516560349443976,0.05625367849760431,0.0331612454473411,0.0949622232244232,0.049198755789353996,0.03220838840797518,0.04074510299181743,0.09944394382816056,0.061159419014008995,0.08114005361232313,0.06814940423898005,0.0571231804123483,0.02942071067467659,0.04891113554269047,0.0439397144283265,0.053696560891415855,0.06162085022284214,0.06435125326384712,0.054386470271241154,0.06655501234173573,0.11693337849163674,0.06439225053770779,0.11811454476418148,0.08168805726418711,0.07215941114840425,0.03848681812365082,0.0695982879218444,0.09401440358079115,0.04582359204725719,0.08063239552493616,0.057209764930314995,0.06676847564092274,0.04662495279714328,0.053823975606899235,0.07477435593791411,0.11395196762442243,0.03398582793927004,0.06537748894929174,0.10816789487400547,0.033912199540239434,0.03336756579590865,0.01952483841053085,0.033287893010887,0.07817874207867472,0.05532957040803222,0.09064456026692073,0.04446285314562059,0.05069707809284411,0.03946836925260262,0.0575599885262449,0.07143565242935267,0.03819845555908542,0.07233235846971522,0.053848963184524236,0.05778133980494043,0.05831989963357402,0.10785034846545034,0.06571312229629998,0.0767850361519865,0.10478131040577618,0.033968835335686814,0.02716865076688616,0.019585293605825664,0.07890188459288618,0.06119493221725482,0.04559171693601381,0.05518618465702067,0.04680826531949826,0.0536828650178202,0.04477435914219011,0.06280284492242647,0.0538542905623647,0.06477072475354113,0.06457087715168276,0.058416980443488815,0.07695535439733514,0.06237465461643756,0.0676660955107261,0.03205210258976927,0.05931557776316072,0.05865515697610838,0.05592607825099396,0.08791333002331024,0.0686888751855064,0.05699087695145418,0.032726373065151054,0.05835666516459817,0.05453046649695052,0.043046769660098794,0.06190578792069188,0.019494835496671095,0.04174263714869182,0.059166289163773596,0.03371371265802552,0.06405698880245457,0.0871716207548598,0.051293861226502646,0.04130382001486157,0.04527201928892934,0.09985309328795963,0.04021731796312376,0.06313125035122942,0.027376777357573583,0.021097865922830476,0.028600613188019496,0.05171653634902248,0.09028623057857557,0.04065016722231911,0.03492792298397425,0.05154546973653527,0.06231536456778433,0.0739470705659986,0.06988884685305721,0.12592454083574026,0.06802759351531142,0.054522209812620986,0.06204232499373016,0.06235680440589901,0.09067876620929431,0.03963107333284542,0.09579787159788325,0.11520485375561246,0.0671880643337262,0.046112349648485824,0.058932571781644655,0.029682690357009968,0.06089893866307726,0.06786157439653948,0.07297858543328019,0.10189153105509767,0.04773162489111959,0.052587808910972186,0.06597317505327518,0.028431942100296155,0.09808243005167015,0.07151187224564133,0.08862772079080435,0.0851845009944453,0.08194683027834833,0.038337547642045285,0.08596901238558025,0.056813906447648575,0.046370094622044854,0.05562793974952316,0.055304709658361546,0.03546263780821344,0.06551075269431544,0.05356525537037661,0.09597051057062815,0.0462000230397927,0.04736160054266511,0.022512049317141077,0.044291244212446776,0.06042523772926718,0.022226239505704414,0.05841451132941451,0.020338619907073405,0.035872070049651796,0.05157282234466829,0.04507412925189139,0.05188678146566055,0.039464916843638904,0.0806518642614958,0.04158567092817955,0.06145981263979949,0.05398899413013461,0.06691179164800096,0.05706404270761171,0.05941471267685485,0.05293219148112798,0.060919736011081006,0.06718346118281411,0.05809048218720533,0.06615133663573346,0.056361759459336046,0.07528523331751585,0.04018232092766779,0.06601502256158062,0.04872871422486616,0.05007749818148524,0.050151390981232655,0.05668788607039325,0.04749649511929078,0.06475174009640786,0.06194277386964828,0.078742922746891,0.04890826885494707,0.06313452265519967,0.07099948881836059,0.05761096329042251,0.04778576825300473,0.04609994951070206,0.06790027986019678,0.05051833779131211,0.051230269193886346,0.06072455934536301,0.06234501558017545,0.04683477932318512,0.046928516247311106,0.06285959322162081,0.06039730985971422,0.07405927833199658,0.07205318111140073,0.027857236235966972,0.07633974558146728,0.04584281717836484,0.044054999350573665,0.03799865972796668,0.027144288376129387,0.04487937783368855,0.04400561650920898,0.041312375661523355,0.03608921250186878,0.05656040204425327,0.07998777944638023,0.06024183766547637,0.06165876866790808,0.07665899072272571,0.03546939909391234,0.06592074178300922,0.07698037049189249,0.05173225515622747,0.06004635302882115,0.08732219034922604,0.04748541912473234,0.032573251018607405,0.04757073607978668,0.07627750445766228,0.09250275592050464,0.03825558411136886,0.035009937513619666,0.046958777946858654,0.025645237740958594,0.035617630671929794,0.09491260207766583,0.04783131424124256,0.05066754685869691,0.06432632396472245,0.1184281394662393,0.07777270648445182,0.06911946095893724,0.055746425379755764,0.08049658727873943,0.04427090108735788,0.06477445266094574,0.049173589409126986,0.07379462889517174,0.045132144975730856,0.042045065059644435,0.060629079739625565,0.04030258772734549,0.04495571816902574,0.037721053219359826,0.09481110882065066,0.053709957042629375,0.04531364788692269,0.0767713753413211,0.07698186189528622,0.07596204350057012,0.054575324577155165,0.09099426721212588,0.07952123090029145,0.020830993948357152,0.046873710833379184,0.014643858253410746,0.08331245475383965,0.09931156720390469,0.03636448341855265,0.022363937965965603,0.024688536339882564,0.03971763520655383,0.04800322334666662,0.06307570802762401,0.07102169209232548,0.06632052242287119,0.06836599944530852,0.059127468940233054,0.03955900786503039,0.025201476533036594,0.08098685504421989,0.024026276618074827,0.10378750078189625,0.02329584171846068,0.06969893153467954,0.07137244596884991,0.05664483171246657,0.08412860629669762,0.05494451251860175,0.045664427930161136,0.052843638286676105,0.06667900020755284,0.049717913556729776,0.08491921804500345,0.0661014413794233,0.09613771434957477,0.04784891213474811,0.06414814298567464,0.07027775713271546,0.04088703409370685,0.03617922645778125,0.08926284384660958,0.10360042636148158,0.054939978537765076,0.0731178621208067,0.07233992080063756,0.02220008712143546,0.06301763568006613,0.07581598060706661,0.05147942566488288,0.05273855616702972,0.05562386737474296,0.06435047306767293,0.05460147089498253,0.05347214536577367,0.07913499022433934,0.047067986639849034,0.07564303117778841,0.03483654020090262,0.07526082636777334,0.06006748836368811,0.06737350214823758,0.09538902340032883,0.06387441658822274,0.03738548876000542,0.05560461979099207,0.03962156627118997,0.037157284412866136,0.03890637681733694,0.03524029592952743,0.042539669849187015,0.06475877618559563,0.04044292637954795,0.04720191013401629,0.09742145692915992,0.04556167560966816,0.08873686577637126,0.077433933400374,0.055643296110371686,0.055620386072547504,0.021232866922645578,0.05989196415129854,0.05772410847381842,0.042530547473812776,0.07287144327560102,0.08011305280132974,0.04157504562305993,0.06980714426064796,0.08707639948740686,0.05723490335848826,0.07052671966014776,0.0441868381809821,0.08172502387630372,0.0425061343750912,0.0631801414720884,0.09316789041250316,0.05888516477671661,0.048096463513803166,0.05600528480745371,0.034078194718970056,0.04720706046470875,0.06391674788349902,0.038200654971875414,0.05598763739424641,0.04767783806058989,0.0744824775136817,0.04949896030280568,0.05385387986150601,0.06134617750156118,0.09583109430433287,0.07470607184354881,0.05625485764296162,0.0935028893044291,0.09985573417102259,0.0704189871117776,0.08460109559365744,0.10593339743676684,0.048769307272122364,0.052792737188718464,0.08464694975203252,0.04529897625885821,0.027427008646169617,0.09269185307821609,0.08437570621187421,0.06981419162513701,0.04730729052843307,0.10642357675842608,0.07636133663833533,0.028637061444719544,0.04879534043356701,0.028886238669145064,0.0191141190638554,0.027001796199656133,0.046683372135092834,0.0526274695313817,0.04221723122811298,0.0801638808313193,0.06159349330237682,0.07550779585275819,0.049660906437794014,0.08458152808463372,0.04276682493029653,0.029207341114888218,0.07501561148601997,0.060687313939129975,0.06063054216280778,0.060341775512508425,0.05313765034944555,0.059281567345090214,0.04704341628690876,0.046172921891621345,0.053966673180612074,0.04345964467641934,0.03345925261857154,0.03230607223227756,0.030066993746898616,0.052179732871360844,0.061965711205164344,0.03837862077926127,0.04009475501076504,0.04277798650364407,0.0499281477608031,0.06573218736029075,0.060877593153188095,0.1088543850086674,0.06941589445233712,0.07373578784256372,0.07338552042848707,0.09687716395131694,0.06055947304821207,0.028830914422211903,0.12710262978547715,0.07071508518948812,0.11402272000052859,0.07800882142718084,0.08405113404051387,0.06752458053091681,0.06349278467005963,0.05474952638984166,0.05989668118898371,0.047854661344846984,0.06067451369805535,0.06514064299850818,0.05371350616269854,0.04392944178593702,0.07858392226566059,0.05235553960542611,0.05868101733132266,0.06585575132612624,0.04387775682886941,0.07695490390836582,0.05123215608754512,0.0449846511560736,0.050138426194873076,0.06702458941258006,0.05530585492941736,0.08874984778510515,0.04384111203225724,0.057368590565525505,0.049776875301905305,0.06159794421226646,0.09440250255023391,0.119730701732922,0.06582902689035107,0.07224528576548454,0.11052629996021565,0.02538336207797402,0.062446316564241086,0.0375883198111643,0.06763821802515742,0.06913996927044727,0.13901365777563743,0.08137104298432381,0.05081923287608366,0.019428116203878656,0.08656883617809423,0.09428142085915514,0.03577959730102264,0.02662818188122412,0.04172717160057009,0.030152288265996,0.05706124667240803,0.02265348066599877,0.07746660498556658,0.09569222360772175,0.06344957751904141,0.06951050514293618,0.06456986549358856,0.10666181712170597,0.07211301913158182,0.049645883164787075,0.08732464107458268,0.050206641089854516,0.05397439071838,0.06736955226405192,0.05437092077977713,0.06087250386898123,0.05106810417533839,0.08762461207567916,0.023363025510573822,0.04571440100657585,0.053890063647265514,0.05084193069611574,0.0780052590881252,0.048211470343514105,0.0666375085674463,0.08850043713750308,0.047181914817434806,0.04398170971806582,0.06338836260657311,0.07077032330256981,0.0874265041459281,0.04668483984138659,0.03848437673420284,0.029302468123601932,0.057996769836388726,0.035411585132025955,0.03175757175541947,0.059698514479302196,0.07172879911944594,0.07707621215089776,0.06137617727500136,0.03118499048912994,0.05121142613911976,0.07098117465595488,0.04858404873832406,0.061778791771457266,0.051581032664458244,0.07003636067637606,0.05562694125149738,0.054780652047430094,0.0785736329752918,0.0884594231018025,0.07750366161647602,0.09237909305001675,0.022653514545329278,0.04349265533597935,0.05639327239816547,0.03886187536646389,0.03569494149274822,0.0705977963057398,0.06408922528660979,0.035808506877325695,0.07529332597481983,0.054519133611036066,0.09399421903688411,0.0830997374629632,0.05373333383184187,0.041866436477168985,0.07925230058359732,0.06647695937556966,0.04809837582211396,0.061917266113156004,0.06435119295397715,0.06577208676685016,0.05648463623279653,0.04736772139317889,0.05200413050597624,0.1113477272473865,0.01708420028941497,0.06755142050711423,0.03915545862306058,0.04927754077118424,0.10281891437096514,0.07835890139755333,0.048775039854929654,0.0503517224066654,0.06263156943757638,0.04900138382323364,0.025387185766544706,0.02731398159641678,0.03007046993094673,0.025401653895084957,0.04917618199158067,0.06673999149614453,0.05558457338451083,0.08530059699612519,0.1103699732446963,0.03327050687191559,0.08232185342769896,0.043054771628616616,0.06677890501286496,0.05345721769184274,0.03968235190265507,0.06312965731129128,0.04504798211732095,0.056333981898411684,0.04731113663038113,0.0472083564498494,0.048233090999774235,0.04749986674037347,0.08941199344180523,0.11317824835901702,0.04307908049079629,0.056517991239312726,0.12202891672018341,0.034690532133209606,0.029490856614332372,0.02442675063722753,0.07025084803581745,0.08964784479781163,0.03782514468745919,0.03954831670408509,0.08225074108190811,0.10682477061547221,0.05544593024173183,0.05857901623628825,0.03996333954418088,0.030921519780261416,0.10154081359390024,0.1013750724066399,0.08986076219580415,0.04995747089994648,0.04485786787283887,0.08165550254231252,0.03977072183647523,0.09176933984282497,0.05270789799964188,0.05645545910082267,0.09130067097140714,0.06954030831264656,0.07493823116290818,0.062234801304744666,0.049229451960576855,0.06774065197324947,0.0800057038449667,0.07124363067568894,0.060555755499894275,0.04153437316086304,0.0537634819090876,0.06890752440538273,0.05006349428775819,0.0863486280461985,0.06525653137073767,0.07481774404140938,0.08700902448155398,0.06778890369891245,0.08523786713961248,0.07256857801231306,0.050874763951727214,0.033954660778435175,0.040414138477910054,0.0484896843906215,0.09061373803642132,0.05994635243546004,0.06192728405210635,0.0546957464518687,0.07138662417111012,0.04940386625183127,0.0390955534014936,0.059805408821479916,0.06976897117197275,0.07592437277144791,0.07358828333768046,0.04870490847105926,0.1166370000910324,0.07973032329615379,0.07614848767645474,0.0673340365954649,0.042822409595692355,0.09034162058582174,0.030020031999879737,0.10302297041914348,0.11625422720171417,0.02661056383733598,0.04165623428373682,0.08825872312368536,0.06635735159231734,0.02705264517148428,0.04529977522128483,0.08667685254134716,0.028363571103745787,0.06810963304651975,0.07221937479389004,0.057454108953158334,0.07491960773322938,0.07407111466109702,0.05900789208754219,0.027371305609103072,0.035634658244918745,0.04606342649003421,0.05691435294971863,0.0605803717945498,0.0652219452184545,0.052123697553519664,0.055842396257032904,0.14092358527179358,0.06475138667635807,0.06594624537605433,0.06847033023081467,0.10661988998389038,0.024729858987859437,0.04247835599590467,0.04904090301013924,0.05979089213134142,0.03907640356803463,0.09579000675445258,0.10854235326304441,0.0568134860629838,0.13426094805023162,0.05695597394709015,0.04584094140132573,0.0516923257347226,0.04129992021972168,0.05000184495794771,0.029945512309531117,0.0589786685442377,0.07716480878565199,0.04408265608480804,0.027391203376153122,0.07333951933420672,0.03847248331835375,0.04067589107205603,0.07830869355661799,0.041589650514449704,0.06122144646928079,0.06229905368226776,0.026550205330923872,0.0430905548659793,0.0922013615775108,0.04225740310977213,0.05186070416151815,0.05045191552742876,0.04249163810921911,0.051576927855483415,0.09897944513563725,0.08168361350677003,0.08456537481558055,0.06979841860126165,0.04210824834516555,0.05558710046193804,0.049154008302581695,0.057678637962450804,0.028580669016536536,0.05028350213277598,0.06446953904963411,0.10680305608235233,0.07421055904218163,0.0343231360076416,0.05691555852496758,0.03932681331891055,0.10399921391903515,0.05317334954811843,0.08554709176070704,0.07417804548553202,0.049380499169039825,0.09347582928539455,0.02909751165438335,0.047394006473826904,0.04240672430339562,0.09035331022635823,0.060053730672816316,0.07194798665965543,0.10594179042504187,0.09138512290329225,0.04466072164400059,0.08368128140030726,0.034271777980731645,0.11874937774670881,0.056682787551966166,0.08968370732584953,0.06849785487714348,0.058461509243713086,0.03339893401047951,0.07160431553347345,0.056341263044392687,0.02713755679834844,0.03646118626487715,0.07580040941601089,0.06685746220354774,0.08058823698190812,0.068826090652451,0.08764021343928755,0.08212922396059658,0.08359115476382194,0.03172485892077331,0.04809032401292839,0.03935648019980544,0.045598558078279415,0.039760303593189265,0.04713760383453269,0.08120898200779775,0.10432883149535317,0.06643118973128166,0.03581030073162918,0.05350924663329095,0.0478152161653549,0.0682575119597932,0.06570303567091046,0.0860902587102687,0.05872339170811555,0.027886940187101195,0.048684848449639696,0.053977350389267716,0.04346430952792673,0.0668625303112027,0.0522119390735881,0.05720991510346412,0.050931720068840475,0.06967588295006996,0.1275342914067583,0.041946424040830314,0.040028944730812324,0.03657652746143848,0.04257398681767039,0.04256514958220593,0.05791713978832399,0.06557153972578657,0.05015743281006726,0.030350032278923057,0.04933381375047509,0.04802482901636219,0.03123709926154488,0.02759786417045065,0.09412434064912198,0.11351892192315838,0.049071247770775615,0.0637839010934316,0.08501204919349355,0.056578296466158744,0.0644545444001229,0.04351185258238875,0.08056771410037912,0.08556813568753786,0.08793198645326891,0.04594482422665892,0.04633045537537763,0.03432978194305168,0.09344159566571776,0.08986674524595746,0.0429259879107074,0.048791240061616906,0.05998674720351683,0.08583952619137045,0.054700556501975174,0.0555815231574083,0.06630487005256255,0.02860886985099769,0.07560542344914388,0.06364355587838269,0.024496758082649714,0.04733461292680374,0.04578323362523542,0.05137834773686335,0.04400222185762749,0.04316900789736188,0.057054104273019796,0.06598344977933557,0.09911302226703839,0.06099676185575199,0.06736183540943207,0.08771554482636679,0.036411075773465314,0.027273564086910326,0.07291421487377132,0.0743321400893477,0.047458755298490134,0.042730346158445606,0.09343140173108419,0.11192659370453341,0.0391253357853696,0.05456189524926618,0.0364579778367813,0.02659864739393228,0.05004855261366207,0.048786034260985704,0.06853327942766484,0.025444649556840688,0.050907215528802646,0.03350611665151418,0.052719771209942604,0.04537148177344144,0.07284459137716455,0.08872987300503703,0.033434539110323576,0.052036097894335276,0.0691843629787138,0.09259444679014607,0.07495200173995765,0.05604411137294853,0.08057230154821321,0.0993261346201677,0.07054762435545028,0.06366384470026346,0.09571938120891872,0.07359744576884354,0.039697262465963466,0.02917159303296681,0.07868740165867322,0.07899833451597658,0.05344731250844115,0.05768217252185854,0.05758997043761193,0.05544208852957123,0.054110661193599155,0.058047521733863496,0.09203526852236847,0.07047991524930916,0.07032423891424813,0.06153607907591121,0.04819100434707528,0.08887923004765046,0.09186440881157462,0.0751090957559421,0.0936195331910451,0.06839633757594167,0.05722862379342268,0.07566550436242099,0.04728510548535037,0.08932171643894349,0.10480201273106692,0.09404764789899814,0.04551453227384546,0.06590474615789978,0.07904725241585693,0.06003799671170943,0.027521075290984617,0.033319986369785545,0.09032371707497364,0.03326970906736627,0.03198831143231662,0.05773884973751419,0.11141828544158158,0.040789033380662296,0.03774805020249954,0.04780722533926935,0.04635676941250219,0.05281341143424746,0.03645271980321377,0.049424480714573636,0.06179110478382885,0.06673957815069367,0.03706822945610375,0.03318254237845783,0.02503233992169542,0.032647478241151245,0.05782516504778628,0.06828708050957853,0.06396477739130073,0.07279554942263597,0.039801562425135904,0.08891860228356623,0.03318922492002067,0.05366296373967919,0.02410324407935449,0.07733718831665369,0.051840967884129174,0.06141620103302677,0.08913036972411832,0.03686191408952605,0.08721780281340591,0.08230151564226619,0.043232193923009275,0.07128056652188723,0.05965394753767994,0.058624107756243556,0.05697332414041555,0.06627401458033864,0.06139442312654187,0.05120510476730781,0.1344451956283535,0.07042123270937165,0.01911962924502315,0.060585856230780485,0.05523077464735209,0.08009205058086179,0.07080404000503418,0.04192831202187686,0.0589106695076869,0.0488714379262559,0.13272126647601834,0.04926610124031554,0.02518941886429,0.05387015499620283,0.022356727086277922,0.06391648359821467,0.023920445785330802,0.06997734496734453,0.08614305008805619,0.03322788098107239,0.058242586825071566,0.04033222477107159,0.04988391347843036,0.07043962053856603,0.019279112771254957,0.039057498844798415,0.0636958553918015,0.025324011888709298,0.047823266242435936,0.05687479513705854,0.07499800256654231,0.07031395242482333,0.06086043451995126,0.03438297662133244,0.0635195884209891,0.0683544333269171,0.06887023908326818,0.03539695312590299,0.08749729546481098,0.0762876150300814,0.04016909205385091,0.08168272701453241,0.061236630778350024,0.09297091689169945,0.03170701709751137,0.021669071599410873,0.11900381785111011,0.09894535838425583,0.11816515377334517,0.047281619184830724,0.06874436957564355,0.05145265101902632,0.06475577315171978,0.03966289073178509,0.04802974925465714,0.05316805505005203,0.05388440653229919,0.045313920765361136,0.08627884354436141,0.06538347181462015,0.08435566633291271,0.07423958724797683,0.06494486950556862,0.06541667724025245,0.05279773437246258,0.04784808829784875,0.045474336017643835,0.02115613701396414,0.05591157292244091,0.02960657239668155,0.0972617689997936,0.0608539755563343,0.03485166129040469,0.06331807374457173,0.0797339693140008,0.05907828418176486,0.033182532976935186,0.047320389651512744,0.04419968468912432,0.07439089272853484,0.028985020066607383,0.08467562782380446,0.06382253767885113,0.06274999762864987,0.06754287192350868,0.06644411732106754,0.07390212558139149,0.12431602361256656,0.0680714714958307,0.020238920901370926,0.08091860826863226,0.045829426792126635,0.05612614961891895,0.03891680338434321,0.10780233414014524,0.09930894290753717,0.0593057300143328,0.07782404731679028,0.04668044533637109,0.06124065865044925,0.08201141430919406,0.08512744491838234,0.04254652061213865,0.07999203751409932,0.03189467579536118,0.04863062765023004,0.050863067719094095,0.02272217970367147,0.06303723182898657,0.06213630604144437,0.10126581382888296,0.0692189595759261,0.11007669454862933,0.04932240240864468,0.06749981320452315,0.026829392505862058,0.02645071654119961,0.046304708557441634,0.05145877998164093,0.016255522756970713,0.02040936282034168,0.07125371141615393,0.11028638023992787,0.05353364433803481,0.05264458628089089,0.034508561168032456,0.06229869886473957,0.05925467108507944,0.08680252294346516,0.08060217268193663,0.046737963207521487,0.06540168820950074,0.08872614135969767,0.059386498823054884,0.07138913950037576,0.04941065890306896,0.06149440206724697,0.046072913378785794,0.08259814591861527,0.04459301871912043,0.0370106565583871,0.09043814466041307,0.08647981343307033,0.03854768717229878,0.04289796542644449,0.04949249616664711,0.07402373555040917,0.058286014254111965,0.04546550925597584,0.0940582144978675,0.03679140340254599,0.0994463194530018,0.04814461179610053,0.06193022403994217,0.07572809281953848,0.1022240960277174,0.06721719618054811,0.05194488374537511,0.0364493621648759,0.10720963810571196,0.1274077707040633,0.03849795024306396,0.06428878150411739,0.054190664410255426,0.08960673951787206,0.10862821772995113,0.039843549992504876,0.05097517612888329,0.08510675748050549,0.09485460832902456,0.07271551112242816,0.042595036862125964,0.07625001011456452,0.04242058831068695,0.09138810419037773,0.05112021513921586,0.06810243162126402,0.03715867074799681,0.04599690679202831,0.043953742075703205,0.04925454534124105,0.029252846604925442,0.04610508393519234,0.0613500570349772,0.05874305340970725,0.05833781407664611,0.018446273771871004,0.041417227655534405,0.10146951562875646,0.08598972831202248,0.030845566298628155,0.06306833786920146,0.06076420734684463,0.07081548141928751,0.08560257820243289,0.04712723297964947,0.045305386074811306,0.055182836393755215,0.09902800416237005,0.02628803611226534,0.07764090059659386,0.06504351507755932,0.0599258003918088,0.043904187238320805,0.027430220112252504,0.03777227971829656,0.0711317152519988,0.049387444296636274,0.0316119529974014,0.05547893855673025,0.06006330732598652,0.06115045865236996,0.029852348931014343,0.0711126031882556,0.04897939936289869,0.0687093022429036,0.04317602266536791,0.034068738626517,0.046255616318137203,0.039908069036238315,0.06281058843460727,0.03585856184611327,0.037579027844004534,0.03493466793234149,0.047958234728885656,0.026922475234552885,0.042633219811092145,0.06342786148748161,0.07787630589426911,0.0674140704289248,0.06394155266711288,0.03456092655356525,0.032358917082271614,0.03553020265087973,0.04127975294334053,0.06974972850643447,0.05835761851310277,0.04287810417873078,0.025839747736351486,0.038069151454846246,0.024979976149949876,0.0675999656889922,0.07704546179031602,0.10794662850848956,0.0364627408470539,0.07181104476349497,0.0642616726781694,0.056910462947505465,0.03319875255104711,0.0670679835912513,0.0880489100483916,0.10067652365541667,0.0386338039425942,0.03893422010763497,0.06803443851616113,0.07771888185231306,0.053289808962749846,0.08943771513090429,0.04198314823370975,0.02861570911420336,0.01943615883659111,0.08256863061939973,0.03725933132267678,0.0266476860349805,0.10303842160509821,0.06936110678258617,0.06642926440248582,0.03536391285076044,0.07751264893166028,0.047227745161945174,0.060928739633413144,0.060411538434969984,0.0447179941496501,0.03429634076618869,0.05429434909490153,0.06884302842654488,0.039599545716218286,0.09635496565008311,0.062022413625952004,0.0886353868391328,0.08495419140218853,0.04224745566067479,0.054430496832265335,0.042949272591862715,0.06691900365772446,0.06314449476238079,0.07989112673633336,0.08772372083782061,0.08191530459316901,0.04888515861370868,0.058396309393727065,0.1360682455775041,0.1005510902717674,0.060773444135574,0.06920223215240547,0.07326241432273628,0.04221981215150531,0.05756379628013121,0.04347855186883178,0.041868725688003317,0.06891503497292036,0.07210724746719142,0.08397262899496157,0.06747370793248973,0.04207960392259233,0.05126243067863056,0.03902963122980716,0.09828994665700475,0.051008785282281865,0.03883120881423701,0.07336805638096985,0.05564585960814922,0.061245977260509364,0.0848071666371417,0.05129514984071211,0.02545122321030644,0.05903191941255534,0.04615381505486816,0.028526998650971417,0.01767896180474165,0.05501532227261708,0.038883538251396565,0.02372694297949933,0.033699387514718064,0.0642854425693021,0.04005670692383977,0.03853262574187202,0.05387596057041398,0.026559241819340423,0.05467088955328182,0.09513952929310554,0.054970001235772066,0.1374401980066394,0.07274443294684485,0.057908309578113465,0.05101080050742435,0.06356998327006248,0.09149724059509533,0.030709522638396325,0.06850414590280317,0.08003913179135363,0.04540598939486019,0.06594306323975359,0.0785561679210553,0.04816812615746428,0.0481714459814328,0.054647096762104524,0.12818463693923302,0.060980014026003504,0.03985799474685867,0.06021308773819628,0.07444764192166194,0.05810133502709282,0.06190136183008669,0.04085837177887206,0.05888832615305144,0.05763303024638685,0.05057143021615903,0.04253969344873618,0.05582437004781491,0.0258402514524085,0.06518016939009863,0.06805226157731134,0.03331274044742777,0.059201610393532444,0.05893043176166239,0.06119039822256483,0.06998985390963347,0.044215873303774134,0.0845718895069745,0.06226909874516241,0.027268813343830207,0.097660442161668,0.030972056114930712,0.07702712881369991,0.092288636544527,0.034920068279174064,0.06572586900227112,0.029716192282668388,0.05987797575296279,0.05897211082427782,0.05283819275976355,0.056501142269591915,0.060124746412131086,0.07850545977004994,0.042915735869081574,0.06526022883756125,0.05891017234039709,0.05386810625175362,0.050032613161752115,0.034980397272746204,0.0429695612406376,0.03788771268076659,0.06208642746422843,0.04614765431803513,0.05318913551965147,0.0626296490717732,0.05887124229623044,0.016875450766573586,0.04272826604515751,0.12381076788693014,0.036541553544994075,0.06617128698963919,0.0362572044401903,0.059301077031895605,0.040895029792979466,0.06320609314111757,0.0609251323275348,0.0443989076130462,0.025863668029729194,0.045694605503294426,0.09251577281926811,0.07398334927793301,0.06380970746099635,0.07667572373617523,0.058881882882102846,0.06027003327247087,0.08870893609064205,0.07259681408985735,0.04434847552187151,0.09605220173241233,0.053392565117454,0.09818761277095289,0.06031462396607511,0.04161537038550831,0.09416949361535529,0.07344239433010673,0.05704836253384342,0.08480702795819434,0.10174686607439966,0.11279330802238391,0.04167958038034994,0.10713185212137132,0.06946348707090728,0.06151001447457255,0.047313542400320485,0.020685335741089425,0.027261671706772465,0.045707394983972915,0.031208961696722857,0.05096857440324514,0.03788892233589857,0.0856834654627389,0.04481875596817103,0.08125641483347752,0.058685998637827856,0.08801451466138115,0.05830806243888787,0.10516999602265052,0.024354182255827465,0.03510756698166621,0.02430013879994529,0.06095305086619342,0.02222776364784361,0.029021141019111702,0.056437295336747136,0.033420619264045534,0.04903777653963668,0.053321929642278026,0.02645915792665384,0.03389340924889516,0.024770820711033145,0.024557070217922344,0.0854023000166779,0.035228220378836175,0.04685356236402166,0.029368631551775357,0.019859536079202548,0.09450400289001995,0.10405037875672839,0.03884791439111926,0.02358986539846267,0.04962083525590396,0.022989808958240574,0.08913534099687208,0.0688766899556862,0.13565188824077162,0.06546576101025472,0.12248261193478353,0.02652526648718349,0.05976124977216067,0.05258666500902175,0.05297388047830002,0.08326813914819224,0.06869044900931444,0.05402957443922488,0.059733491851115754,0.05729758383435964,0.04010558773736771,0.0693663296793679,0.0474735049220141,0.030027269886930025,0.07337658911634441,0.02965934062643368,0.026259248561591134,0.032461266552801765,0.043679987385983346,0.05377038675079642,0.06761514132871628,0.04856620747517552,0.0326823391289856,0.10895117284566141,0.10787121714279678,0.04764358611799033,0.029486898000425886,0.04218990073770833,0.049810554288044456,0.06215966743791551,0.07754843373993674,0.10151245557118854,0.09301628784712916,0.02842051519355144,0.10516307393433989,0.11153561095569223,0.05539386910371517,0.07483671797197328,0.04898066487383065,0.08358060339593203,0.0705601546498315,0.028642141063218576,0.06108041900361613,0.0754789119044686,0.04636243657488994,0.07078968928388535,0.040264674518913246,0.06747104956334467,0.051599808546216964,0.09170713980883748,0.051926327720486186,0.0317075465272678,0.0646563482962115,0.08729014539685905,0.03846779586670421,0.11915688785566354,0.05802199695162797,0.09074827166165227,0.0399693300500574,0.06272988170446446,0.0785785582851255,0.043973585603101835,0.055819710807178465,0.027652980989271794,0.04558684355392821,0.06673415213769486,0.02387945339067564,0.05294013000635622,0.07316093125491366,0.036984172080922875,0.07428765640342044,0.03398737957057441,0.05518731861528484,0.0747694255402886,0.024940344688772948,0.029476385387039193,0.018238168028948988,0.03653965056746546,0.05503921650090289,0.06040639715889866,0.06287819749939164,0.056314216814884036,0.02072788482835464,0.0962016973380122,0.025630478410327208,0.042095350242185706,0.08924459318656446,0.05543335381011335,0.028288272388620975,0.0344714146909415,0.06854839979269037,0.04270820194186765,0.0789537230905816,0.08611944989040723,0.054676073077335935,0.0528603735062761,0.03420370859221871,0.05167968461065329,0.029748232392381915,0.034795230114435784,0.06635515507791179,0.03679584273790351,0.03489490119920302,0.05088260105522572,0.050747254333844354,0.04534085089870442,0.038471951871109675,0.07543593666450639,0.06444569521304092,0.072911454747298,0.06834073772298928,0.07214782416230427,0.050152467358314454,0.03240843153639011,0.04851055441450052,0.07946466068298284,0.019302083937906743,0.07095291594223674,0.01763400981658999,0.059678512849856445,0.11457253411334464,0.06965917076043533,0.09854362517368259,0.0477054714893007,0.04690228482928385,0.029133665189298552,0.046177350163132055,0.04423301918101523,0.0479076985535014,0.04285185956946078,0.10805601424964797,0.07230969787396724,0.08365718493815323,0.06807706264759357,0.06293742211298231,0.03084754987429273,0.0626152903688607,0.08430100980094551,0.027017025116134918,0.06577786239741491,0.06380031915130331,0.027959555570185035,0.028502507049524707,0.0778057952241507,0.05227032838131865,0.10115378821139379,0.07272185171759522,0.07193330226270422,0.05470354071668922,0.07603433300913776,0.06613223459610704,0.046426512293407114,0.03924219019813857,0.05237706635879443,0.03643861816021288,0.0922071368361864,0.03285331871830073,0.04051438925473206,0.05012470933486262,0.050770709802826317,0.047980881330945836,0.05388750080261198,0.09665294299130513,0.03795374361290068,0.09038114536641359,0.051903216865243094,0.08950055290037894,0.10020478495643026,0.07238007275352203,0.06964767296903152,0.06184429753625918,0.05889422684628629,0.037784947852253045,0.046869743005826504,0.05615579351479165,0.07875804028713367,0.05677029444344742,0.05517277448487137,0.03906818451918251,0.12151603138865093,0.05109690284639016,0.08867367523869334,0.047888567480873834,0.032760672585517035,0.030620934794593237,0.046992728171672465,0.048919114638801026,0.08539187865391316,0.04129910606291705,0.036694379893900855,0.03602476967207846,0.05588632133310537,0.07772697907455994,0.0721763190719078,0.030105352561882605,0.03937443357006819,0.09395255973087868,0.07606345497472146,0.08720132795157969,0.06405549484999917,0.047558073216416016,0.03795158383473566,0.047434780219076766,0.036171894634827964,0.05308894578466473,0.07466718147942876,0.07757084224729102,0.09328213581673955,0.034780582647768746,0.07136567454926301,0.09642921493263334,0.05490038497187021,0.042361444017415636,0.11883943632780798,0.10358088154017484,0.04753180828807778,0.058561340703719586,0.035117742889213696,0.028781038174848117,0.04106163388827676,0.0656323791232258,0.05024870445594521,0.03765600379940662,0.03033331922366322,0.05150013628837127,0.0347542307130475,0.0203307874010338,0.015372232762038923,0.04390525248846571,0.04431837892203217,0.043341062284192405,0.0716770454791746,0.05704187191713213,0.05678708283544584,0.058281120727103834,0.03603733663102899,0.03690058769045362,0.03902008166676208,0.05206486863378452,0.06280695377590234,0.11814324643096925,0.08423662261573361,0.09157942647488286,0.07617435807546698,0.03676150780360252,0.039640268205752956,0.07112383912030776,0.07131471458639133,0.023256124314871417,0.03622793076210472,0.04499596388490253,0.08273846093038531,0.07735396928375658,0.06115335683665955,0.05330378341869033,0.07769022144124607,0.08707103371292468,0.027611532782355164,0.08320833231657829,0.03916108023425541,0.06275731054423661,0.041298446650020394,0.08430972636704476,0.06931395463782952,0.06026194319252817,0.03407691511594125,0.0586932688059525,0.06418836748223809,0.044744553572402465,0.08721716938814761,0.0585408021181259,0.037982741624185634,0.0533122569309608,0.04547115826254423,0.053892053995163454,0.06611516012221909,0.08741458617419916,0.0682911650482363,0.040213537885166066,0.023621954303936994,0.04955798949087654,0.04991628145375935,0.03274263393601541,0.04541193461767835,0.056779047688446646,0.1340822428214383,0.10453174409196063,0.04402356887851695,0.11178604301397305,0.0651669527259312,0.04011437492153954,0.041621580243979564,0.035527884069712114,0.04331647005452981,0.059781292021199035,0.024517906633727993,0.03369155598729088,0.02982175474431229,0.08725657972855512,0.0610244678452474,0.05229386757470786,0.05288502393756262,0.039389233106773155,0.0586150413486481,0.044714928401381485,0.028060065377362418,0.08132244386073957,0.025951972654261735,0.029553676865544685,0.0573708050244167,0.05094390528802011,0.07539965663596727,0.06909306128640268,0.037516965480816435,0.09611150381203881,0.0987739513324578,0.07306687647038577,0.026278921742349637,0.04851698374014356,0.06727301270124927,0.10259952664430629,0.025053119709812312,0.030925102704971758,0.09768859014139497,0.103376222837247,0.04636054861716253,0.052538338184068764,0.0625298222018023,0.11402554292395106,0.05977161835008527,0.039886261037736764,0.07092665865749241,0.05142707275848238,0.09379208126323009,0.07042114783528977,0.06431895199343948,0.042062488535062836,0.07710317087722149,0.03392948190240819,0.04042489414333938,0.08633349370052107,0.04602956852813676,0.08070474535950224,0.07188737868662742,0.08620259928105405,0.0662120840099496,0.07794863854739828,0.053884407454150456,0.0429305088305524,0.04519896644665949,0.044343897162614075,0.05977400513079884,0.1181898154751678,0.05930450640823686,0.07309850294015886,0.06164706688526634,0.045152740048917776,0.09731328683373104,0.0793248462435493,0.0894921395023597,0.054793279168999176,0.08195311639321425,0.03317252911467151,0.06974542331894229,0.09070333556543843,0.07423542322945353,0.058564643598497404,0.07496900864847593,0.10838976619867442,0.04279617431664853,0.06408005101309772,0.10672574931006133,0.05679043153855192,0.09220449001185359,0.045336375375742324,0.034603518577285775,0.055826750738676725,0.07438742645365534,0.03416762768543391,0.039463110644288285,0.1264922705835703,0.04586630700053732,0.053128668628962115,0.06461702284181921,0.08403279149031251,0.07133484380976488,0.05173324500123467,0.02984292718770748,0.06473065555653049,0.04646786815335463,0.05155368559625055,0.069134556170492,0.05481350773541859,0.051865558738613565,0.04919369576483219,0.06705237131222339,0.02914680120301416,0.04933503799035278,0.034152130875410976,0.03281422735625925,0.06283136309964026,0.06445449576524914,0.020001770517860017,0.0729169789443397,0.04997541128789531,0.06715684069851974,0.05435713607085703,0.040084686704159746,0.03168002707303036,0.055476354807635464,0.0431218084011141,0.08904009588178258,0.04724131760725706,0.030494562387436343,0.05839565388304313,0.07061900726588928,0.09092716572922273,0.05810372522141499,0.06390212981237918,0.10306872003832783,0.05479634339365141,0.10336622142174777,0.08094859786231634,0.0166426148620751,0.020946997078263484,0.11142188982778421,0.0512664894479562,0.04399685641577969,0.052191083646591425,0.061442138944222124,0.054381478607720884,0.05345121285708056,0.1070437834517658,0.0797851471611385,0.051624385620101625,0.03619020257745768,0.0777589412544467,0.03877584548210534,0.06064666147032872,0.07802753218048353,0.07501397786247836,0.04454552657668462,0.03173538369459998,0.03170934501557662,0.05127602466464421,0.06975157991165697,0.045347018683924684,0.06446099975062591,0.03257098794115433,0.0362968050180691,0.05594724776961727,0.049022617613931556,0.056233868885889625,0.03582912065970823,0.03876786556285226,0.02851963019842504,0.044552834416905183,0.04593759087166956,0.020155125106156673,0.05517463387591756,0.05605570971168955,0.08267060666244352,0.05847917367749149,0.04859212028649817,0.018499654315500078,0.018140403986822144,0.034878263164820476,0.04065777314148459,0.02881441565849524,0.0835291997174044,0.07269328346441335,0.0902269925235588,0.023236722319156206,0.04707782966980147,0.05265613694955397,0.040566751662408695,0.030726664689919397,0.08019314624282511,0.07920309013242935,0.031571408516397795,0.06365787556268843,0.09981724240318078,0.06772054935595348,0.054362233389822115,0.09015330370606814,0.059593133789269975,0.047944765315638106,0.03960785011967652,0.08022381624396419,0.01877992900792758,0.03222256198217126,0.0755579092958331,0.04013476113609838,0.0759982693792193,0.05302525763012293,0.06136776016889786,0.07920888286779561,0.10100659361765568,0.039647682467195015,0.042211669141764704,0.0445678804291744,0.029213081858446052,0.09338110906758772,0.10174561548061638,0.05281943996267282,0.05488953849816232,0.06286191778121704,0.09116914359295836,0.0926474830139111,0.06537504820664226,0.0179358359540452,0.02235735580184906,0.03428066125377992,0.043589754708109815,0.05532583794560999,0.04141473537040879,0.06579622691281471,0.028743372530292115,0.08189264459748605,0.04948991279941178,0.048670971242047584,0.05065734308337597,0.0353932067706643,0.059927958855273016,0.07434249666999293,0.043095786469635654,0.06897357807281139,0.024093747480579557,0.06047194112138857,0.07304632443961971,0.061560311412916915,0.06087244874322917,0.08851728192524032,0.03081053185911255,0.07159419277113253,0.06395587555326475,0.10771269024094038,0.06744676241313147,0.06238842219117304,0.059040412562279036,0.03025270435720335,0.06080079777470828,0.05847827459635024,0.07394137789819744,0.07008367536278987,0.05576217464253641,0.04949306406287079,0.07589355095945252,0.03709599964068254,0.05164635172501078,0.08043386066990255,0.08834444910488364,0.07525637717612264,0.033287429220806526,0.07649014278574776,0.048740072784619004,0.0390316788420527,0.05619572074753158,0.08350411525732757,0.04506543701800175,0.04128130199971815,0.08324626954850235,0.037775953980275334,0.05411138756473318,0.07631955792396564,0.06352080552623564,0.03970813311805155,0.03984144862818108,0.07346525581791657,0.06791322848542794,0.06298159351995639,0.04218086194324617,0.04143586960398663,0.05943595572794681,0.07669401716827394,0.06453715097090243,0.03362193074967616,0.034023697251738955,0.052376123559328955,0.06223260464523422,0.0464633584241084,0.05204925183377551,0.06655367573691089,0.04260033467802136,0.05126723866117662,0.03693356309432956,0.060210274304003095,0.09406748599896608,0.07201539593576037,0.07455018008248353,0.03790062421815977,0.04754875921694473,0.030439489209496545,0.028674594878405926,0.04742669543753693,0.05342792417480819,0.04781558442789936,0.057357169435797224,0.08384956751736432,0.044821361186316556,0.06361858823305401,0.037437156169244944,0.0524222113258859,0.07545145593865252,0.032619310173344546,0.06741798691870807,0.023757051030575946,0.02456543969315611,0.0294454371432691,0.08143842255237305,0.06719222322932873,0.08117775043261037,0.10377904672669458,0.01861677310333778,0.06352358534272734,0.08414602833695801,0.036550599640361246,0.11150268879092887,0.026469734455415575,0.06626760869956616,0.03198728832913998,0.06555658773365595,0.021254851054116133,0.04129980424432326,0.0668731578078703,0.03471511032859152,0.062403558850065835,0.08301045918035561,0.09870793052580494,0.06257676868260635,0.11507967395157653,0.07939811150955409,0.09821024740950395,0.10253951415984947,0.10269718565577493,0.050749639350710515,0.058465696850123136,0.10159078523761582,0.05357299462187456,0.03442346621877825,0.08143075033320056,0.09488041947682109,0.06727445465001157,0.08395176572019714,0.0976650983810584,0.047353566474093396,0.10929751865504511,0.04989887378080046,0.04306057636609011,0.049429565319032864,0.02668148339785166,0.0762070098211532,0.061857329070346495,0.04464938264089174,0.030631370554496704,0.09223695653934291,0.0205151085008607,0.03314039016208545,0.0444473127119414,0.08091385273089241,0.06458890911062551,0.060218020189957755,0.050901520996016233,0.033680788687069016,0.04041301996394911,0.08875236687186941,0.04800785582699598,0.05256707533235029,0.08136499248136604,0.05244088612114594,0.11278032751433163,0.06127368723290453,0.03013333787607909,0.03665545672600253,0.05499023500779955,0.09088616588030773,0.0319972832183682,0.031081725066078567,0.03210939522790789,0.08761312929186987,0.048373556864156946,0.04638135412656339,0.06028827996143266,0.05903587884069777,0.04704725983318095,0.05653395756726175,0.032546748560678344,0.05381935982181015,0.07124273082258442,0.057500912397848096,0.07384745398440985,0.04623586808899913,0.06165023171592989,0.07388764482014332,0.03788178280494647,0.08222666402269899,0.08264480361208598,0.029315153671778896,0.07676622605464634,0.04950798734693478,0.05539447559155383,0.059426393915679075,0.05067430782732959,0.04954442134969799,0.07842166840700876,0.044970046775794394,0.0626842461574398,0.0409217499127161,0.07180244428221891,0.03224471515746704,0.0655680817398291,0.024840853587118815,0.02908327158569066,0.030254943756100196,0.032662611530818814,0.02399068438097975,0.032262195021319676,0.03286530837982623,0.046011919125788045,0.05104063244842548,0.06004408263913044,0.02971079195583087,0.060691911071892084,0.06138403592776422,0.017180164413586982,0.08975839288755555,0.03931018143974192,0.039092389172371185,0.028704743177795342,0.046154787789454754,0.06643509796962786,0.0647840726880992,0.0321591839164269,0.10965165067637937,0.06469863886194374,0.026475925971429913,0.0237337634027848,0.04384428475475555,0.05819858723143412,0.050934774956326326,0.048104355622592236,0.05447735643594825,0.06885660854736612,0.06920962578785653,0.05791994193183169,0.042148805798991024,0.05989277174353518,0.10039637143808894,0.057584287746898284,0.05230594066282652,0.030046419244637385,0.03959664524681417,0.031841537397464155,0.07173257382089329,0.025746613580052532,0.08363766261481538,0.039965087986533636,0.05854730714906751,0.052910178735499705,0.08545143822485804,0.024391890647190446,0.03828289014374034,0.04634650384065992,0.04077588797126434,0.07973870677123303,0.12652713509016286,0.04693370260129604,0.024255523488043936,0.04027518998098634,0.0495916581611384,0.06631603459230778,0.060073354726216034,0.09305859340426768,0.03423758548458379,0.06049547180668134,0.0350625327972795,0.04604830390736321,0.061646291207686804,0.050372931687560296,0.07310385797488338,0.11999472963576133,0.04327921267142324,0.05814901315629906,0.05150241775596831,0.05068434752992795,0.03949325164352247,0.06918814445060893,0.03603914694458433,0.052532507513700255,0.0734634038468716,0.08406247260114783,0.03600789387369966,0.04328617833367054,0.052560458467523496,0.04502114261939313,0.07133387727059669,0.08714549761764404,0.07776078369116719,0.03185006586619649,0.02445428617545356,0.02539757897204274,0.05875290781875731,0.02493324789499902,0.09059223853724077,0.056302901422725565,0.07059275908184232,0.062183987331289,0.07954978884811252,0.04900741447551531,0.07438317934230061,0.04493407646679123,0.0796113565233849,0.02951833095110422,0.10159096973982562,0.08447616104095422,0.027205672110981138,0.06888122508690049,0.0897518274642424,0.07212107524388348,0.05082201197550105,0.06321890264208435,0.06055471490014287,0.051790198446393175,0.052570920815196806,0.05992887346805289,0.075979953896093,0.04025370538977444,0.08130479597854749,0.04831485620279557,0.03162348766858766,0.03079866714162801,0.025404383082034392,0.044918327688898085,0.06589582532667448,0.0763175953618717,0.05485611749262446,0.11632310336195154,0.08709335578855174,0.06175879460088178,0.06280275707644921,0.05206527297553975,0.05743570579610239,0.039234176170558695,0.03437233964219709,0.07061102820348208,0.03197307183679349,0.039952978697062796,0.04707011124524706,0.03530967891388338,0.03827775540496498,0.062670111132083,0.0644160520057212,0.07106305707322849,0.06501146223998507,0.04776171371009581,0.09316158010120598,0.028312580834775326,0.05229061140748247,0.024412350903677826,0.0778992134660592,0.0735039555845165,0.07012354008337264,0.07380042277526108,0.048897127669341046,0.05234879970690563,0.06495085176181377,0.02326719150897788,0.06815222712604417,0.04399837172334092,0.02883720636900507,0.019346393696359085,0.03175694657371382,0.053444824485077265,0.028317504413139436,0.05496350265045545,0.051050736339163676,0.09676882908419783,0.04736688519134456,0.06421883468917895,0.03761310251680843,0.07036459407538982,0.03061065074718018,0.03863529206338895,0.0391889587024792,0.061149778459612156,0.09764587847774017,0.04167127488889644,0.042567749626067165,0.0663236106798722,0.07982877376701707,0.08135390928092072,0.09667369993731292,0.017847517714676724,0.11121249343688785,0.07123319429169747,0.053931153956746726,0.029627578838078154,0.02746340835887276,0.05217545433394907,0.027314255323428308,0.028304298107760126,0.06798525832999124,0.035914262502985954,0.07140060899440497,0.07584242148823415,0.025643829799897534,0.05546735467458629,0.0635155916011527,0.08006321208058541,0.03844178708529843,0.04958747672926065,0.04565309842025859,0.03709832795812546,0.03346734698987256,0.029673314804198388,0.06599612571130106,0.06152532502594511,0.029019771391732122,0.05092326757756262,0.04867633271124313,0.09436952741290085,0.08275414519430169,0.04953820426838019,0.06992710604742355,0.022580579529689112,0.04117889053971636,0.10997320927470187,0.0678860511178616,0.053162229444071805,0.04050630613470876,0.042045440267705035,0.05640103960428963,0.05370274206317876,0.035215061066744775,0.03290046856084374,0.053123905692094645,0.0676829833920549,0.08773255739312023,0.06620323096710158,0.02093561064224734,0.04047874459190322,0.10137042580683905,0.02377874965107776,0.06988362963360703,0.059129939948537685,0.03386255229265263,0.040897625784706335,0.05586146684797429,0.08181028235010544,0.034969992467307344,0.06001462409612565,0.08443178501995852,0.06325278335178804,0.0436512506052922,0.050968803494635194,0.04086320864362555,0.022241771925795826,0.025421972963199077,0.025876026918163392,0.08066370425691345,0.06247280709270251,0.04947219753556159,0.018644797174477593,0.057282177563218455,0.06379942318006576,0.08618432083693349,0.029681434251209823,0.0783794592327844,0.05490205941752249,0.05168694333738662,0.0564404128609524,0.059479822051809454,0.06733485530554077,0.040725440415641335,0.0868383371601898,0.0488736021336818,0.05981323896013051,0.07144251042963967,0.062124896617160696,0.05046797590242142,0.04320892859042454,0.01815805123296288,0.04207091147596105,0.0466301943372065,0.059875938682041885,0.05449297956335307,0.05116880960662797,0.06955357082029752,0.062075080723581665,0.04743575186963472,0.07912444627554295,0.06125099984151638,0.08007375439598205,0.04275224304897651,0.03738412407566512,0.05560209890461676,0.03353747887916257,0.07388612412840227,0.07787279486706215,0.077359194007604,0.06532698156167874,0.061410269453276864,0.11496553339332885,0.04687536070208889,0.017465707413783758,0.06691163528455694,0.08251250304294155,0.09167773109091884,0.043463678194696806,0.10639484898841325,0.05980937757411467,0.06558222692847179,0.04250539332172022,0.05903636241368156,0.03706543604153516,0.05986871549027761,0.04257445076725269,0.05144939060210602,0.051179869271622686,0.028569739349056024,0.01877725984619289,0.04506255400854416,0.05026924531607776,0.05244024798943251,0.03717504393189573,0.0743434327593077,0.055187570734678,0.04378430874939021,0.018455007844238758,0.03662019003526867,0.05576197099846098,0.03488691116158944,0.021855633721782487,0.08755791524134636,0.06871128807762336,0.030586338576732097,0.06229524576827977,0.09614968283452573,0.06757036894245048,0.09801897597535465,0.033145707525743646,0.034872121665154805,0.08823979508025649,0.05136797068534639,0.03731758565478364,0.07241031161996712,0.03242069099054381,0.04161458381268701,0.07510906643612439,0.041542629606084756,0.044078977970577866,0.07784404313084041,0.03703287712452746,0.03696927496547632,0.0674179047652118,0.04455406804221319,0.03945777447506017,0.03343552482665683,0.05489816576693054,0.05226576495309419,0.10221082069433639,0.11352208742035706,0.06107311644020331,0.06346523022685685,0.09409139743115921,0.04581950742377163,0.02041623647044135,0.06598765371112167,0.03182895888878926,0.027138667521151395,0.06672449949724842,0.047931845937893576,0.06095331290705124,0.0704113664133984,0.08246581127493033,0.0449746374996303,0.07866064816904411,0.12530856970819512,0.033623262947326,0.07691134437385089,0.0610946166957857,0.04502072291485102,0.024908780284370855,0.09284324821860682,0.05724919402308339,0.05709874571142714,0.060808255897649,0.08205632314323351,0.04232520922594665,0.0893563609646792,0.054495679596768744,0.07224582464277682,0.10862686521802531,0.06295317843667515,0.06686770211960628,0.05717948250566757,0.04893401235990017,0.08660242414921862,0.058853793894352836,0.026655733649355397,0.09507831798562055,0.023445254128873383,0.021542031577618383,0.08095085662004613,0.09153448427881417,0.058771598457455596,0.08013480471559827,0.05467730917255629,0.08333299163765681,0.04249598015892358,0.06074915172584729,0.04137269558001829,0.04732912396420791,0.050049887584207475,0.055802727363187137,0.0334780689901292,0.05868865706109093,0.06513437290489531,0.07530449883755218,0.06647953389009713,0.08219347636599408,0.05569610867859805,0.053363198096538146,0.050013193442667865,0.061680873263458925,0.06263668168966058,0.054128211149655936,0.1061999108485009,0.02396093298933302,0.07082340380233523,0.022745491294705177,0.034454790504576636,0.025402053525214845,0.024464447614535662,0.08204633702051548,0.1020585339997858,0.03694776608935282,0.0395775138796058,0.03823605828634542,0.07165562765775116,0.11682110825339459,0.03138277835409246,0.07408068890969581,0.03134082469354081,0.025892192045628648,0.0452719444269603,0.03715843364223441,0.02163557275242227,0.04248454632505642,0.03757087793830339,0.04334136371416938,0.06392774820347386,0.11065885090682931,0.04261801328119008,0.04580466842896323,0.049935728459794076,0.0678508306937473,0.08131699299219862,0.06815542895738609,0.07223050013484189,0.035620694671973985,0.030521358699321505,0.09365586915159514,0.10394776021514704,0.0868953177516593,0.059859127210683094,0.029324835113349317,0.0570759994604432,0.07976251192627345,0.06712166030884477,0.035437601952423826,0.037988187977918884,0.04686598247682199,0.05559597605066248,0.06494344962364433,0.06824504348723713,0.01840722438115328,0.09706340491616541,0.06251470909763077,0.06018032273287848,0.07295396946847812,0.06091920782711489,0.04136634399403701,0.05537166132517353,0.03184144212416038,0.11343580455631687,0.037388683985413326,0.01800663556898257,0.09357775188599696,0.07695543279867634,0.0359100017407309,0.019747151016087938,0.04669485732638379,0.060070335807910026,0.08328108470043168,0.03350340148450835,0.07473361087490069,0.07160054338171078,0.09225859313184387,0.08036956129066825,0.0509547075220745,0.07254066586290661,0.03451846565539211,0.03871081023936387,0.03829728815401338,0.01509943841750022,0.11046547932835186,0.08792842481406728,0.042051617300700055,0.02479056078671068,0.05908202288103493,0.052462643408949,0.037974018977662026,0.05644442203987722,0.04261614519796749,0.032931918247953,0.026110816463522386,0.045252407827403994,0.03580630906245058,0.04433230954951572,0.03313725664290286,0.03370464096983052,0.057170602877119815,0.1005810983387146,0.053578151840638806,0.08107079535447917,0.034274846081848054,0.06046342637995408,0.03322819174557089,0.02654806908930472,0.0757146498385177,0.04389569761556507,0.06605128181215845,0.025681377458940828,0.07463071889943246,0.061315980002195944,0.025725522389389847,0.07335113544442583,0.04009403158638037,0.023697884142497336,0.07225786299910303,0.034369908765630244,0.07188046672951393,0.03601679706948898,0.03473262784452259,0.05510265755067328,0.0928266549666269,0.0662423538670128,0.05409812476575487,0.09582109123741935,0.036751529868795825,0.03457595155191265,0.05156921731988772,0.05981032862967766,0.04340798993635841,0.03151785975643403,0.1089371054020163,0.10522862892223098,0.06005912249116928,0.06753925580305437,0.030821129089674666,0.06059946844881159,0.03276733701741728,0.07935037339583363,0.07415517527047936,0.035578400061435825,0.03997675197691643,0.09088995207660358,0.06464668877841133,0.06109651283710719,0.035216498072329405,0.02655274030366207,0.047573730023581125,0.05382499032819174,0.07898506357871178,0.03540029768853971,0.03882283867552427,0.04499558948847238,0.10455109337060828,0.03692401118786344,0.025787770096463197,0.024892606725682175,0.06631376231838146,0.048290003986130786,0.05307879338870211,0.04204138547080061,0.05702122023594852,0.03919652589544492,0.025413865227733312,0.03571577648118128,0.08320401352225941,0.03862482280205554,0.058822889407723185,0.08641045174269964,0.04786549619870058,0.07309374768099933,0.04105981169484136,0.07468926579720689,0.06722377068168761,0.041150575250533006,0.022971887033584007,0.023264757131370075,0.11809094465428152,0.02984536424282594,0.10701982491277401,0.06538473656827502,0.07682072273973194,0.05226972028964299,0.04533540584826719,0.10330519691508692,0.07098215350035823,0.053917634020589335,0.09046284173611262,0.05160494405379321,0.08109023622253664,0.06882525734876364,0.0766536262177225,0.048253069430237994,0.10427131551320426,0.053680012765493876,0.07021165408964009,0.03484714588851121,0.028947648548083384,0.0686649534466292,0.05123600664004769,0.07363863929906288,0.05478093961292292,0.05421689637768805,0.04232828394304157,0.03697139331247373,0.03197406431565203,0.07605565400750768,0.08447423373722447,0.0325440420061439,0.08187476596869604,0.07750841264472345,0.02458423121102025,0.10492500537547943,0.06235127785618203,0.06358500512310157,0.027259078493772973,0.057884849015653266,0.03529477339870365,0.04378083685285611,0.028872067901775697,0.04858361762826845,0.0625290387932873,0.03680218364496557,0.04989792487029226,0.01871759251712971,0.039999472829570906,0.07345495238530027,0.038624859480098445,0.07483961542300976,0.09908912054800721,0.013677463119426435,0.033773934694980884,0.08158331056527598,0.056976373903084805,0.033761302289609045,0.07105844758577821,0.09107231772926483,0.06838278415919474,0.04316568076088274,0.04642499676126278,0.044970821186699796,0.062192999566869175,0.05765329147004061,0.07886012140880995,0.024577149160833173,0.07847783025879422,0.027821602969187044,0.09856417578152561,0.06123070243983205,0.061347174873694225,0.03984109442303032,0.06997775166753441,0.03519846116637506,0.08502244426356474,0.03160823054417341,0.08264667772007059,0.014717909542275682,0.034888884248158746,0.09231786444708043,0.021123084944860256,0.04129771210747645,0.03133298344298103,0.038659280559882575,0.05381415242068769,0.05538615258839888,0.023354596252763076,0.040760108924812063,0.04662172107606184,0.032505853900900585,0.09079434025348125,0.10003766815053854,0.04432845254388066,0.031472564632974556,0.04672430137600947,0.020906515851451778,0.05615699792645567,0.04541848868839713,0.05474034108213039,0.0774624433428536,0.07579663551141426,0.061956608743848146,0.032702287947688646,0.029142117786976555,0.029887362482526394,0.02264987500369775,0.06389034323798976,0.05559397146259503,0.049153830396012156,0.048255482928424576,0.07583344371838684,0.07812137585469703,0.06604502856354058,0.059366695524099386,0.021953019689182424,0.020974371079573225,0.051188136561886345,0.04892107679024811,0.07250582880675883,0.06507591049209664,0.039971506699588176,0.025404267000551227,0.06191273459087288,0.042090496134978755,0.025384982509432864,0.04261544675698969,0.027148475976878982,0.04196542115636675,0.0979267467012966,0.06395647426348859,0.06699851593331659,0.053597959581669054,0.02439615650249347,0.031180203464179816,0.03698269149603805,0.04837890305160333,0.04741465847716059,0.09683750386662923,0.0484607458993145,0.06093387576265199,0.04502548899095031,0.07077874886505243,0.07913184872353311,0.06417559154039745,0.026361764267022383,0.04745710137533021,0.06209473510363006,0.044819770201840414,0.08000670173979575,0.0913980499288938,0.07158378759534109,0.026972874748351052,0.08570105839968013,0.035003662284890893,0.05066761888538458,0.060720903692323795,0.07894157837054763,0.03796783729072529,0.017138969739067138,0.042841819823226046,0.025968184317022264,0.024798932170111317,0.02434164521221597,0.019376888593132132,0.036074055475450284,0.06336713012535272,0.042155435586636564,0.03683445541094346,0.042849461419878915,0.025581829586646947,0.049670122346308104,0.022406122904942292,0.01867379291972146,0.0451581557204693,0.03388509220887444,0.05976827548863033,0.021081277752777246,0.045540351612082884,0.04773975927643486,0.05693021945500037,0.0476527965929456,0.029612640726912193,0.09590583605449333,0.02481515817005599,0.026722605136511823,0.07890531082277537,0.03669203010862519,0.04353152923613271,0.03271091038251854,0.04305073390906648,0.045769580756393834,0.041932822931993095,0.029413260910144966,0.0636855130791979,0.03708044595857923,0.033015785945674815,0.06215782574270298,0.027610466828890002,0.05825230496462398,0.11992632519685699,0.08872250945435071,0.0980976605031059,0.0737874300292245,0.05233973765317854,0.07550270233118722,0.12831447012047115,0.0637426569824469,0.11356213624842527,0.06592016971544475,0.03430421855548028,0.12705979720897312,0.13350548998227543,0.051437542177844624,0.11595682501386648,0.056195917953616524,0.08274947847955774,0.11094259624651018,0.11061149183628792,0.05698391045222231,0.06604904690435617,0.07700848274825738,0.07847274651617826,0.08155378251155712,0.05931216143340654,0.0763690936889375,0.1230529550392885,0.0765999581149137,0.06408688000357816,0.050783110906713703,0.11673315272469612,0.050658885520025,0.05468603811475772,0.052386418629655374,0.05538363817187338,0.11314346967120105,0.11478021237075649,0.09660976453761458,0.08088237346496367,0.06820148297683477,0.03821999667347723,0.11648858904146064,0.026999630326684877,0.07994708846876704,0.06763343069394838,0.10943419175520379,0.0672313329583914,0.06433583118194,0.040229838622451934,0.12050430944979344,0.09152606405999282,0.06464776922507597,0.03470997573920402,0.042998538795810066,0.08168835790812891,0.10102508853347714,0.05466132184489807,0.12475856709128916,0.09930981816145078,0.09479261352478817,0.042344305305060226,0.1060694038433082,0.051803749347153906,0.07137888784943361,0.08374969637415619,0.13059302334838166,0.07569469972467392,0.10457497457750622,0.09355522625867123,0.07909108786058414,0.08437079601725851,0.1401397745951554,0.06457796190655159,0.11727386358321618,0.10041196404063524,0.09317033421467838,0.05102675613072372,0.025466530583017823,0.08248994968108243,0.05566862203536217,0.05183770037607399,0.038010434346066636,0.05548669002870164,0.11190412029977782,0.011275697444907954,0.08194021022172662,0.062012314105206946,0.04579082502245632,0.0589278648452951,0.046766504535730544,0.04353177157146042,0.11439803476898355,0.06278271373202028,0.08593625523297768,0.07091742951717522,0.031093674746157058,0.052850015809263996,0.05543899877312303,0.031060747104523414,0.025062757581907236,0.06338670512703017,0.06866961299510699,0.06127127188028586,0.05375461720777566,0.038024503098991275,0.06183703837528956,0.0484574325500693,0.09828328239995993,0.08680051354320575,0.0936673977892707,0.025893449736299257,0.10301418038471953,0.09110527554142453,0.06204827279498039,0.05126568303497073,0.05466918830526703,0.056488682614069745,0.06761213795645239,0.11811746526584677,0.053916732474506596,0.053787426995710645,0.06262120447061448,0.06933558002470816,0.036654840430482706,0.05281459563967609,0.06966836092819884,0.03606391027728722,0.055048630779749606,0.04591677147308677,0.05791399276824709,0.05363687248333481,0.01568145869733687,0.07149983299078035,0.062318354535042225,0.050744744271266705,0.08293539917865238,0.03510020599972954,0.029223815734164948,0.04116667786224959,0.08459028416222464,0.03168037324489318,0.02453097340312859,0.059686268507647924,0.07628164712363877,0.053059260686047154,0.05434681266471047,0.03779125118087802,0.06420861555867469,0.05696113397536874,0.10053143910726085,0.0366668239670883,0.02095285109046081,0.07764652626878955,0.029120579792701606,0.05855429369558057,0.023066032195825148,0.059920243737840474,0.026192687628610475,0.04537531615561788,0.01970284391246541,0.028716001116250445,0.07977383327489614,0.04228445131047037,0.0427685606319767,0.06257521550423131,0.05092399801737523,0.0510402949030612,0.07612207485637001,0.06058078247846984,0.032826255864949236,0.051737554168963605,0.08626584333392885,0.03861830967732121,0.043897288603486774,0.0749354093612807,0.05722317918864583,0.06847840243729689,0.06588645847335489,0.039229141288386074,0.0676491959717112,0.03475938730757779,0.04724145913010602,0.03211653037628569,0.016268261145808306,0.0375734970083709,0.05007035535706205,0.017019736323707263,0.038088301359489755,0.030347492706141527,0.03667881522217604,0.03869750069339552,0.059157198819607695,0.03466687195302999,0.05431413206585415,0.07784476268163591,0.017373128345541285],\"y\":[0.09239171090364635,-0.0017828177415318296,-0.013496288289088713,0.006509232458400359,-0.20504548656771904,-0.0035147741300037266,0.008961147034122981,0.03134766310638974,0.012924840042920993,-0.049772219882214565,0.03573443550228035,0.009253312309037741,-0.002455823053624912,0.0034699072403411198,0.02145288889710604,0.010850614887279827,0.009263924805783124,0.04013932041475805,0.003539412082148263,0.002735228121049359,0.05880272926401161,-0.03462750258872188,0.050339563174721456,0.01968921381434006,0.032361969824576425,0.1001712537448402,0.03432986656165255,0.011557162506021566,0.014640974131143313,-0.003443749665381838,0.05937171131625006,-0.008628976040325764,0.03772534334657643,0.0027470463560018503,0.05195242381831014,0.08612148782828465,-0.002667861489574612,0.027646982418130666,0.016628462586938744,0.018333706364099703,0.08067269805805231,-0.003320513873145351,-0.017334076546556,-0.01968285908219604,-0.0006325628902299306,-0.006044268904250323,-0.0033216738659325837,0.005227977079121847,-0.009290338085737789,0.008240514949755808,0.04333291642994113,0.0028293771046089904,0.03585544813056171,0.02046247410384397,-0.00832286880759321,1.549847337209762e-05,0.00981370457424644,0.013980026769518464,-0.00012136263555734873,-0.0002843937453273943,0.009149252374611875,0.039536985474393174,0.04193694009046098,0.032989865817458025,0.09418545986205536,0.005730832367274891,0.010580314352485189,0.0027220830082067267,0.02334674716912487,-0.004181958973679301,-0.00581809795026018,0.013833675643422968,0.018325806040476438,0.005895751737897922,0.015337642048663364,0.0033009424634278498,0.005079129547688357,0.007428812267676623,0.021281943096283847,0.012162795633599914,0.006726747625695976,0.007449444081684717,0.006640153396195046,0.007066342531206462,0.012194431923181991,0.001409179824017752,0.012580701425251844,0.0008208303488838991,-0.00015106731695762376,-0.0010861493267037418,-0.0015394786237316203,0.01012196522501728,0.06033173352058496,0.0025750966648435563,0.02362759733701772,0.00870110631316545,0.001187345238101357,0.031145528575068644,0.020970704231388394,0.012871381642494172,0.00249324022619611,-0.01157979072661634,-0.01217520244382654,0.008375218479958398,0.023021946514228706,0.01511877015707306,-8.797009605708428e-05,0.008033275852474413,-0.0063094491584722995,-0.0027637017235086236,0.005156011327734213,-0.01193490222656336,0.003388025256196272,0.017204777921704544,0.009065338867562956,0.019284284596448105,0.0031160666332136783,0.026802274436776772,0.010174545182304791,0.020552130045073922,0.02048809735001944,0.011069847918330402,0.013828961007825376,0.016401619346850516,-0.003663951048772069,0.014675302039888793,0.0020029384218675436,0.031781759902082506,0.002550777378403856,0.015120555725126892,0.0034949293492421256,0.010108271831997483,0.004305027766656745,0.00985797056067985,0.03804642309933032,0.010887172595941208,0.005127421052535144,-0.014496732481346353,-0.0007903074756574721,-0.005028906954571697,-0.01398007597976794,-0.004821564189597398,0.0038874983193029435,-0.016477329196361964,-0.012389859163253655,0.006295411974546532,-0.012389190974865535,0.032062182978236896,0.026490708762863184,0.021288298215375354,0.000592561157176112,0.010301968295143347,0.007613797971981406,0.03109568002980552,0.0010493703041400597,0.012581958148754062,0.04793073844904117,-0.004868802834815584,0.007360443577800213,0.024545039073682155,0.01031867218629811,-0.007174633558488751,0.017248848166323355,0.024669403661696405,0.011312196945979985,0.03840182272462856,0.005064333468826013,0.014752522922873148,0.026067519716471168,0.02807016719602609,0.0035194514747947272,-0.010020819572800566,0.016784696653344918,0.027231060901799782,0.019660724379366324,0.0019632906688866396,0.030116158010016627,0.0025587238178835237,0.015717742292997012,-0.0002622842473849095,-0.015292447231548656,-0.003975991316029731,-0.00425442699463162,-0.0014122594832562546,0.018211603914218187,0.0031423360249350175,0.013440895599396966,0.005350619330675173,0.026251025464865504,0.019009722719104317,-0.005400185263720724,0.004859905580012951,0.007024469744679499,0.014075378656842387,0.003813536295405722,0.021421257182135365,0.012247649005788352,0.01625396464532667,0.01652310142630056,-0.000724473116627293,0.0008072094876684164,0.023590791590171807,0.01258705823221142,0.0077400837629001545,0.008488873591773841,0.01022003039733165,0.00039870875408425517,0.02144803939240113,0.044748968358959924,0.025338467757177296,0.014027950141407982,0.0154377201841608,-0.002239796126278348,0.018341242547631288,0.02748885060819398,0.03146425930198108,0.004257498597009822,0.01075020636678697,0.008302936925555981,0.012112925257753695,0.020346124193419357,-0.007959367147986103,0.016398252253484923,-0.016002094244665747,0.0071290501764175625,-0.03064753454493098,-0.0052396633239092435,0.035493483565883006,0.030840951527289103,0.015854179862235196,0.005149410284579936,0.006897075348317308,0.013734998854508301,0.024988871827461644,0.010077747561747022,-0.004569531699404769,-0.0031041903456485334,0.002486166723647623,-0.0022332631443070044,0.011039679616160548,0.015249379122259718,0.02021858192942897,0.018926632296377064,-0.007594862462049698,0.023014243518860198,0.015656152929927624,0.005177078862212633,0.007710369412238818,-0.0005871039890469539,-0.003631708446970209,0.014811505213274569,0.023833752934260998,0.0038095016033296587,0.008382293648844815,0.007532416828414235,0.010794174495846402,0.010130849099318634,0.02433188612392879,0.014173217396578697,-0.00018427404581730503,0.01885485162281932,0.007653846922758907,0.014996048036255,0.0009252736888925522,0.030448292540368696,0.01818878990124705,0.0205474779774374,0.007542894940827249,0.013264919810508017,0.015502933853955552,0.022954793754800792,-0.008249152530992157,0.030823027712091954,0.009348535588255394,0.0062419276241264575,0.018132754031467444,0.013933574650500807,0.0033476124112670914,0.03565543829065549,0.0019878222738809043,-0.005779346709608563,0.016506792494503816,-0.009917182790485143,0.017099131466912616,-0.0070277915823242785,-0.0013215740883540338,-0.004761488260240149,0.021724701410608747,-0.028892053641420914,0.05289983415570845,0.0281585712962808,-0.011051920564031831,-0.0019508593314810274,-0.0002618266133288526,0.018703088990883306,-0.0019510351255608025,-0.002003007303078004,0.017955722887017755,0.010672726305057254,0.004398261186932876,-0.02081573464060396,0.04526097126369985,0.015348851319763204,-0.010694409328696884,-0.0010217982004875148,0.00684896824219625,-0.0007897778922804119,0.047676293529425914,0.014075623795666455,0.03407200702728743,-0.005341678057692887,0.004609817669515235,-0.025779979024175656,0.005088517711419406,0.03221584588384805,-0.004112240415907308,-8.786039893267643e-05,0.04194943354979954,0.03267328603808201,0.01882482004249932,0.04643207270896544,0.04007259661180431,0.04083693989726315,0.03320367213112262,0.042287538229655815,0.039466117232289835,0.04425754842101627,0.01976710206860552,0.03030435088973799,0.031670661233153874,0.005597692298760207,-0.008064375853783995,0.06374208384158701,-0.002820945320443422,0.015816801040637377,0.02551420784575907,-0.021417211559471433,-0.002331218617001313,-0.0034217324020010486,-0.0027063537831828596,-0.0028802651729744073,-0.004392179739862307,-0.00043499178776291645,-0.01746694111694262,-0.004051149944947244,0.02755413858195516,0.009043483050784056,-0.005465634564360457,0.02327025724478828,0.0414048433928978,-0.004062190255997098,0.007459479006443517,0.04955955259882948,0.004314960672722833,0.01218615051515647,0.004588978813178627,0.003475820235494869,0.02705518048727523,0.02331488851053861,0.03551915762448875,0.007400627529243124,0.035098131855580895,0.00999099328000134,0.03221396259819569,-0.005694779500447143,0.010125960464002288,0.0008550905382332619,0.026089740417875068,0.030620853139844823,0.052440443297333245,0.020410038431482983,0.03791351245192537,0.012077243010263935,0.016671148431809654,0.02714255775104276,0.02315964053533449,0.01201111178882715,0.013529659630710136,0.05174562406907379,0.023907353231043073,0.03668050593885036,0.0052316872920244355,0.016865878260019788,0.030163193904565865,0.023428844559153804,0.02216633085177449,0.009317887844547982,0.02424535487522198,0.009344210232370835,0.03855426957435446,0.006039267044265676,-0.002731619184169829,0.05470117946333335,-0.010941207092037795,0.03074434028668777,0.0242330668795976,-0.005054095330964288,0.011859933048971188,0.01424898560466491,0.02156508691277502,0.00019100254739754899,-0.008871354953130815,0.01791833325644489,0.000943067188783193,0.037095878739954694,0.015767060308805612,0.04240612145729906,-0.007329733099797424,-0.0014002805744640998,0.035259340581946075,-0.014783820184086268,0.003988340831229199,0.023006226962999105,0.0031758322605877306,0.037802734492400895,0.0006003486081115451,0.00309583384445116,0.009176887579844735,-0.0057377413910622305,-0.0001508289611287009,-0.004815870633625889,-0.021837564687217894,-0.0013465444060185901,0.008493815683146265,0.025332610059920255,0.03016417780387805,-0.0035750387512021617,0.011258742679808798,0.020516065158105744,-0.007290020760686724,0.016973978261990697,0.02695399763001236,-0.007341446994032988,-0.005691666344980393,0.021114750149357844,-0.0127472417988794,0.0014167923770986152,0.0019984433435816114,0.020166411696211774,0.02118193606416224,-0.0016581231137398793,0.014322127574252037,0.030398765155682118,0.010033963942843121,0.021452813204594696,0.011246597875255277,0.014960937094171558,0.009625434474163901,0.013540494647636804,0.04946168372223614,0.018319985193567017,-0.0005133976723184606,0.03329146753776718,0.004085001157522415,0.029178732859431813,0.001979649583221973,0.03417060907174482,0.03189491399488788,0.02987385131126152,0.0011205219045325396,-0.0012742464634794058,0.014078319161230271,0.003429306433800306,-0.004313085605047031,-0.0028440943628216596,-0.024067613498993067,-0.015462740540235427,0.02141870014062039,0.03149879158427402,0.01063600647901277,-0.024580448291093286,0.01680855312521439,0.008705990716152363,-0.008711610925528947,0.014308308524310396,0.0049232622493997754,0.017653954772578296,0.0011939062918764015,0.024647009079148147,0.003597161043503615,-0.008537038741307802,0.006385354500019517,-0.003765240656711691,0.00961896372375162,0.010846369659779915,0.01297702322217649,0.006260261645088025,0.03158760192402476,0.026865328430262646,0.0029132034652145544,0.016471419158819868,-0.02519987325163722,0.02474135462814789,-0.041418895140302524,-0.018008971098846038,0.020935531660273867,-0.00605343824720159,0.003558053237471168,0.0036032017893577804,0.005134901692042498,0.0018528138423592072,0.024807772657779087,0.0012788997957671566,-0.012824441092965695,-0.011384283236996258,0.015865244684320864,-0.016674301183275477,0.005505432948530634,0.0035039018727646243,0.003474648996104553,0.0011708362235859863,-0.010840648139780114,0.007451884986501229,-0.00609076927994511,0.0019665773121978988,0.0002620577758507507,-0.003659731389798501,0.03812274966081289,0.017814152770141548,0.019622696576597685,0.019180558753698652,-0.007247679104142203,0.0030622747388220997,0.04563571692097381,0.00995156023379372,0.01671905083062363,0.013103940697756292,0.00764458678236808,0.008192402351921792,-0.005002269385689683,0.012022237034107866,-0.00027813687007767187,0.003584594099725505,0.01477736385466012,0.026276872482961955,0.030639739845616458,0.0035619185830027076,0.0025515198450749327,-0.017883557302108756,0.03605062234892434,0.014916932691453836,-0.012897864760446364,-0.014823355576370505,-0.01519202783579476,-0.01836536997705039,0.0046492939136452294,-0.003977826796242641,4.324066444685739e-05,-0.002320789711839694,0.005877073101966906,0.02469987052809439,0.03285958864694125,0.015202243889873263,0.029012235468061837,-0.013712079387919974,0.022382473485388747,0.03401185553286836,0.006668721057933628,-0.0021747052805894365,0.00800017712271311,-0.0025322941133688074,0.04136434157087195,-0.022620257499720443,0.03321334644705459,-0.0032298695061659085,0.0011862329249383433,0.018157503343389125,0.014420772888751623,0.00253615014812316,0.01024746120946799,0.016229502573223836,0.030134442379542128,0.024566737802841635,-0.0022329579014811283,-0.004680209154054001,0.02605890108048081,0.009742939185724532,-0.022445341496739612,0.02128417129726049,-0.028257896070109246,0.02717877593878752,0.010255277898916226,0.0431001817790273,0.01921370726104648,0.0558705730899789,0.01826905458632084,0.032770026267851304,-0.009697333033579367,0.01072514925944599,0.04471714855126255,0.0055506920438647845,0.024724275642879483,-0.018034628623855044,-0.009043041760014569,-0.0059975128229502375,-0.0012038691430212318,-0.00721275738293151,0.007750350579490611,0.0014864749241099817,0.021622499176365113,0.038697539946389976,0.018804710472791992,0.00735934739273646,0.025923784599150148,0.010456998829785498,0.022737782727709717,0.01335059149244214,0.041552845914339026,0.008762083813619431,0.04548302334921171,0.023268382521974218,0.007101369008518838,-0.008125419747207816,-0.004107277380379243,-0.01446715096801342,0.01864131153906555,-0.006155689504491199,-0.0015287706713418526,0.00693569999785002,-0.007780605717803853,0.009028796417560509,0.01454154186185213,-0.002470393777348583,0.02688538671829069,0.014436449313808919,0.006932084845192672,0.01099479930818941,0.02523591899712605,0.024864480481446072,0.018555373711337173,0.005349119848899086,-0.0012966197706000637,0.008413830229776348,0.01551844201687864,-0.0201895941841272,0.0073815128692005065,0.002041374428158673,-0.0015866286369213291,0.004424002003694227,0.04120638404302157,0.03309816801988737,0.019262255024735865,0.004064272548821224,0.035554191367022925,0.03538539139322748,0.013387867002026552,0.014117050519129202,0.03631267162003047,0.030498232396592734,0.009454913779795756,0.03240836116020504,0.02925618818997594,0.03848836349467459,0.02664875852126972,0.007022180397226492,0.002211375710244726,0.007319290287116276,0.004007826316997425,-0.013477369037707328,0.028467358753170493,0.018600899194597134,0.027795205593724143,0.00665159353841155,-0.004397863949087508,0.0349786758497639,0.023317823573228674,0.00231176383722625,0.008502978442431919,0.03983486037618373,0.006970732811296153,-0.003007093565643886,0.015262362017453372,0.011173779228796397,0.013057189460333234,0.005738433806729004,0.013855555387338883,0.007291431597837286,-0.013967670095073883,0.03396102523458578,0.005702709499872642,0.03773633862127715,0.01009348989457034,0.004678035403745107,0.015711243551340227,0.0003797872507426954,0.005229480587308876,-0.019791745921937144,-0.015926564419557733,-0.006987674195270392,-0.011992605859759038,0.016600632063909198,0.0021474712677150157,-0.0017299627850103172,-0.005253147528088,0.020615524584585636,0.001533947122915953,0.03139728788262921,0.020835038421416777,0.021956791441396735,0.00650470569447502,0.011601390493908726,-0.002871644038489476,-0.0017021530551624487,-0.0018900266809669384,-0.01135538947743073,-0.0025054016198011466,0.000823115612096112,-0.007774059433757164,0.0005285918108015894,0.002289874410516883,-0.0066527572723527155,0.004972545406982768,0.009817406737881246,0.014726774118413938,-0.002250364508484503,0.00361631749504844,0.0376857704831964,0.013422028369150307,0.014142568594146554,0.008426239408497526,0.00796007147074682,0.014611612630752849,0.021069835877064305,0.0200253153702498,0.011602100808036222,0.006359572948663275,0.02473429496376689,0.020485197848268216,-0.0011896521074014935,0.03306275471382667,0.005103126304273288,0.016182856482457368,-0.002107810788786658,0.02447434965919914,0.006046408775327777,0.01227343264547352,0.010102135130901456,0.017725234687326775,0.04266513342679945,-0.008238059972499963,0.022012351255815254,0.015290750166136654,0.01853418091802522,0.010975303301944619,0.000763214696044867,0.01984771091149912,0.010396301644589307,0.03253348082568723,0.01915439497890808,0.0071529937825320486,0.017726081622174168,0.013244896485283625,0.01784919063269044,0.0015119106142881275,0.01586844274020468,-0.0064237183201492735,-0.002748996315010857,0.009058310668769696,0.031803542218279385,0.030588179944961845,0.02263498499510952,0.024547692300812628,0.038522942337104425,0.024254545725357114,0.0006667123266836088,0.010902111196213418,0.010828745304355035,0.035010986698944105,0.012472137106528558,0.02411477695244888,0.004062370878436251,0.044364285873268836,-0.0001141841965706223,0.0015942329577345283,0.024460585021990305,0.011301447365879512,-0.008396714536405192,-0.015192702390942782,0.004118677226961908,0.014496497140245517,0.021656382903875237,-0.010257457703430445,-0.00205305179854091,0.02402214721814197,0.00610584277966152,0.012872697997288515,-0.021008686404529867,0.0008340744290942185,0.005538779207938303,-0.012040618017341352,0.01415957628877874,0.027676186889942094,0.030654818996990685,0.004499278190470446,0.02462158657352364,-0.001946789511016931,-0.0012939261136217081,-0.012071728038492227,0.006732443940921611,0.017839254521754486,0.01469962759852186,-0.005506099368185923,-0.023225970589317357,-0.018545194195742284,-0.007037052848985272,0.004152988416101073,0.0007813592001280401,0.017448166456763982,0.020832586344848796,0.03250742793794626,0.004150801472661518,0.0312718260472266,0.011305308156176152,0.02288130164957338,0.0005253762463260115,0.002479626838994984,-0.002500356307134459,-0.006072328326189272,0.008774203674041092,0.0004993183541650342,-0.004757764118039364,-0.007452684890648891,0.00633296624420511,-0.018712473466844407,-0.006000423512224712,0.0021920297423732673,0.0006374667647826589,0.013954307032313045,-0.0013755873694737313,0.01407367521887066,-0.003246028380789895,0.0056859331181315035,-0.004529308785419841,0.0014057152631100312,-0.0068193055426049925,-0.007880495440571221,-0.012669159657486778,0.014334189777268502,0.005120567360787541,0.005319060727566773,0.015098115558535264,0.005769195590275006,0.018468780426236075,0.03184671953170205,-0.028765344429436963,0.03118033134362671,0.011526041794371633,0.01603815929029173,0.019601780577176653,-0.00879395775906327,-0.007013676953355443,0.005429176785052513,-0.018234083293541856,-0.007611837465625221,-0.011911889175696725,-0.03030107142605173,0.009366259734197748,-0.009916664750417288,0.019807221730902266,0.009440464868861591,0.016996136173490845,0.0026152965049590277,0.033744336135427294,-0.007819303812962003,0.05052667039880313,0.02803310297511459,0.002136164107007942,0.004296676013417805,0.018861121555913574,0.018413991507499533,0.005222918632574718,0.008666344364739101,0.028001712476485686,0.002941729087816375,-0.03292763779818165,-0.008971823588537643,-0.006636505209802947,0.043212222395072074,0.025687951251472295,0.046685612460518264,0.04280404330701055,0.041146700153952706,0.02968466780521002,0.047099005001712525,0.04015577311044867,0.02934457745421349,-0.012228153733434376,-0.014807440990551665,0.016889385339370143,-0.016016173697994816,0.0023792185282761925,0.017595704241050017,0.042585970764771115,-0.014060423002996586,0.03351134761347627,0.029693384568906724,0.0034879200469057465,0.007105993688262352,0.006128274194388951,0.007667482063523463,-0.00689151877236073,0.039337437972491215,0.010727640567252833,0.035879278181922124,0.01587083097532017,0.00927492648737589,-0.0025437285581084894,0.0017038697824611642,0.022969263173800183,-0.0028467747993029774,0.03929662316915638,0.022770186250682986,0.021239417534319478,0.007804319313747114,0.01245560808802214,0.015359407259856694,0.03281989534234783,0.01766691926649821,0.008880750535106285,0.013419112926208232,0.023733246785876908,0.02098084855524713,0.009557918049110561,0.0081449585835573,-0.003540318509152316,0.01686077970566897,-0.002201351502754702,0.00710531529751345,0.004874721281789721,0.017852873289394312,0.019129627391599374,0.00016845958937804494,0.0028216448362619263,0.017189671059827664,-0.004587145823557553,0.009685309137793117,0.005587570924381522,0.007020822627044306,-0.0040670563449359725,-0.0015869307688782183,0.001518197010048993,-0.00044231264795693636,-0.001890021465193985,-0.004385146978170896,-0.011934752524120313,0.01858540961546079,0.007894610392654832,0.016015265831211545,0.02212130583176096,0.0077243046886033674,-0.016952555545733432,0.0021656403512994903,-0.0012393115955819057,-0.010614808044736562,0.020603015376485127,-0.01840569939285312,0.003068097762816219,0.0009006242842105934,-0.002893971742160652,-0.009524607681079031,0.0021818322819048526,0.03632172041899061,0.022564613951491612,0.030506175146319037,0.033759842249808235,0.040790742042457924,0.029761543694429418,0.05186926302225603,0.030518186700143658,0.02581269841413014,-0.006395804422587739,-0.007741759233990861,0.008531016947561322,0.019706870741839418,0.005050949910148345,-0.0072495313745224565,0.025264692270380015,0.02710444417476182,0.029003999225682114,-0.005877682088002294,0.029218488443098475,-0.007536455297597287,0.013098187398446927,0.025061723607585396,-0.010213649669423976,0.043865961305403926,0.019461477432279186,0.027086815899515778,0.023038451058370258,0.016281382230198888,0.02387139807278364,0.03356770150158063,0.010678463614107708,0.025976881201045805,0.034640162222371325,0.018049888211089413,0.04115059006225197,0.02107968906283427,0.027237263241293958,0.015065400411779306,0.0029825452171169655,-0.012190888919269985,0.026846041252246367,0.00924803378047718,0.027768351623771538,0.005382653773156107,0.013680603431461866,0.0002649723279384281,0.00721806449219049,0.013763193821825599,0.021521726591095466,0.024711729606855977,0.0008130324768595629,-0.017823193405214252,0.004471966983311495,0.008748652337194079,0.006623220790441165,0.02271239205301163,0.02632735265635051,-0.0021704027691683684,0.033808093892888025,-0.022501719011201293,-0.009237958448986856,-0.003203276767426773,-0.003579542672209851,-0.0006952960706194371,-0.0006728025083042639,-0.003995793231746992,-0.0033350780726109563,-0.0006085963458516603,0.002006304079187108,0.004378286860849578,0.0011407335650980308,0.002822780740323327,0.011413335498659945,-0.013485274264960996,0.013633544103760121,0.011928501707098773,0.022712581794538448,0.014770773456490539,-0.00159206638848998,0.0029146842388711983,0.012213511396532652,0.004111287750967835,0.034256434820631225,-0.012915338769402365,0.013140438691903341,-0.002709104192616075,0.01223379130917299,0.02952912237806871,0.0002723744446148346,-0.008124857011398822,-0.0030389452854190655,-0.006902862218805652,-0.005839668998584213,-0.010782427566094413,0.01749474346030861,0.0009436862972423732,-0.005635499766297728,0.017012776091845674,0.013455805095339373,0.008267306211269957,-0.002855476750793028,0.01299564053796931,-0.012122372170703161,0.004352162645733668,0.014312220542704115,0.008827788672424043,-0.00043915715177622486,-0.005068972659552536,-0.026819637144934464,0.0037272025443809563,-0.012222583011819955,-0.0003126210681261626,-0.008005131949948436,4.4258331469783366e-05,0.0154773274112338,-0.008671124019154363,-0.005371375502097187,0.02981500615706459,0.03992366542629617,0.006959987728682116,0.006266661190643581,0.01848717003699396,-0.011457776047570005,0.031158075673882846,-0.0018222070087659191,-0.0020183386942755964,0.039325644520826854,0.0341078918823479,0.008045549023277344,0.04300714246599707,0.009519247774712008,0.04412613055394719,0.03945383137384095,0.019585897370670576,-0.0009870885013217726,0.015619209091413042,0.033714571479763124,-0.0013984900831570109,0.024071231046913142,0.016728813452563693,0.004057881737070973,0.015723338783580468,0.006651108957208376,0.01417191098792483,-0.005904433887483237,0.009115652093451406,0.0031514551112120084,0.006266118064618588,-0.004785835346086086,0.005583444109439531,-0.0009084365073907862,0.009906499937995847,0.032110888088158956,-0.006844490009142027,0.006724848286617198,0.008584657105639555,-0.0270387453087144,-0.005228022190934595,0.003190305953806415,0.006715839732117606,0.009234175926547492,-0.0005812024217364605,0.00842524010563981,0.018945127097507352,0.007909140383797458,-0.0006189412576779722,0.016272505349871548,-0.003153548712967309,0.010915378283775099,-0.004778649880833837,0.0023481013418812442,0.04877086140611843,0.03628133725952587,0.023045307103223243,0.039483249416364656,0.009847548475176408,-0.0010554866825069871,-0.0033567585348073157,0.03385563911522042,0.009734591621430314,0.020144807769437223,0.0018586202756607224,0.009498589151580339,0.015783744330787795,0.00848279766202099,-0.01763103238899762,-0.017015205634280814,-0.013417563034603936,0.015262743769796057,-0.031540905006272574,0.008522031429861654,0.011206355096185866,0.029868380699412108,-0.0220105935823751,0.009337660808748935,0.018957189632378028,0.014124903507641704,0.0013269777384499273,-0.003817650458249317,-0.009937910730626054,-0.019632984546006236,-0.002001288067617878,0.0012647674131485516,0.021839199356675377,0.023277181993047964,-0.008001037350988005,0.02394724985850024,0.0020918489658923126,0.0001738529251482754,0.018945044050278505,-0.003500032574775817,0.014742241957483297,0.02266491971524877,-0.009084630297848088,0.0006835998322361716,0.017514417208534045,0.012104867419436657,0.028022506597258665,0.03159012885175828,0.010733704888862347,0.023140172699161347,-0.016694401506478534,0.012531005080786634,0.0009105108898635482,0.03948363047280451,0.007406506023057395,0.01805489929512772,-0.01162069807313788,0.005284791418828432,0.0037417539638327285,0.0036641935771861644,0.005125252397701586,0.008002069624411844,-0.004260096487326984,0.008763825322155288,-0.0012029233084908338,0.013606880867384163,0.005387811338157709,0.04212356633133399,-0.002648547859702992,-0.004678749498328103,0.001624385338842243,0.016060846409615248,0.003990559940132646,-0.020880393786482057,0.012892091864331424,0.014438504084012158,0.002802119243029854,0.015222144161219642,0.022371855142344046,0.004928485451101637,0.025157413131139016,-0.002281667851634617,-0.0018537040435242038,0.046663418050096404,0.0026055318935291126,0.015436264113388344,0.029717012469154452,0.0437006783948632,0.017282378640789443,0.02168684399372119,0.0060620559311259795,0.02835284457468666,0.016055689029739584,0.050566030398341635,0.005750573673118119,0.028580916373800315,-0.0005534724361164313,-0.0005445660443419465,0.011899596519683569,0.00642134763488832,0.022403739086024155,0.03069249088956014,0.0029794640418987495,-0.02350024522648174,-0.0017796004825921356,0.011796993673690324,-0.004771602284071406,0.024350293237658492,0.007682856507759733,0.0011560413736626325,0.007608826327706673,0.020731943014607086,0.017138762247069707,0.02276333710673246,0.004477076305473254,0.014249379656777467,0.02268123303276955,0.0057927123390587015,-0.0018075566136479164,0.0017302825766311576,0.001373600491694636,0.031384488427972354,0.004412312910429076,0.043356193333900415,0.007514096269889475,0.012656593093242685,0.0027096385051138786,0.03418178421564696,0.035085041513209285,0.04393179774694357,-0.014449415539822109,0.02226125098248246,0.007522470785105722,0.004303026043401701,0.014910982626604254,0.0043548655052271035,0.026764603615859032,0.027538294125180635,0.021714501555864633,0.035656055774737225,-0.009562111649058413,-0.0037744659426541,0.0026330151290221687,0.03498261200975414,0.010669055109342105,0.014619841381385132,0.0036805833947291863,-0.02455968148339894,0.01529848283470218,-0.012164487066211106,0.03704450370037192,0.019560586272118714,0.031076143412413288,0.024126426020061608,0.024473160060191998,0.06022546295722939,-0.01990374268449038,-0.009355071752940985,-0.007030488264248336,0.02008350751517677,0.032740167230409845,0.0010440752008460204,-0.008097205558385601,0.03842640541730055,0.03703813971634109,0.003873781449339015,0.03719748065533441,-0.008124264658391075,-0.0009417581036214524,0.01680068262935981,0.021977008919363834,-0.007574215822240176,0.008333555006657683,0.013275276700354562,0.011090664667772959,0.020247910449649457,0.010534257152317664,0.03665348850028503,0.0027516607682590644,0.031148164385421236,0.018883182570171828,0.012010390480697158,0.013838751080107846,0.02468248518473939,0.022202476717422454,0.0211548859269599,-0.017599766914152194,0.04659500146199682,0.004952494828922349,0.02206109041663818,0.008257424782655273,0.013534691715604412,-0.005638149759408962,-0.0033424715380093104,0.008924114755093533,0.004788611783267013,-0.00707124778509867,-0.006504797498032002,0.02627021298114837,0.020107247057424973,0.00040080563384427433,0.025726078862099593,0.008397419473805888,0.022787173888856913,0.0002356152001138701,0.015601298666519027,-0.0017082912608601156,-0.00591017503269191,0.049433958787292794,0.033692900472586086,0.012598893431311445,0.010113590103662836,0.01293487224227554,0.006189452730013899,0.01986552437181439,0.008029308345558607,0.02290296339886876,0.05438131761598432,0.015807095585664094,0.022564598510154597,0.0128601053229747,0.010441731042508652,0.010466115980105389,0.0015021955994718253,0.023641164452716325,-0.009823622736385472,-5.533827387768356e-05,-0.008462362297158275,0.013390497192737062,0.007230618056760075,-0.005996511374539575,-0.011909178122993807,0.02216136162681279,0.00816169435084607,0.022924470773347482,0.004650110850363394,0.0004938637626795794,0.030665633436781716,0.017967825110084188,0.034965976939019386,0.008403493814377716,0.05217628658418249,0.015358812583853769,0.007311818411937669,0.009301341777989105,0.00015888738325998972,0.013320721987426768,-0.004446031496374938,0.0023417714771655587,0.009214821122395148,0.02509910621110598,0.007866897789511575,0.023689460591261348,0.0134676777721186,0.026486117836983868,-0.008740101689377108,-0.015699748675327762,-0.028853736949441454,-0.02157654310000883,-0.017338809358562676,-0.004364678978608456,-0.009913505258444779,0.007271426803313452,-0.026208258376519127,0.013284437645230632,0.020122926542512652,0.0264389600387165,0.030568785082278487,0.029265193871807902,0.010929298324862035,0.0011731959058318751,0.008288929679973894,0.03293075451742095,0.00501686529585011,0.01225252857636474,0.006105176014957683,0.021995971801423764,0.003206558782117958,0.0024360126919793575,0.011511866389739342,0.01914853754714801,0.015847243480589256,0.012006127383853517,0.014975536872328265,0.006687380428201173,0.032966867357087815,0.010389914752764472,0.01853554718361862,0.012597276548369613,0.012723263286042867,0.037523847629690306,0.00992478988241759,-0.011497854685095694,0.012226177047488266,-0.02223064497366961,0.023673337639808067,0.0193553713239794,0.006642198010826199,0.009760871129562875,0.02559781093700461,0.008403244548291871,-0.004225168602216505,0.008542145142561306,0.0004223218491846659,0.014217946742272098,0.023328977756350656,0.038299360117543785,0.02411937866723575,-0.0012898404780052033,-0.0006509629617019974,0.0022617193457315594,0.000504768942788846,0.014193600695065641,-0.0031758123540465014,-0.00844941452051011,0.008570412226086024,0.030510821031094728,0.012365367212153387,0.028397826093922433,-0.011247277594345087,0.006243818139342843,0.005239115697849044,0.036411013732315325,0.017785127977439,0.021409088021850292,0.03616768562407442,0.006027122634795305,0.002210949782468617,0.009531967053919479,-0.01601056749027461,0.007386357467471815,0.01377903564796899,0.008033644901449744,0.027084194296091015,-0.002601236644478506,-0.003263729819720335,0.021056819288983775,0.029067733642028887,-0.003448591213171212,0.02740033141670349,0.013007776913259236,0.011993986889290072,0.01626046026490652,0.018063393441017282,0.02292585631582217,-0.013709035445928924,-0.008153841981227658,0.011529030568479358,0.016450398563257387,0.03887008099260301,0.015119356163083452,0.014025347868975626,0.008150663059580303,0.01246076545918066,0.007060810839827139,0.03735408237624829,0.024503576492676496,-0.0013593324572577351,-0.006845133620070178,0.035414789782827825,0.02805244879513463,-0.0029893823762287357,0.003904461011920354,8.242454131729524e-05,0.018843185564277137,-0.031722335854415,0.03090303364520292,0.005740932206263573,0.036052179144646763,-0.026057334964599766,0.0062558382258037296,0.007392815712315091,0.026769848569723035,-0.012614733502778608,-0.024145810077837112,0.01458882779648401,-0.00012549555301440883,0.005812655343962417,0.009132767162720165,0.02475230105248901,-0.0010155304522194955,0.017481160997184275,-0.005892148321970792,-0.009321052997613223,0.010918385819137962,0.007938389120221791,-0.02959455407219544,0.02644998764302152,0.010445187126656898,0.05011498395897168,0.0037048207348891905,0.014967828381563117,0.005152820040342194,0.04675611901548223,0.006075265466359524,0.016268507927368198,0.023074929001244117,0.0024126051987298385,-0.013586298072328517,-0.004001061784618714,0.023420658572025525,0.010284413384230908,-0.014443574692298391,0.02584029146378248,0.02691361240034202,0.021749570809652004,-0.0013599849833138091,0.00010836545278746397,-0.01850914947444454,-0.008228748540008374,0.0046998615908726655,-0.0009041782827147903,0.018402677633244522,0.012961003310658616,0.013196671325748964,0.016244505152246725,0.03566715641131506,0.024563515831846756,-0.00154574699772817,0.001120835466508822,0.007909663885145133,0.02498107389626544,0.00829350533615937,0.002825014520611145,0.005729625771495551,0.002250709348686082,-0.00013670166455515876,0.009681206583113071,0.003101145229074599,0.007466053950098833,0.04443451230265218,0.004004694411859148,0.010098083187055594,0.03335916360996701,0.027624489832655353,0.031001754945957256,-0.017639509082148386,0.042579304053537374,0.01186313023097665,0.036149934094273105,0.027214148502032447,0.020884157396193013,0.04145091562033302,0.01391100597622171,0.013243589982355154,0.024656023016500713,0.0363117927074254,0.03789085200847743,0.03845956783404122,0.04528977117811346,0.009950322083319387,-0.037927139075724835,0.029926709692820325,0.009911898150945975,0.005893278300295644,0.0038177922170316986,0.005617539417526778,-0.0025194545099412984,0.0015519965341905758,0.006712875905677294,0.016112519642752635,-0.011368365202050958,0.02318565444855396,0.00032659640914513337,-0.008339554085967375,-0.01099224094957679,0.02649106196407984,-0.003882167261266253,-0.006709613227892035,0.041409228201999916,0.016957742214384078,0.00566165511332979,0.0009270541444215902,-0.01272650956183112,0.0005125243124144014,0.01739696075805709,-0.0015428129112462904,0.024733711416037533,0.01713505194377924,0.01961178100195113,-0.018262312695237527,0.016269541945717666,0.015653330337996672,0.024860315938956403,0.03866427138643077,-0.012895720532899708,0.013228945807001615,-0.008309618798909131,0.006475190676322303,0.04640430891215466,0.00020992340002821388,-0.012486684088119903,0.0003731808593752119,0.029941029785693928,0.03433262365428868,0.0292681097360326,0.0182040128923718,-0.015396630522331195,0.0028648374179901736,0.031175500345902354,0.012796828134806131,0.019556325723157353,0.024410938611367686,-0.012286741233317206,-0.0013312807184485856,0.012335767451136216,0.011685229982092675,0.010682286768818744,0.020899558580741766,0.03589879322177821,0.01735129148736537,-0.0005004012807747669,0.036588465337116904,0.02012991339055008,0.0027630011393678963,-0.013117954858709967,0.016721145112076483,0.037446686777058875,-0.0010167406259017698,0.0031035719851342206,0.020063389912044167,0.009917119219555888,0.001502194003699216,0.027539320597429934,0.007775024804607071,0.013865690952806523,0.002120523707930433,-0.027196277244977224,0.03675872863737322,0.03331400350992267,-0.0009153737936795895,0.0010732370780563271,0.005520705600935505,0.01964565704050246,0.015088804868426264,0.0028771929510724567,0.012704742627255997,0.019087257603744287,0.0137888767121617,0.0020905909859927495,-0.005335793106758099,0.02936519621992439,0.034011104657258456,-0.00022170901174562598,0.004329004998138164,0.003966750983800508,-0.0032655562257327964,0.002630645761092684,0.006137858601283434,0.002046148904113042,0.04481233613761453,0.021455716424289104,-0.006551529307704958,0.004974367704808025,0.017263189352452805,0.022855685165971022,0.012629230145283773,0.04396928019951022,0.037766667376344196,0.03545834588542894,0.047871045489994754,0.016841134540448704,0.006370391942926519,0.007584998842291884,-0.0039239578001346925,0.0036140111303558605,-0.001468080050780296,-0.008500139969089288,0.03395300878957287,0.024479939224029076,0.024949651123786106,0.04430351315964746,0.015167972525486365,0.007810843593921816,0.015181309851939837,0.004534560377058188,-0.0035618822853733024,-0.0016115740784012722,0.01198203339338744,0.036793744900608286,0.03908435069783697,0.02130971755313567,-0.0014103933237327793,0.00890956875624961,0.03278154808359453,0.029200195859891583,0.025806170814844792,-0.012566146888490603,0.000955842089761504,0.009028681589547581,0.0002839909026296126,-0.0029421442652544454,0.001820612149387107,-0.010923555428772748,0.005312009760463253,0.0022159796428301458,0.034992673758225755,0.006426219807252011,0.012930618085082982,0.004134648505929264,0.004656205375811138,0.009083569840612083,-0.005169983412436432,-0.0022932073242383335,-0.0010368504467246757,0.025304678387817296,0.026244515632477764,0.02735972512255867,-0.013365453007383383,0.002493990096065219,-0.004101436201680532,-0.007205685235829726,0.011340550168949528,0.014645308575313518,0.002492004913302126,0.02200306148221403,0.009069500806492999,0.025343886046614864,0.0044697558638738906,0.021521887173122086,-0.03548007514869654,0.010455436166136253,-0.006302989030003579,0.011599345008116364,0.019548379630941283,0.012074926480883904,0.008496906397479565,-0.017973002041770977,0.007429887197313496,0.015762526338709195,0.006453282140599704,-0.008246632467286328,-0.028738136638132305,0.00864804217988745,0.0006392899436282691,-0.01461706375841294,0.024881824985040685,-0.010392014417984489,-0.0004142283724713827,0.0020392830703831926,-0.0011602832406739923,0.0043922229539832885,0.0018495548345936813,-0.001481394286776799,0.026791050160600075,0.028695996135023303,0.027201566764887733,0.015341679356114678,0.015523320165149068,0.005109251912279157,0.01343456404408532,0.011698228732355747,0.034778034878383,0.041115201677679486,0.0091776821204269,-0.003645740232682541,0.00743247443046987,0.017406663866952353,0.025519462822836875,0.015410101378546778,0.028061078564366633,0.011746495121245575,-0.004408751108278518,0.0004912176719526641,0.002081258713916891,-0.0034155483119149076,0.04255504356654111,0.008127733627445649,0.000468820797486577,-0.012239048942030798,0.015443911582860282,0.03501757590028957,0.006286025091892001,0.011503083749266105,0.022187174416931705,0.015286942091605636,0.010498396131985456,0.015219858280439633,0.03424818188744391,-0.014261409777825147,-0.008737255643011725,-0.003980590784880459,0.004585661586830362,0.0004704752985945757,0.009048221063915092,-0.003641041556118955,-0.02342703697020074,-0.003839401252279175,0.00492642680103557,-0.03267509788199757,0.0020878271302258995,-0.00021549421152815802,0.018398574821922583,0.01703127928319756,-0.03076792291333961,0.03544788076618957,0.0005003227845110533,0.016677759619543993,0.021989640971984244,0.02730269083117476,-0.014359519778446607,0.005126429424259361,-0.007005397708928613,0.005215983320128691,-0.029077003131107018,-0.008055859351857902,-0.012605389521884823,-0.006015364129923451,-0.010448228271673955,0.002595231212437965,0.015996995732364173,0.013142029912421221,0.007152918272543996,0.009882207610655162,-0.0073872065176826445,0.01522275577982793,0.006684624727898217,0.007252270545401906,0.0088594621987338,0.04815322713849078,0.023013494624531543,0.012095371692804485,0.006659188701304785,0.01839291592928129,-0.006727274675151572,0.0027770026715226636,-0.012022010300606999,0.00642922290614325,0.00046387922439796326,0.015591186678001153,-0.0061239930432312765,0.000904884717213178,0.002283909318413382,0.02756613347304196,0.01761649883938164,0.04026270605309275,0.0182797715996255,0.03532181703554461,0.0007913244216998589,-0.0015366825493107472,0.03014920507759149,0.012121681636642569,0.01593433417007422,0.013699647205910374,0.026328463707962168,0.011007258660057457,0.031096540525773212,0.033957091285517806,0.02720424265866259,-0.00033582829664823195,0.014480802578293503,0.033090710639041815,-0.0034873993124119175,0.012732176679333936,0.013080220895881334,0.00014712428579438685,-0.007900869694504944,0.011436907205098299,0.03515140814893471,0.03126895113977818,0.004147945799878834,0.024197140993600125,0.009559232736723376,-0.010863668062636537,0.015369475400461135,0.005420395494004952,0.04246190153196475,0.0025512775199928676,-0.019812729739983062,-0.014221038203070803,0.009639057175638628,-0.0030271007700518886,-0.0015659470946389543,-0.0015789282718350131,0.04260767119818739,-0.004943814996319682,-0.0022839157157023724,0.021252788442522253,0.005365377427105603,0.03778851866668595,0.009749478342660607,0.028079469303265183,0.009185173209817352,0.013127151566700803,0.027465054269263312,0.030764475012654897,0.023803923746684136,-0.01702277674516331,0.016322326101456282,0.00728386078298596,-0.02695136877307666,0.006934762297994841,0.006764641861243645,0.0010040913797975109,0.028811935874088736,0.0027316789737876386,0.007421174752213887,0.0036228080741483415,0.01684759415815423,0.02958107916553216,0.004499179038669031,-0.01742256414917995,-0.012767140443664608,-0.021805722554457195,0.004266898129260117,0.006979284380083305,0.02949544232652628,-0.004272971716720323,0.0021462250296635796,0.00599616363296099,0.014527255582397041,-0.008898576032402574,0.008390563595405874,0.003738415932228951,0.017005187498990233,0.021061410821826245,0.04028530487023068,0.022475175101431037,0.043424471217445686,0.01598990235217768,-0.018203235460426737,0.004241829671414283,0.0249405122849034,0.04241245935368314,0.014399405657119738,0.024548165285182187,0.012494256691793132,0.000858606573314394,-0.0038972118430545873,-0.0011185105362425884,0.005540994752615013,-0.0026845226218014215,-0.004566281752440599,0.010876521030915954,0.006408774581644303,0.010957885843759384,0.01208323790884874,-0.0007597070980675748,-0.0030708315297734655,0.005182892664518856,0.018641032495395584,0.017262666212962255,0.007373232196612023,-0.033371631777188084,-0.011932011170134326,-0.010691759285214509,-0.020865126000936762,-0.03290881762831127,-0.0009812508164776044,0.011128354336536575,-0.0022843666836742495,0.03528161287511175,0.032917846629015056,-0.0005959591500462695,-0.001904912075739562,0.005662435781552438,-0.01193283000366929,0.007075261732212833,0.01776884395157567,0.021762849114191466,-0.02208065210835765,0.016350674425033112,-0.006145424653918883,-0.01838379102431847,-0.005557388959677561,-0.0009959428393321254,0.007262561190698752,-0.005908405541840164,-0.008128523117432788,-0.004640902293285958,-0.04039967618440381,-0.016056853506428135,0.01759729658390851,0.01537491177210693,0.028159787969145287,0.0061132704881508805,0.02085480898197834,0.005805681184793916,0.003179411864395733,0.0026588885440955597,-0.0037116503853677064,0.00029212093632103556,0.0010588174744332111,0.02307045449781706,0.010110018273312314,0.03223931464569867,0.004546506121691377,-0.026280682041999657,0.009061284909316021,-0.0004393541789090251,0.0009009437745283309,-0.0018748689492497186,0.015327548447211951,0.012317223384814875,0.007694286570203941,0.012686441653067605,0.0006087976835385042,-0.010743452840170609,0.006556443396327014,0.012686551430748944,0.014368078960813066,0.024990345086964905,0.015530268324142286,0.018827165416785634,0.04296079661978377,-0.00041800244758910727,0.056356317859541184,0.03899380213995127,0.016093933278200613,0.03196848424633072,0.02050070278920923,-0.006290501021863126,0.023274532625766346,0.01961748379295929,0.003657510235473922,0.0069225107297524865,0.00749073265989146,-0.0021189649625444665,-0.0033841006485781275,-0.002784107398305399,0.04235060211094683,0.02503090647699364,0.018016286831874593,-0.002733759788189772,-0.0017483164293747465,0.02826669338837322,0.01906676413489708,-0.015998168124413896,0.028716042446636173,-0.01714187988719197,0.0035230377862639425,0.0035920424493474726,0.003270084009391063,-0.0063102470283429085,0.02191060108893918,-0.005991198597480118,0.02554105208889969,-0.00038194862086775284,-0.00011149361425953562,0.009057776670001412,-0.0008857843571592877,0.011379202082600992,0.012279013139619765,-0.004019696043968103,0.0014607026917626887,0.004005566579908598,0.04002692462384693,-0.026362502589730216,-0.00918579888837736,0.0015306660996273489,0.0047612144852997125,0.043052606010019596,-0.02008926472414452,-0.0015511774106096376,-0.019376835260037015,-0.023281434974352363,0.0311049478591296,0.003517958478969292,0.0001133528488641961,0.020741995635545636,0.005636105603119258,0.02228491401752858,-0.003163324032201403,-0.016691350798465482,-0.020284261501590878,-0.0025888706171287635,0.020397654151025943,0.03015271385194891,0.04365252311574279,0.03515556122947878,0.034273090488012435,0.02650759264418831,0.004695160463547205,-0.007921702684742002,0.0021290789258750394,0.02103207407937045,0.0046808869937252934,0.008036815254864826,0.010501909765344652,0.02948842724888003,0.010696185022203122,0.0044799304860843325,0.01725869291289,-0.00415432531317976,-0.008452408356938546,0.007440677518885681,0.0016755617961340815,-0.0056153680839238496,0.02456315679473079,-0.0036334746472342994,0.008499789175742374,0.008687602098029757,-0.0028534238908001328,0.002857761979111838,-0.01221845772646394,0.020482367003145825,0.010145487466305452,-0.002972970197236817,0.002789050035330524,0.024790633543998145,0.022143010801698667,-0.028440940971947114,0.01983048056729659,0.002748695824361009,0.0006640592480375493,0.009292278109953662,0.033007724078927006,0.009116125832709179,-0.01848755275893292,0.008634677672583475,0.006232289608335349,-0.005331928574136068,-0.0033107420823494486,-9.692002100470091e-05,0.029480259412818028,0.005929981151457351,0.008349648783184779,-0.0026763302729681934,0.01341012927729677,0.001001380571608877,0.0011535707547204114,-0.0041938239280068625,-0.013481242770828959,0.008056701697726997,0.017267257109029214,0.011328418343705026,0.015980830331228303,-0.0016637499216795952,-0.002462309856744045,0.02192259802749836,0.031301245151345324,0.006183483959558658,0.04772140091203189,0.010290772974900868,0.00977468175432948,-0.019116786196729633,0.0223285068747006,0.02233863928935055,0.007229903091491221,-0.0069606920671296865,0.0041714866865819366,0.008545064779420707,0.010015156490669598,-0.0007970683046419963,0.005629090694067136,0.0027278159644546236,0.01228202453342687,0.03468983004207723,0.0203691089481982,0.01707470689784536,0.009146893251929796,0.01996714985433102,-0.028420102374966755,-0.026171460565660574,-0.018924303654790867,-0.0029954952163544256,-0.008880226992503312,0.00314766967320955,0.02121917921829021,-0.0016311121333880266,0.023740062001124957,0.0058670858852331005,-0.0139105001935257,0.030169740101257135,0.0059776672074528785,-0.019802361835026858,0.02565462839341624,0.007699255364388905,0.0027252619491501587,0.013905881767272647,0.009809844583139927,0.012538178155916922,0.01704729019786581,0.01093873960663716,0.011651939655319807,-0.012669524053105202,-0.001984912816989952,-0.015871731456774937,0.010266755228174603,0.013405866517181696,-0.00646047342661389,-0.003829673410942946,-0.0008961929130848513,-0.0012211300228321235,-0.006815062684425967,0.006137655714869156,0.006482483542763056,0.023283306768816805,0.022381266521035517,-0.0012943110542966679,0.009906287979024984,0.0015468222386741067,-0.0011772585668083301,0.0022441649128383864,-0.006439014189064581,-0.0001660940545546708,-0.0070543286373143735,0.014179257450448249,0.020954538384607896,0.011707346703957284,0.02132484892413335,-0.002449041444639749,0.006985616745948022,0.015610915742979034,0.02437258549502462,-0.015494769906311323,0.01388833778900371,0.02634210611787786,0.016153867346759304,0.012996507791506517,0.030900214566981214,-0.007792244206890275,0.0009248868694665943,0.0012996319668030754,0.007792105014818281,0.010945356955040618,0.00935805454409827,-0.0023693827112963484,-0.009021675696642506,0.02839294754209607,0.0345235100031692,0.002233090251521322,0.03406298480388196,0.001902506903006552,-0.01484976410894529,0.02139625102066285,0.021291081292363692,-0.011765050770397826,0.021137515515679727,0.023494803746082663,0.035988093523521024,0.021944262503250777,-0.007273089251009866,0.002498233330126084,0.009723328737484181,-0.0037909761097851134,0.00028227946805598614,0.024365049957663528,0.00865737819710756,-0.004163843136646196,0.02258363727200242,0.002996842100480831,0.013121549579304958,0.020846307359253892,-0.00044845670098297036,0.007079807134588547,-0.0013056055664496418,0.00042125416806633925,0.015363918464892054,0.009090869701614055,-0.0018717207778549052,0.004833353677418513,-0.020392612854406453,0.001015357563883607,0.013411783991349513,-0.003951620883554433,0.017279702819725917,0.021830067819185582,0.005754117937832871,0.03202765096274642,0.022231569022016697,0.011580655312323896,0.006927008814249664,0.0032134274251625836,0.00035120829286748253,0.01758054929241014,-0.0008871407128672384,-0.002719237857943744,0.03493292523761279,-0.005722126821144813,0.022568478146639058,0.013589701919391977,0.0006964547235194367,-0.013163948024219154,-0.0089137456970954,-0.004579249540227412,0.0032890596436912735,0.012895007550827047,-0.004857626017821822,0.017254808708437618,0.003562734325503279,0.01152513906257006,0.019511694061536612,0.0064678541143210295,0.012008029316232245,0.031350050221489414,-0.014764669271956235,-0.014123332978045177,0.006484136700166734,-0.03930761098862931,-0.00029101230296658525,0.024312835081540158,-0.005672350298415695,0.021772285609551908,0.0055874299828244075,0.029972464947701203,-0.0069501113433991105,0.0018485821304679137,-0.005776506645143678,0.006853077645120153,0.004749587141791079,0.020839935016730562,0.020250196064680245,0.025174633765367035,0.011790043925944241,0.0051748435386919246,0.025443658139526214,0.01363453000945214,0.007818010074416066,0.002636294700810231,0.024408286557171373,0.032345106682437716,0.024682062730170172,0.022503580977943024,0.020205773267406687,0.018547945837646393,0.03610509474349674,0.028176438561068353,0.03526237719533839,0.0176811713903757,0.03184145152064219,0.017066303292883354,0.0026935223045605272,-0.00730509863027393,0.03049366250143772,0.030268633482692306,0.015847718547423145,0.005277470686904822,-0.011945525799601928,0.014456231508718598,-0.019582396274296237,0.005221352783315587,0.03297914771010738,0.0061343777504538075,-0.019589222121628797,-0.0024812683487449444,-0.012891293298482482,-0.018249787457437595,-0.0022704756410743313,-0.0018124629168589864,-0.012832125929579146,-0.005596514015278946,-0.002362543901672986,0.003380992024715155,-0.011306533474146483,0.0006547630628314795,0.0025760150070827876,-0.020736554877983898,0.008270674405208041,0.01983146232866202,-0.0029729871663233148,0.005723848328032427,0.017404304875318653,0.01329855966145815,0.0118356022802233,-0.008049386323061762,0.026905279426426825,0.001010038271840208,-0.0018332383194918861,-0.011706770813914509,-0.022737862875783724,-0.00064344806287502,0.010629890137879537,0.020578660236475234,0.017900325995985997,0.012476111233374727,0.035508042842978975,0.010838788203877741,0.01475363069020131,-0.018420794013328544,0.03713710724450636,-0.005419183741400007,0.01392364902228552,0.027778894030168054,-0.021723219328656566,-0.008861688999367462,0.00316764867832974,0.005449174081797089,-0.005385769966082779,-0.00614490140289089,0.0004942669406050453,0.008516113775190723,0.013804964667353963,0.017190881078819557,0.019790007628584863,-0.011321436401685868,0.003311819241322266,0.005946546286696932,-0.003286874754917492,-0.005835675567735255,-0.0011191719272170399,-0.008562829675321819,-0.015033138389586757,-0.00727248582578219,-0.01786833638950108,-0.0012684872146361064,-0.007639418742020377,0.014725658036077241,-0.01976033408794751,-0.003389924419083781,0.013688062449698519,-0.010899876105874536,-0.010954713517475083,0.019333056633490033,0.01263030929935989,3.741623258797699e-05,0.003584066389980615,-0.011124014763240013,0.01173437766361471,-0.0046982950546003415,0.007343855906341503,0.004136264498045178,-0.004504784890102133,0.018777538990650704,-0.0033137236332102613,0.017214192047481154,0.005700843724503946,0.022830598336242375,0.010472636942940275,0.024847371896397758,0.019035634364634922,0.016996329692356354,0.0060713233332901845,0.019142248953300398,0.003899032580631562,0.015086548325023291,0.028252247097829666,0.010721529162950941,0.01567876095286609,0.006451972256669129,-0.00038187653261741183,0.015719599789371555,0.023592738639733112,-0.000421407175365488,-0.03431276597431803,-0.002622761389735748,-0.012403602589520286,0.02739303469998936,0.0006695478247377068,0.013052130822368576,0.029035348900368435,0.015550911537498279,0.010585429099717185,0.0146687032488504,0.003022218807321239,-0.010276504477793706,0.00449919853765519,0.009195216183315782,0.006216645959219729,-0.00725067037372569,0.02994839586130089,-0.0016539985639545728,0.021566040581689178,0.004008635812939793,0.005139632719657867,0.010007641729759485,0.013383933503099103,0.03299969175839068,-0.010785539963393848,-0.0004177702178952796,0.02917669973188642,0.019850758168512027,0.024568407833012278,0.05110133491298727,0.01112496394605316,0.020160006499064333,-0.0024254702025982757,0.0026763551213030454,0.01316159686809903,0.017600785616059454,0.02262972321762209,0.007092505515022843,0.01872401316622457,-0.007980469114662155,0.014825065814206895,0.026603955386151446,0.01915806818376727,0.03450996938963026,0.004484971663512824,0.03570019051722052,0.010712669748960818,-0.01279274233204212,0.0030756156962265645,-0.0014091898542232092,-0.003201508572420516,-0.00408625475676528,0.003481339990140231,0.0068376137559370415,-0.0020972737148355768,-6.433727561510507e-05,-0.0032177989685550773,0.01981934244055387,-0.0023696230959070583,0.022971596690660682,0.01019234211615043,-0.0029479016451617406,0.021048139506727563,0.021738635455037354,0.00121395271374028,0.013534498383511366,0.01202956279436497,0.008028376452930074,-0.005624111592402167,-0.007642310322594501,-0.02767950741207171,-0.022527794501737527,0.006718621192905726,0.031124263010440637,-0.006458101805212617,-0.0006961937395968471,0.010046659863726035,0.014277643116252944,0.008362108099347305,0.005316380309210171,0.0063484010883589825,0.011583347357369989,0.01630660649837712,-0.04605005810766872,-0.019497055303737743,-0.013277947453102927,0.0007673513594386098,0.00944803540089826,0.007938230915463055,0.014425774585892108,0.032241068013052605,-0.0005859759420688473,0.011955356310816479,0.0029156735020837736,-0.004416815654548859,-0.002924992270009186,0.008164050638570895,0.01180250937132111,0.00036270856199303056,-0.002018269646966461,0.015259163734401057,-0.014692123141052274,-0.020231872533767938,0.005959436832032606,-0.005179244936663308,-0.017347684700366177,0.012927537657502916,0.013379766882422733,-0.011776758229206057,0.03277139964670351,-0.008590004738740565,0.008342598224749712,0.01134482089155143,0.0002382331648260367,-0.0049254904879627755,-0.02118343373647819,0.016629452875715267,0.0235690438936247,0.021292838951960685,-0.001944963445118508,-0.02751517752465757,0.00992586169904001,-0.01284707323334957,0.012171239928714475,-0.0012935785755544397,-0.010837125743789571,0.026808096600447064,0.020252053027047596,0.0016645988458252369,-0.01002278364615072,0.01577230881547634,-0.003167325938314871,-0.002895273241795808,-0.01141927307142222,-0.0010350254646641387,0.008350261629072406,0.006703071327422703,-0.016903538340549244,0.015522832754636796,0.013564213414677607,0.014204414156683135,0.011557254619446154,0.009223473430195523,0.0016883877219315323,0.02273054644947684,0.007479063809442649,0.009617185143388838,0.014003203044173594,-0.022064173231585903,-0.015927767633619885,0.0073206881367763295,0.023779035253219234,0.0013119177083476476,0.006162308078331678,0.020508874831010104,0.008647729367630395,0.014189325000442135,0.00045155984341817653,0.01757306593900557,0.007329243303852094,-0.0021423404178597116,0.0017603289444037998,0.015979841100362296,-0.023694881470381193,0.009014796344681738,0.02164349578264135,-0.0140266472484528,0.0005329200155860292,-0.013542029867266063,0.0035345871470184266,0.005160464715932574,0.01567522876724277,0.02233619840597013,0.003653211028537709,0.009077689503263623,0.020182405739196507,0.004360041193439249,0.0293861896062584,-0.008914761256172958,-0.006209182984634459,0.0175056937138071,0.0013757615432428317,0.02808850488358279,-0.013423847478354201,0.0290364443539425,0.02255556562798071,0.02932234608002981,0.00931255463678623,0.008896112956716141,0.005801069343634897,0.039731306919260544,0.008766887194758365,-0.005981159772760072,0.010025301308080579,0.0006166390501377402,0.014312682948328085,-0.015394989452668397,-0.0023974955597228045,0.025490008552003302,0.012709449417534591,-0.003846930801776637,0.009263607534230688,0.002234902100633378,0.016721365655760403,0.005996559771464014,0.02172813403239705,0.009212052285822354,0.0020657554080429916,0.02606675509226536,-0.0007649285609057693,0.03726455485315183,0.028133166964837624,0.01840945701280079,-0.013178504172601812,0.007183604868001541,-0.004319380541675198,0.004892049742784929,-0.014749320624007143,0.012160434217475112,-0.024742179487074058,0.024164974378571374,-0.029008488840035488,0.04024548005507913,0.01403953118834892,0.00934013536207062,0.009419965534172231,-0.002828265025635813,-0.01737047139384273,0.006307315094034795,-0.017591586439088154,0.0134899101624629,-0.01831018068549521,0.020725454713560798,0.0002971023956684123,0.0044028081870749,0.020958254359172916,0.022114823028188214,0.01668202778834703,0.011604877804694266,0.00410945567993665,0.007581206901998585,-0.0059052909665350505,-0.027698979483843783,0.01915154313166189,0.01579173811894073,-0.008349920817658054,-0.002147175836355246,0.011225577162988935,-0.0015146891368317949,0.0007364372981856361,0.01831195293522506,0.01831305567291836,0.027096056393804625,0.02615349345558975,0.009257238695725938,-0.002365889140327216,0.00668730343320697,-0.006687533970787838,-0.005670165968783739,0.017865385884442645,-0.02471036545553731,0.022156628242332187,0.011245499572764642,0.009786290580839936,-0.002966874953727372,-0.008760555621279963,0.007652080034923982,-0.008829613950331343,-0.005600409581528186,-0.010560687694010359,0.01018107248395841,0.0193133557750078,0.0063798070932578445,-0.021266080043503742,0.006987773738252073,0.007966458154878734,-0.004738987479512853,-0.010553655488251908,0.016997229493934684,0.031509590629351374,0.03567180112583744,0.018297100243447866,0.015416598709054045,0.0156027852165242,0.009766274143888101,0.014155975511226783,0.021220677739802334,0.005273549008524908,0.017594037464133707,0.0042477531989887915,-0.004860680290768445,0.009045930294796441,0.007554203955817738,-0.017937112028341258,-0.002104135972095487,0.0012835166237227659,0.02293445235480255,-0.023329018342088167,0.002008908095989777,0.00466034148186778,-0.0003237463495043495,-0.020453010987397068,-0.0023362327916028876,0.01498202025470945,0.01414220200482735,0.029005843545809276,0.009077651530470035,0.010811314428734833,0.009888637459984986,0.002046586064920746,-0.005358221414588423,-0.02269269351077903,-0.011612581029210417,0.018716890210077154,0.01029289533665565,0.00688124203626848,0.013410918514068474,-0.02512846965084643,-0.003281444661763174,-0.029899415936956768,-0.002138812977290865,-0.0011861991246036058,-0.007880853912150116,0.022029650562197862,0.01384448851856722,0.004212607596577132,0.0057032243042540445,0.0013288935931198077,-0.017199627381394085,0.03596871471048936,-0.02127629486733956,0.0018142311113160908,-0.010439884627201624,-0.0009830516364120656,0.0063855957320563175,0.005978805877129558,-0.01227908993919181,0.0023245646563922018,-0.0156397567913891,-0.0060835386356055,0.004900303205276972,0.0036937002251296496,0.018634782070705076,0.02753141312019368,0.011837423855580662,0.003995828883350365,0.011376346898201573,0.014986761609786755,-0.004793608178673023,0.0043809866916380705,-0.004514722251861859,-0.02030997270687296,0.00035408361057199725,0.022200561673272032,0.0011565408265875468,-0.013853017520134455,-0.007729268851401656,0.03250615944282417,0.009612166959053479,-0.009383557011677302,-0.006371111011979394,-0.008097494322414352,0.01728468918727716,0.021286524083147327,-0.00388251016882876,-5.641412132331214e-05,0.002847693123851438,-0.0035399789246086948,-0.01308659606077681,-0.02512205458714651,0.015755280531585175,0.00951462387367958,0.021097814965445716,0.004246561319305643,0.01679126585547097,0.024331799869406,0.02221296260680869,0.009712653211168022,0.009364721816302768,0.016374162742414308,0.015551970913284915,-0.00566399968826792,0.023644067164300744,0.024950025588851402,-0.017059427342690354,0.004999622096890968,0.020084917826667013,0.0035032835661801894,0.005951817180191206,0.002225626431503638,0.0129499572459567,0.002304470196855765,-0.0008715523352964053,0.03622340947442522,-0.03377480507416084,0.001704986775504337,0.01088223363467566,0.002034492626657297,-0.012708946586495668,-0.00043266256417578367,0.0008746821271117453,0.001988621422928545,0.004180967431111055,0.010916903857394597,0.013654676620959837,-0.025724888565897476,-0.010217363118600447,-0.019798508555080856,-0.010518156041651754,0.015731853432691876,-0.021665440917456282,0.02126150580395548,-0.050797312283365266,-0.011328689160458802,-0.0028970446162248195,-0.029225410747073598,0.012628903034409902,0.002485908832918807,0.001320423864263355,-0.0008003975926774722,0.01690500609043272,-0.016709645725590774,0.02569713200727099,0.011131444138066365,-0.0024558955516974087,0.008752557000767778,0.016313584628087817,0.012123748708207718,0.02282333361648705,0.010103971019017745,-0.0025918687300245016,0.03273484334910104,0.015846681736881987,0.03138035629082525,-0.019250508555556267,0.006101543733052029,0.018408673243702593,0.00938607079986472,-0.008958623284229165,-0.006254115856176626,0.024230384106284784,0.028834519012084083,-0.004658478042279633,0.002769108858608167,0.006876438542388184,0.017451026735332806,-3.96253447592628e-05,0.01445672040435758,0.009356690393349281,-0.028523058790260566,0.007013304857166896,0.01877097417680842,-0.015449966943498546,0.003733554953627076,0.012828214006581464,-0.00029018228120120587,0.00936531118363803,0.014121069057207506,0.01618411594090951,-0.02772192841696654,0.024603616979211134,-0.015009138636740402,0.02347394614468151,0.016508664249321424,0.022737121302621302,0.016513275543544516,-0.0017033915412876068,0.0003382423598734675,0.016061170949609363,0.006713388394602064,-0.012606870300577949,-0.014912062157439114,0.004921096970454529,0.008231717821002387,0.008993771619425247,0.00618569929364714,0.0029636345266813194,0.01924966689802948,-0.008354767878023315,-0.0026797969146692404,-0.002252344363556572,-0.006437461729991783,-0.004221387233907552,-0.021466475826940546,0.019388749486029727,0.020321202860327087,0.004290772066469071,0.014502610475535378,0.018257687599732873,-0.021426202069641236,0.027904514881217445,0.001209300283181582,0.01969503320495219,0.014857835598845973,0.018084205779992937,0.030278825767544218,0.0047492712532175435,0.017813721765880936,0.032220112509193446,0.030102518721148098,0.011703452627421458,0.007731399245093525,0.0032399846916378303,0.01773661241799021,0.014120641701887988,0.03354588804406023,0.01111428588861086,0.01640608415251253,0.007904539926756418,-0.007736699666525988,-0.006046983566596757,-0.0021428833680926926,0.002927059697685339,0.030004130856904697,-0.0036089081578193653,0.005926601226744837,-0.013909415606359202,-0.013818970269338315,0.005851758896820206,0.020444111412293804,0.016767341578973208,0.013745909110574371,-0.008157087939307306,0.012209040073254351,0.008627828907228782,0.007083766735810729,0.01753745904589015,0.021088207063252602,-0.0022713903800873443,-0.012297805738736246,0.025345833540148164,0.013323586165288743,0.01272623001675451,-0.019856908487699804,-0.007668329331291589,0.014177131157312223,0.024113038270664532,0.03163961132887809,0.014216243709172833,0.0015164622801274188,0.009660016250723108,-0.00420322648638163,0.019699964336578554,0.016518422671119283,-0.003639453335085283,-0.0057331427646141395,0.004123517846381592,0.010685052191233746,0.0082279421420371,0.009035534955205298,-0.001403617507912118,0.01461516143475636,-0.002238632589342303,-0.018253564572819948,0.013066832123457882,0.00522836594870006,0.0129454831596831,0.008576441571212087,0.04486532339335568,-0.021063785665581713,0.0075562284712741845,-0.013507354844196085,-0.01526666141410605,-0.008362944867473885,0.017482954234838866,0.012982772465749423,-0.002170781272900358,0.0023825998394488095,-0.0029578416969613408,-0.001405235148259523,0.05068452035801218,0.00047618201714861533,-0.025102751359329996,-0.026404460346570017,0.01566438795353373,0.011500259619403532,0.01585610310554596,0.02176896719419572,0.0256767796176691,-0.004634708114919204,0.0043567008300549005,0.022005609122170096,-0.0018548676492644225,0.003488462144778938,0.02678994904601941,0.016136956680110143,-0.0012989274012088305,-0.004523843626927965,0.017732488863829454,-0.008062321716240852,0.007212915885798456,-0.0029518679449101015,-0.020077946374713745,0.0050853162498243265,0.009091336850387209,0.01134416336155536,0.014409865308548634,-0.001873490371725885,-0.002758322818424632,-0.0035272963469486335,0.026576090579940412,0.020658872868964225,-0.0009687087092397756,0.0384982678342814,0.0013764392518967356,0.00015558917079928924,0.024981753986353515,0.030611566087588308,-0.012340282927793269,0.020400388755065432,0.009399648438732259,0.011597356519915858,0.026814754228910494,0.013847656046739184,-0.004175777321393193,0.013189379452585857,-0.018855998749829028,0.014479331951315337,0.01175432563484091,0.015407936773517187,0.02022639148323766,0.002595151383538163,-0.02855290414123371,-0.0038036101767057193,-0.0028041981554809622,-0.02418143157792393,0.0009223214781482399,0.0009746086894392785,-0.010078675766380574,-0.0036367168493822606,0.01776052418532099,0.004965616705510561,0.0013880173990683347,0.007127120546335139,0.014972723574948877,0.0065525170627370385,0.021485633954266167,0.016171827074733285,0.00024234551501972474,0.003370089256955496,0.010952869414639427,0.013308346060112473,0.01938370779562236,0.006266350165674566,0.011536180279531889,-0.014376066355789767,0.01426864262518053,0.012479051639412668,0.0018121076397245395,0.01628416057466197,0.012776018126898754,0.02482494017010851,0.015672508385179005,0.006627722336618783,-0.011193912582935053,-0.010893052450190507,0.022317617583953106,-0.004457427430475124,-0.02108543854466038,-0.002378616320167777,0.00731408974522204,0.007736364328694591,-0.0170058567383446,-0.00485241978122694,-0.020968602439380955,-0.012786359506187403,-0.013965043631233994,-0.029408057599958962,-0.022172138595831458,-0.002296853278462946,-0.029862689361415593,0.002230153312035245,-0.007828790342445161,0.0023054815199052077,-0.005734688829076095,0.009789147524540976,0.013511141329616668,0.011969492178448022,-0.020695061030836175,0.01753089731222338,-0.006397485869673118,0.013616720113423814,0.00010263784856666397,-0.0061379402638570835,0.01805308984670845,0.007938146733826102,0.01493188586226337,0.0023875852887235006,0.00460788877252375,0.007513245359406794,0.01635445350030343,-0.009154044545767952,-0.018785916788806437,-0.02470811421886901,-0.020556347417643714,-0.016697464107217095,0.009667239826358665,0.017931698187083726,-0.008672111577706261,0.005555382433088497,0.005557309799557554,0.017536807160565066,0.011962512812015845,0.004558225046291535,0.000711574660201008,-0.00853391346762136,-0.0018806738154179428,-0.005042937704357106,0.007610566676575334,8.986334660644636e-05,0.01115777931202209,-0.004993786589773363,0.021444020903177,0.005837987231432989,-0.004193833067322803,-0.01914240183322969,-0.017660254242666533,-0.021724494155552485,-0.011145882717010279,0.020191923974828427,-0.0328142585628142,0.026240525875995357,0.0023333978797114075,0.017458617200885394,0.005998527499055446,0.0050717468893867225,-0.017743080766773403,0.0003121207805815743,0.011373630402011255,0.008878212782513203,-0.002829064747006066,0.0016472381037823838,0.01120428480355668,-0.002238980678718909,0.018195567525473768,0.014021944721875181,0.0018175370041399208,-0.009107346582886195,0.017923240963844105,-0.01628738596925194,-0.015481559158567611,0.015863696735339185,-0.004890636330093299,0.001169804293244026,0.007456436744543776,0.006743158859977051,0.020429869104093334,0.007565243826826187,-0.005711471425053903,-0.0280738710360817,0.0010224394750775443,-0.0003397905855159532,0.007940865488928622,-0.007975311891694968,0.020594671462009693,-0.002575744645055468,0.0240314590592201,-0.007860264675227937,-0.0022766822937436955,0.0013547274253673787,0.019371284827079633,0.0068352819396106474,0.012736371053783491,-0.008004892408859147,-0.0020009229917609906,0.01917028014871706,-0.004000745537031319,0.009826940212817324,0.014708146191220108,-0.00791743969235922,0.014284913170842382,-0.01999805232793371,0.0011939272165517726,0.005628980246933511,0.016619885777561714,0.0024995187741260827,0.0073568746245353525,0.005322702581119722,0.007858563921692815,-0.0024529569285121986,-0.00805039609369509,-0.007547994782099791,0.0017513167805730083,0.024667831143935313,-0.0035808367748206243,-0.022146987677041804,0.01057483673564169,0.004208756458975826,0.006344615720931169,-0.0006220676318301167,0.01958863739865011,0.02485669504584509,-0.006342216929663552,0.00012597702822525906,0.004958637100422066,-0.01777706355761186,0.0018043156657322834,-0.017563254220684874,0.018079592477577597,0.013731625404570687,-0.019379968865193588,0.014391793089755741,0.006224666720516464,-0.01911654865608358,-0.025732992910961375,0.02412886788423506,-0.003778528522420596,-0.013626473903039858,0.014797218536923888,0.007559322610712113,0.006597676279475422,0.009612077374380463,-0.03873233341483221,-0.008183408700885103,0.0092100770000257,-0.0016146157243956535,-0.019188923653313237,0.018908315714839728,0.00935270894906122,0.017430085841399646,0.00024405885716826485,0.008171316448391953,-0.012561058467123078,0.0007774618249308146,0.006428240466081221,-0.024806751755321585,-0.003569312134993515,0.019414112676321836,0.0007581679819207149,0.040028795439129274,-0.0012679966097363532,0.007613401321520511,-0.0015014941335970437,0.02832640995675581,-0.007474577105387863,0.012483570223442653,0.011145783051856036,0.013446865892856695,0.01100157256786314,0.04217425196695213,-0.010572993032966353,-0.014150759478884204,0.020399392182535718,0.008232812985499011,-0.014431701708086057,-0.00834560241770704,-0.002864811628541237,-0.006084069421273137,0.002506794777983318,0.014944382686679504,0.008847232694201578,-0.0007453868937140898,0.0010327932554165952,0.0008924579930431695,0.020550160457995327,-0.0003795899716365814,0.022445906003877827,0.019046483430869843,-0.0008862195476248047,-0.01467424384886182,0.005795448463856839,-0.009250055458572349,0.007089285747525065,-0.012548064014690887,-0.008840342724211362,0.0025211609465733155,0.0038628528760066842,0.013795360674560093,-0.028159246416591933,0.00470147921073651,-0.01262766365417673,-0.015008041846098387,0.015839840173176606,0.01687980940516499,0.016700675082073183,-0.020963114072212487,0.011815699041766025,-0.008776736008111925,0.0268431741694473,-0.014276898646439348,-0.0118245392758726,-0.0010116103906818484,-0.007321814126560943,0.0001998462614390165,0.011871516806044957,0.014890619238106436,0.015618748662560102,-0.004379725462908443,0.016400867030890106,-0.010021114743099432,0.010185457890910337,0.015947263561537462,0.008420122767365909,-0.02155351659949225,0.0037286095243684566,0.00932396647022981,0.017947524654778984,-0.008482859872498017,0.02799211653667236,-0.002824106983398554,-0.02481346015622337,0.0004626940602719015,0.03316961401427467,-0.005101419047861721,0.012114970032380244,0.00828285320323687,-0.0012083984720718457,-0.016664709548937968,-0.0015907441692047004,0.010438782967140499,0.0037070853409591257,-0.032058613594426515,0.007459610636786742,-0.0324429812596406,-0.01391345791065589,-0.01394668913709456,0.014069540411254458,-0.008603898674154294,0.0032426340736174137,0.0018179475888955685,0.005759110416761574,-0.010557968984818563,-0.011964941491682667,0.01846552870601004,0.00047586463757187485,0.01586439446094439,-0.011229826158682815,-0.019913597434208365,-0.012868296997204418,0.0033317502707087584,0.006638079720713355,0.0076607054992344084,-0.014082506096049196,0.023420243413136966,0.018489874440244913,0.012014048820376322,-0.002744632255712139,0.015014121476797182,-0.0021716022733426093,-0.0010479604687618287,-0.010014618827511269,-0.007132361066893343,0.031191748652057767,-0.006188816397394759,0.02589408402660137,0.0020243060471482255,0.007024097867325853,0.0014378579538821034,-0.011302809005706117,-0.0032038178643374374,-0.0006109472184779415,0.024268224817161437,-0.007065326404050433,-0.011601695001095307,-0.012112024868682842,-0.016464440392506732,-0.0012254571102594672,0.008525425961876045,-0.0019245499784675017,-0.0017044617731136304,0.0035260967930308344,0.029656283200812452,0.012634629938438665,0.0349546099733383,0.011106266535430214,-0.013739315237585559,-0.0035636375335670457,-0.005224602730793786,-0.02785030896442341,0.01895061022021284,-0.01604705515159469,-0.022960861494064694,-0.004699340029787918,0.009566218256814474,0.006701146962163313,0.009369025897612624,-0.03643492325276369,-0.005447255784233818,0.025457204087666763,-0.0048203360314885155,-0.008640916271424569,-0.0037326797527377073,0.010214487969478549,0.0007232912583216286,-0.020255979428408167,0.007029098885113436,0.002457922860484566,0.0022688546119790476,0.020200336593703388,-0.004500399194040811,0.009519084816315805,0.013102531648323432,0.027703811647309756,-0.012730039740364128,-0.012734354659423066,-0.001579649226221717,0.02265452279366347,0.004927947383086522,-0.015474180968677908,-0.016010634206652226,-0.021150458633151105,0.008916257450167036,0.00023836352551544204,-0.00820062258376638,0.011068094361610978,0.0067175928721316105,0.012183824549614395,0.01398770873278391,0.006007314586746378,0.014056084321259437,0.012589992307891913,-0.015731780219167154,0.0036935540898678306,-0.027519602043433452,-0.006258277377897709,0.021379877636214246,0.003415267275762371,-0.020854750815299927,-0.006324349229801857,0.035255200815670344,-0.018816706983168965,-0.006508364384676104,-0.022953054458696373,0.0007649036653751477,0.0018141767686503944,0.008445007752195161,0.027626493971051724,0.021350953606033528,0.015420081451462475,-0.010618704473896314,0.027326968033595904,0.007380299642351446,0.007087913214210801,0.017361730282110605,0.035645639054371736,-0.007212694269470827,0.01208642053775707,0.012217517679626772,0.008225645580953398,-0.006090181065263183,0.0137047231426695,0.008535188465644354,0.01046391382856882,0.011927001595429813,0.0021916509570204233,0.028370363347637973,0.026660069815115865,0.006212727985212744,-0.0021603740332506293,0.018947203260988296,0.026585545668934563,-0.00045410476140938085,0.018293770873020348,0.025953283165909623,0.0028581995437244614,0.015187194367042337,0.024699378700688272,0.03759823499234487,0.03746490600651172,0.024363307820862677,0.026161951950116426,0.0018755393434046602,0.007878856883698375,0.01441945600951505,0.0581430047701796,0.012165332754237193,0.015328390560960416,-0.022700716021242736,-0.011576409671521688,-0.035707431559434885,0.07271469498774007,-0.003845220418623845,0.016255115297370115,0.028894527264171525,-0.015803946991712156,-0.02595421453542518,0.012717366328645138,0.0009309203592808288,0.00961000641174851,-0.012835792816907119,0.0055632640729239655,0.012095471285702738,0.016169769511763448,0.07174567235127559,-0.008808918386851274,0.005157419627724551,-0.023189745463126014,-0.008433994546741366,0.05089491028840588,0.016945045567248677,-0.002439802440381839,0.03899061327188657,0.006897771097951716,0.018794618944092383,0.01879662284395565,-0.011371703441622876,0.004636805091671099,0.04726565038000145,0.018057623453139618,0.003157471527955127,0.02005840752457761,-0.04979376229766461,-0.0053154227578755524,0.03810642987454691,0.005079656299514337,0.010945239613256589,1.3724880953511489e-05,0.004650098967446623,-0.017335904700354534,-0.007493705110818742,-0.003785529073311839,0.024787835835714044,0.005083410441956913,0.023290529320526943,-0.016677386832653796,-0.0006742589485059913,-0.0005072016819516827,-0.01163225286841528,-0.013231397442981074,0.05732792455307842,-0.0023210551478651457,0.02774027777742172,-0.009419847480622018,0.0009434224946558851,0.004790437055433886,0.006412990367220711,-0.010107532609207211,-0.020087509641421156,0.0008264102656847775,-0.0032385996652539873,-0.007177963958059427,0.013746510809104887,0.005559862389427387,-0.01841498177245588,-0.013672726950675097,-0.0050560423605972545,0.024783133580471982,0.01488289622780515,-0.010241819733305936,0.005907111458208662,-0.01694603836346891,0.022314966951434773,-0.004928555432095063,0.007225166512936092,-0.023375858680106526,0.0027822387960994314,0.003248585020599414,0.023165462343854665,-0.011483261451643691,0.02726295300947636,-0.0323484599991351,0.013852310257598036,-0.03453229602018007,0.01044040192559404,0.005732104270999373,0.02404037428924006,-0.0030867340628023235,-0.012644921297907749,-0.025086736295501965,0.009147382061798033,-0.048889408690660226,0.006106542901544678,-0.010406021234168266,-0.009487404316699134,0.027185963498971514,0.005113897719613429,0.004779391120116122,0.028240559083856413,0.031436513222967866,-0.006439412724193107,0.018651784221470787,0.015711908657235017,-0.005132084908668878,0.0034463813357696552,-0.011642755120519686,0.0026156209572624585,0.0007659076278417891,-0.0016690906916362388,-0.004200293580756842,-0.0170248613204224,-0.01676443091942565,0.0017078856878419042,-0.030066226457247703,0.0030229532119646924,-0.0021063060069044575,-0.004371968974873801,-0.014548199010308429,0.010011659976666516,0.0016411575730567766,0.0033294018470512122,0.012419006368771699,-0.011510166003241283,0.0032233104990243536,0.00611858141983652,0.0005361928628769204,-0.009643415472770046,-0.0030721869467878046,0.005293916983227643,0.008552854120905574,-0.005435290978490643,-0.0059346181751521515,0.0049442071696807945,0.002958842357471302,-0.010537250413775455,-0.044991417688604006,0.014065413828896468,-0.026102228037570875,-0.035002051001417483,-0.0010252907637333798,0.013919636240352145,0.0032117949864169026,-0.004065392275931771,-0.027461722466866508,-0.014698947113652551,-0.040326582771919334,-0.009303190031539345,0.016695094810920897,-0.01826470668357117,-0.004511628466128521,-0.02338413294294913,-0.011558291757295818]}},\"id\":\"f4bed25a-d412-4001-a839-db2475ba5d08\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":{\"id\":\"cca89d0a-2184-428d-952e-20748cea3a10\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"5214e275-8bf8-4c68-af43-bb156ba93ef1\",\"type\":\"BasicTicker\"}},\"id\":\"e85918b4-e721-4347-84fb-c0ef71d03318\",\"type\":\"Grid\"},{\"attributes\":{\"fill_color\":{\"value\":\"#1f77b4\"},\"line_color\":{\"value\":\"#1f77b4\"},\"radius\":{\"field\":\"radius\",\"units\":\"data\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"1f37a5fe-d155-467a-9f09-f01fbe7cc973\",\"type\":\"Circle\"},{\"attributes\":{\"callback\":null,\"plot\":{\"id\":\"cca89d0a-2184-428d-952e-20748cea3a10\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"tooltips\":[[\"index\",\"$index\"],[\"(x,y)\",\"($x, $y)\"],[\"Topic\",\"@subreddit\"]]},\"id\":\"60c04fe0-6659-4408-9cf9-63f6432caf6e\",\"type\":\"HoverTool\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"cca89d0a-2184-428d-952e-20748cea3a10\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"7cc54c2a-ab70-4334-971e-a3e8185fd96d\",\"type\":\"BasicTicker\"}},\"id\":\"b4a75d85-5f1b-473f-939c-e10a4c6f84e8\",\"type\":\"Grid\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"a25e351a-69ad-42e9-aa77-eb4736e9f8ad\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"plot\":null,\"text\":\"Subreddit Map by Most Informative Dimensions\"},\"id\":\"dbbea28a-5da4-4248-ada5-d9aa8610d2b1\",\"type\":\"Title\"},{\"attributes\":{\"callback\":null},\"id\":\"da8110b8-829e-4d4f-aca1-d94958bc0fb3\",\"type\":\"DataRange1d\"},{\"attributes\":{\"callback\":null},\"id\":\"9c2304f7-79ab-44db-bcbf-c541504e1eb3\",\"type\":\"DataRange1d\"},{\"attributes\":{\"plot\":{\"id\":\"cca89d0a-2184-428d-952e-20748cea3a10\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"51fd3337-23be-421a-80f1-ab24208633ae\",\"type\":\"PanTool\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"60c04fe0-6659-4408-9cf9-63f6432caf6e\",\"type\":\"HoverTool\"},{\"id\":\"51fd3337-23be-421a-80f1-ab24208633ae\",\"type\":\"PanTool\"},{\"id\":\"7899ee2f-76aa-4553-b2dd-4ec733b32515\",\"type\":\"WheelZoomTool\"},{\"id\":\"82841330-63b5-4fbf-9328-8fa7819d3d25\",\"type\":\"BoxZoomTool\"},{\"id\":\"7f3e163b-27bc-4fa6-ba82-9302211edc7d\",\"type\":\"ResetTool\"},{\"id\":\"1fb0ba59-a191-4a05-8b13-66b2b484e73b\",\"type\":\"SaveTool\"}]},\"id\":\"3864c183-f325-4061-ae67-fcce6e40dbaf\",\"type\":\"Toolbar\"},{\"attributes\":{\"plot\":{\"id\":\"cca89d0a-2184-428d-952e-20748cea3a10\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"7f3e163b-27bc-4fa6-ba82-9302211edc7d\",\"type\":\"ResetTool\"},{\"attributes\":{},\"id\":\"5214e275-8bf8-4c68-af43-bb156ba93ef1\",\"type\":\"BasicTicker\"}],\"root_ids\":[\"cca89d0a-2184-428d-952e-20748cea3a10\"]},\"title\":\"Bokeh Application\",\"version\":\"0.12.2\"}};\n", | |
" var render_items = [{\"docid\":\"84972cc2-d6d4-4beb-beaa-5a853b8ff189\",\"elementid\":\"a1729953-b010-4985-bd05-847d9cc7ea02\",\"modelid\":\"cca89d0a-2184-428d-952e-20748cea3a10\"}];\n", | |
" \n", | |
" Bokeh.embed.embed_items(docs_json, render_items);\n", | |
" });\n", | |
" },\n", | |
" function(Bokeh) {\n", | |
" }\n", | |
" ];\n", | |
" \n", | |
" function run_inline_js() {\n", | |
" \n", | |
" if ((window.Bokeh !== undefined) || (force === \"1\")) {\n", | |
" for (var i = 0; i < inline_js.length; i++) {\n", | |
" inline_js[i](window.Bokeh);\n", | |
" }if (force === \"1\") {\n", | |
" display_loaded();\n", | |
" }} else if (Date.now() < window._bokeh_timeout) {\n", | |
" setTimeout(run_inline_js, 100);\n", | |
" } else if (!window._bokeh_failed_load) {\n", | |
" console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", | |
" window._bokeh_failed_load = true;\n", | |
" } else if (!force) {\n", | |
" var cell = $(\"#a1729953-b010-4985-bd05-847d9cc7ea02\").parents('.cell').data().cell;\n", | |
" cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", | |
" }\n", | |
" \n", | |
" }\n", | |
" \n", | |
" if (window._bokeh_is_loading === 0) {\n", | |
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", | |
" run_inline_js();\n", | |
" } else {\n", | |
" load_libs(js_urls, function() {\n", | |
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n", | |
" run_inline_js();\n", | |
" });\n", | |
" }\n", | |
" }(this));\n", | |
"</script>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"hover = HoverTool(\n", | |
" tooltips=[\n", | |
" (\"index\", \"$index\"),\n", | |
" (\"(x,y)\", \"($x, $y)\"),\n", | |
" (\"Topic\", \"@subreddit\"),\n", | |
" ]\n", | |
" )\n", | |
"\n", | |
"plt = bp.figure(plot_width=900, plot_height=700, title=\"Subreddit Map by Most Informative Dimensions\",\n", | |
" x_axis_label = \"Dimension 0\",\n", | |
" y_axis_label = \"Dimension 1\",\n", | |
" tools=[hover, \"pan,wheel_zoom,box_zoom,reset,previewsave\"],\n", | |
" min_border=1)\n", | |
"plt.scatter(\n", | |
" x = embedded_coords[:,0][row_selector],\n", | |
" y = embedded_coords[:,1][row_selector],\n", | |
" radius= np.log2(users_per_subreddit[row_selector])/6000, \n", | |
" source=bp.ColumnDataSource({\"subreddit\": subreddits[row_selector]})\n", | |
")\n", | |
"\n", | |
"\n", | |
"show(plt)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 11, | |
"metadata": { | |
"collapsed": false | |
}, | |
"outputs": [], | |
"source": [ | |
"# bp.figure(plot_width=900, plot_height=700, title=\"Subreddit Map by Most Informative Dimensions\",\n", | |
"# x_axis_label = \"Dimension 0\",\n", | |
"# y_axis_label = \"Dimension 1\",\n", | |
"# tools=\"pan,wheel_zoom,box_zoom,reset,hover,previewsave\",\n", | |
"# min_border=1)\n", | |
"# bp.scatter(\n", | |
"# x = embedded_coords[:,0][row_selector],\n", | |
"# y = embedded_coords[:,1][row_selector],\n", | |
"# radius= np.log2(users_per_subreddit[row_selector])/6000, \n", | |
"# source=bp.ColumnDataSource({\"subreddit\": subreddits[row_selector]})\n", | |
"# ).select(dict(type=HoverTool)).tooltips = {\"/r/\":\"@subreddit\"}\n", | |
"# bp.show()" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"# Hm... let's try some other dimensions!" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 12, | |
"metadata": { | |
"collapsed": false | |
}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"\n", | |
"\n", | |
" <div class=\"bk-root\">\n", | |
" <div class=\"plotdiv\" id=\"defc1ab6-e899-4010-bc58-27b00579b76f\"></div>\n", | |
" </div>\n", | |
"<script type=\"text/javascript\">\n", | |
" \n", | |
" (function(global) {\n", | |
" function now() {\n", | |
" return new Date();\n", | |
" }\n", | |
" \n", | |
" var force = \"\";\n", | |
" \n", | |
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\" || force !== \"\") {\n", | |
" window._bokeh_onload_callbacks = [];\n", | |
" window._bokeh_is_loading = undefined;\n", | |
" }\n", | |
" \n", | |
" \n", | |
" \n", | |
" if (typeof (window._bokeh_timeout) === \"undefined\" || force !== \"\") {\n", | |
" window._bokeh_timeout = Date.now() + 0;\n", | |
" window._bokeh_failed_load = false;\n", | |
" }\n", | |
" \n", | |
" var NB_LOAD_WARNING = {'data': {'text/html':\n", | |
" \"<div style='background-color: #fdd'>\\n\"+\n", | |
" \"<p>\\n\"+\n", | |
" \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", | |
" \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", | |
" \"</p>\\n\"+\n", | |
" \"<ul>\\n\"+\n", | |
" \"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\\n\"+\n", | |
" \"<li>use INLINE resources instead, as so:</li>\\n\"+\n", | |
" \"</ul>\\n\"+\n", | |
" \"<code>\\n\"+\n", | |
" \"from bokeh.resources import INLINE\\n\"+\n", | |
" \"output_notebook(resources=INLINE)\\n\"+\n", | |
" \"</code>\\n\"+\n", | |
" \"</div>\"}};\n", | |
" \n", | |
" function display_loaded() {\n", | |
" if (window.Bokeh !== undefined) {\n", | |
" Bokeh.$(\"#defc1ab6-e899-4010-bc58-27b00579b76f\").text(\"BokehJS successfully loaded.\");\n", | |
" } else if (Date.now() < window._bokeh_timeout) {\n", | |
" setTimeout(display_loaded, 100)\n", | |
" }\n", | |
" }\n", | |
" \n", | |
" function run_callbacks() {\n", | |
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n", | |
" delete window._bokeh_onload_callbacks\n", | |
" console.info(\"Bokeh: all callbacks have finished\");\n", | |
" }\n", | |
" \n", | |
" function load_libs(js_urls, callback) {\n", | |
" window._bokeh_onload_callbacks.push(callback);\n", | |
" if (window._bokeh_is_loading > 0) {\n", | |
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", | |
" return null;\n", | |
" }\n", | |
" if (js_urls == null || js_urls.length === 0) {\n", | |
" run_callbacks();\n", | |
" return null;\n", | |
" }\n", | |
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", | |
" window._bokeh_is_loading = js_urls.length;\n", | |
" for (var i = 0; i < js_urls.length; i++) {\n", | |
" var url = js_urls[i];\n", | |
" var s = document.createElement('script');\n", | |
" s.src = url;\n", | |
" s.async = false;\n", | |
" s.onreadystatechange = s.onload = function() {\n", | |
" window._bokeh_is_loading--;\n", | |
" if (window._bokeh_is_loading === 0) {\n", | |
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n", | |
" run_callbacks()\n", | |
" }\n", | |
" };\n", | |
" s.onerror = function() {\n", | |
" console.warn(\"failed to load library \" + url);\n", | |
" };\n", | |
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", | |
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n", | |
" }\n", | |
" };var element = document.getElementById(\"defc1ab6-e899-4010-bc58-27b00579b76f\");\n", | |
" if (element == null) {\n", | |
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid 'defc1ab6-e899-4010-bc58-27b00579b76f' but no matching script tag was found. \")\n", | |
" return false;\n", | |
" }\n", | |
" \n", | |
" var js_urls = [];\n", | |
" \n", | |
" var inline_js = [\n", | |
" function(Bokeh) {\n", | |
" Bokeh.$(function() {\n", | |
" var docs_json = {\"de353b66-b426-44f3-8fa4-dbf208f7e6d6\":{\"roots\":{\"references\":[{\"attributes\":{},\"id\":\"64505b2a-503d-42c7-89b0-d5cec02093aa\",\"type\":\"BasicTicker\"},{\"attributes\":{\"overlay\":{\"id\":\"da4d6e07-e5b2-4600-97e6-dab951f72f85\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"f084ba2b-651b-4118-bf5e-94c6dd022608\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"974e7739-61c2-4495-926d-19815978115f\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"axis_label\":\"Guns <\\u2013> Soccer (Dimension 44)\",\"formatter\":{\"id\":\"fe98ca41-bf08-45c2-b2b1-61af8faf06e7\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"f084ba2b-651b-4118-bf5e-94c6dd022608\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"64505b2a-503d-42c7-89b0-d5cec02093aa\",\"type\":\"BasicTicker\"}},\"id\":\"4f923895-ca09-4946-b65a-08f719b8b6c2\",\"type\":\"LinearAxis\"},{\"attributes\":{\"callback\":null,\"plot\":{\"id\":\"f084ba2b-651b-4118-bf5e-94c6dd022608\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"tooltips\":[[\"index\",\"$index\"],[\"(x,y)\",\"($x, $y)\"],[\"Topic\",\"@subreddit\"]]},\"id\":\"0f8a13e8-194f-4359-be10-140189f1e8d8\",\"type\":\"HoverTool\"},{\"attributes\":{\"plot\":{\"id\":\"f084ba2b-651b-4118-bf5e-94c6dd022608\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"3cff2944-8dc5-4ee2-a75a-0d26588d89e7\",\"type\":\"WheelZoomTool\"},{\"attributes\":{\"callback\":null},\"id\":\"1973cc67-4d9f-4a78-8258-d33c61a87a70\",\"type\":\"DataRange1d\"},{\"attributes\":{\"dimension\":1,\"plot\":{\"id\":\"f084ba2b-651b-4118-bf5e-94c6dd022608\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"2cbe611d-16b8-4168-932c-2a4202429483\",\"type\":\"BasicTicker\"}},\"id\":\"80f775c8-eb84-4685-a7b4-3e35830f3586\",\"type\":\"Grid\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"subreddit\",\"y\",\"x\",\"radius\"],\"data\":{\"radius\":[0.0027977201141253043,0.0027542916980299293,0.003078004559499757,0.0021813266680005042,0.0031660867302898154,0.002236901235343754,0.0014159758378145283,0.0030001485471154274,0.001569290294715015,0.0030994893116858815,0.0029940821952178396,0.00246256741991733,0.001958381377931942,0.001814790541483043,0.002122698416826821,0.0021648695132190604,0.0019776866322171785,0.0017810834211972031,0.002622310453279757,0.001823263202385782,0.002921984473284021,0.002944494327933271,0.002708586565790018,0.0015901827692249206,0.0018105686598236064,0.0028636822718780854,0.001831565749974122,0.0022694822325660816,0.0023597945757726797,0.00229554037544755,0.002820811746853136,0.0018341537797615076,0.002732544391639849,0.0015198235121205844,0.0027167671346476404,0.0028922069349240397,0.00172349379404195,0.0022788296231500216,0.001925684858762334,0.0025579887896443844,0.002672552434970732,0.002801705451701005,0.0015628684217314254,0.0014737250572356346,0.002388626118709245,0.0016765574101374043,0.0015745138710349421,0.0017697309170431011,0.0018050858678294729,0.0018977335706067962,0.002187218854094791,0.002281902731633402,0.0021380558101603024,0.002227606493039086,0.0013295466539166528,0.0014529460705110663,0.0020634552687804992,0.0020082513751758495,0.0019608810164539474,0.0015136915068923117,0.0018863296370678533,0.0021051582711388117,0.002077721903680461,0.002061599557713113,0.0027348404695737086,0.001894295939221045,0.001367428524041534,0.0014459928388236248,0.002127478598456015,0.0011097019137919658,0.0017760708105462968,0.0027627793740995182,0.0019907853435072475,0.0015911490766479395,0.0022398852436364743,0.00231854972532486,0.0025033519731813476,0.0017879867424271999,0.002492941035869735,0.0020919513769367816,0.0024956760037709385,0.001859136351508684,0.00233479645804675,0.0024226775076204164,0.0021425754182906745,0.0021407189102005493,0.002362227471808173,0.002010341022953415,0.0015911490766479395,0.0022367916263828,0.0022507410998582637,0.0021318604814258364,0.0017240493179859694,0.002255696879096371,0.0019372373816449852,0.002158395605837424,0.002347274254477402,0.002066145386418427,0.0024670944750810843,0.002131283090661887,0.001941692368945849,0.002508534823485794,0.0011511484326014198,0.001501871209237209,0.002145894233440295,0.0015748581075625727,0.0017948352201828358,0.002367428524041534,0.002050915298685114,0.0015635904918640975,0.0020012296222202113,0.0015101159886145923,0.0020605522440622463,0.002031431474284558,0.002362487613750113,0.0024432304584186887,0.002372531920919354,0.001797575411359757,0.002153268039767209,0.0019334736857312168,0.0015765719364395493,0.0023172508850706464,0.002441130615306299,0.002311775615341875,0.0022296480548899427,0.001875049736317722,0.0017785901777853138,0.0018725693226004211,0.0016318604814258362,0.0021771482292076245,0.0021023749546149003,0.0016506469742893634,0.0018734652220269927,0.0020851273613196487,0.0015014047703450968,0.002092631233680629,0.0012739760316291208,0.002099481427837994,0.0023053168310327365,0.0011144167545305364,0.0017435799078810259,0.0015946593459025776,0.0013266669886780136,0.0020635454259519646,0.0022100797574673226,0.0016213200757605331,0.0014557849367043062,0.001993394001479639,0.0016783534907461371,0.0013117274532639008,0.0015211174121405318,0.0019517293285340783,0.002270017541434511,0.002208629709505978,0.0022814114804554503,0.002142218259233946,0.0020221903687334336,0.0021561983141801977,0.0024185430825837116,0.002043682474228363,0.0021537950348791105,0.0022553520617991664,0.002112696246138767,0.002186490178787251,0.0022033459951640508,0.0016393417258430117,0.0024729708348661156,0.0016903511762170916,0.0019854191908003993,0.001847357335102524,0.0022271960923019936,0.0016458302246089623,0.0019344008687829642,0.0017940070362177645,0.001590505303375873,0.0019368560188791069,0.0022465668925472364,0.002356138491017121,0.002309290747386788,0.002195430628551525,0.0020475188647502487,0.002219921834229301,0.001813263874935464,0.0015189570276748648,0.0018362507335182357,0.002203144318344946,0.0021048927700132686,0.0023746422266433696,0.0017777040004671966,0.001986352975171962,0.0022259147919329904,0.0024800661070132064,0.001996451743184393,0.0018745556963381213,0.002278755973046534,0.0017894003218863817,0.0021376256388138523,0.0020406777440324696,0.001443629682961998,0.001693311889463065,0.0016536401561790817,0.001998941010002766,0.0019326206156836045,0.00162469880826491,0.002346455762342164,0.001799745300183603,0.001525380807051097,0.0018368299898173686,0.0017822478262498873,0.0016678378778156614,0.0014057713712727876,0.001478907352085896,0.0013854804925473925,0.0016645440020120897,0.0014985869743459493,0.0015051111893744904,0.00160152978969033,0.0019163917679882667,0.0013505479680686703,0.0013624876137501131,0.001657573972729652,0.0019121151398737966,0.0017509685923199324,0.0014251244642305406,0.0023374511378879896,0.0012512991066997827,0.002183662611824872,0.0020413706816114125,0.0014646504265652387,0.0024218359777445977,0.0023440676603151737,0.0014351707995512255,0.0019896236033461827,0.0019072436020378988,0.002249849740204813,0.0018490129476119842,0.0012247880257051796,0.0021581220399699355,0.001369861420077027,0.001484481765934753,0.0015128025995084719,0.0021708565937130844,0.0011491362938846573,0.001189925225399799,0.001909306818187733,0.001978008475624193,0.002195586832004494,0.0015145771402083898,0.0017877030265553665,0.0015101159886145923,0.001292481250360578,0.0021731531648820504,0.0013899750004807707,0.001585621265992073,0.0021882406705053246,0.00201073432698184,0.0022325443916398494,0.001972675059176345,0.0019143048847836506,0.0012473026295440428,0.0019013882901278984,0.0023602280188051317,0.00165684126772343,0.00205010642566562,0.0018995233010392673,0.0022959179006333402,0.0019510826696768646,0.0023745927845677355,0.002016119192414756,0.0019763949333091234,0.0015772540622118634,0.0018497816827789321,0.001845131968237177,0.0011740656865597422,0.002351298200107827,0.0017311567075540518,0.00179825560749506,0.001764003823376257,0.0017464616032459605,0.0018627994130245998,0.0015421109054083748,0.0018997015435778086,0.0015064864982153837,0.0021347938527417356,0.0014302000969874929,0.0019225458961034672,0.0017489759082068037,0.0017558792294368004,0.0018911779428609785,0.0017898227802793567,0.0020571513389652622,0.001153143872879099,0.0022477429935657124,0.0020869334066206213,0.0013801284616884338,0.001728810843352098,0.0011345591536762673,0.0020047085713604655,0.002149892820487185,0.0024578923049130104,0.0017496419728251862,0.0016196127371777328,0.002396890026555208,0.001976265380949588,0.001337061302171409,0.001394387035707636,0.0014839803076226966,0.001865484869852002,0.0015491034581486046,0.0020056851910160984,0.0012799133499175744,0.0017474704823770245,0.0016607234779654032,0.0016602416157330327,0.0018106976907757133,0.002265136821821754,0.00132375241755654,0.0015703441276954688,0.0024988378034393045,0.0018657928090703747,0.0014388325328571596,0.00248034497183469,0.0017341902438560573,0.0018777977567824837,0.0019072436020378988,0.0021603923014392123,0.002019553071001667,0.0017286294407229874,0.001890900874452966,0.0017491425974151997,0.0016009132530102781,0.0013958399052244877,0.0025820902864421586,0.001899255689243717,0.0016374931234214205,0.0023286354927342374,0.0017698838259026146,0.002265039359547516,0.0012654095062113468,0.001939739318998412,0.0012277203690409693,0.0014995299134896035,0.0014523742529443538,0.002622186878943175,0.0011551228895938144,0.001446580016584241,0.0019319982946025209,0.00173205290379646,0.0018239966523906231,0.0014448141640443746,0.0020373838682288983,0.0022536409625269886,0.0019898686471110662,0.0014591479170272448,0.0021872457997073567,0.0014814572081497098,0.002073564671557781,0.001969563904649539,0.0014244824099812728,0.0014251244642305406,0.0017624322545562684,0.001870264520210801,0.001634290645358603,0.0022446221501692936,0.0016332136035869871,0.0014506505955741104,0.0016671358359345088,0.001593707070703512,0.0015320488024117944,0.0020202016194015475,0.0014535165314511977,0.0020729586787206003,0.002095134072954083,0.0018897893970956528,0.00209342861187276,0.0016526465631392956,0.0021882138361574944,0.001914556269201197,0.0020433395701844334,0.0018967435108481622,0.001843111375056762,0.0020634552687804992,0.002098001975535848,0.0019252046005997147,0.001958799793072586,0.0021965737710215945,0.0021040183392938313,0.0021098506605789435,0.0015167770565008665,0.0016508978341696885,0.0015755451056684371,0.0016832246350671988,0.001540528997245492,0.0016838813014020035,0.002046891752496839,0.002028007544704015,0.0017496419728251862,0.0018185653313072432,0.0020032072027672677,0.0017550677228498446,0.002168246457648011,0.0020998304951726815,0.0016738378805990913,0.0011570857508898733,0.001494777798865868,0.00165339214256918,0.0015930701188781105,0.0016216034572588398,0.0014874687506009634,0.0020175968635462393,0.001818190507889983,0.001544854446524903,0.0016916245199174468,0.0015668132393803639,0.0020558983924489874,0.0020173239049819263,0.0016614444655325346,0.0018261836735937145,0.0014139692962107093,0.0014758113972100392,0.0021535161813511323,0.001672466493762878,0.0017165346697312132,0.0017377107924503496,0.001967556804736064,0.0014602585387407465,0.0016009132530102781,0.0013470248402256452,0.0018594525240374503,0.00206146321000689,0.0021452533770548524,0.002046988337825907,0.0011864901787872512,0.0017909457206670225,0.001822158815365786,0.001957962233421132,0.0019896848877032063,0.0015483364744887697,0.0016403917239023013,0.00170035397063841,0.001244600925013833,0.0021264052401500444,0.001502336745052489,0.0015163386804934213,0.0016027581406298317,0.0014981141144620276,0.0019750962578676022,0.0018985405982379071,0.0013333333333333333,0.0019867254759025135,0.0022001242299169318,0.0023380706854914247,0.0018804182177068062,0.0014400408227037242,0.002255291160323857,0.001617028780894258,0.0023014772748645588,0.0018603985547928177,0.0018777001520831602,0.0022539882406086113,0.0022288335090610728,0.0013862354356274783,0.001784559855346814,0.002002336745052489,0.0021880796194788873,0.0020956473051094112,0.0018971040044291527,0.001285707586277687,0.0016738378805990913,0.0021515863523827693,0.0015299848483358225,0.0013649707598133362,0.001960742827269982,0.0021439342573869083,0.0023354228747143745,0.001697685706590274,0.0012015755609381584,0.001991455373303269,0.0016503958524143375,0.001591791130897207,0.0013407323532264091,0.0022836052261147113,0.0020612812927116742,0.0014758113972100392,0.0012277203690409693,0.001886800091480273,0.0015004691692678423,0.0015595920007696806,0.0015772540622118634,0.0012111310901158168,0.0017886945709438974,0.0020437314206251697,0.001836366696468871,0.0016258145836939113,0.001881092960267993,0.0014597038691211207,0.0013785771713173958,0.0018786744207316562,0.001747805836927175,0.002166901365732135,0.0018024304109843794,0.0019494945877057146,0.0014630128549225597,0.0012262586674363473,0.0016445464566182768,0.0013972840487456754,0.0017391047046061208,0.001635897215968923,0.0022463141207252914,0.0015228318520133716,0.0022467983668493026,0.0017015755609381582,0.002106632148879885,0.0016272020611357333,0.001572785257022869,0.001554779154554658,0.002149766897900656,0.0019749008501579596,0.001772014402139197,0.0020921915459330915,0.001572785257022869,0.002117893188680147,0.002243153201161265,0.002016448349445599,0.0018346213524387091,0.001961157156792631,0.0022150031411554364,0.0018689519663509454,0.0017050034059509392,0.0017415247742292393,0.0017803527941583457,0.001313773841560307,0.0020319460243920714,0.0016291311766001956,0.0014737250572356346,0.0015381364484159802,0.0020310706329231573,0.001400856910522724,0.0017474704823770245,0.0016468523267791826,0.001697685706590274,0.0020643553228858326,0.0017021840366069844,0.0013738623305788252,0.001800688503530553,0.002279454739872993,0.0012473026295440428,0.00147736435744238,0.001513247463971136,0.0019806950865180724,0.0014933336553446803,0.0017555549553843056,0.0018755427632968589,0.002006200623525329,0.0014884562229271479,0.0014166409811805342,0.0017793261721569583,0.00219509183921945,0.0014859798964726289,0.002022136834463262,0.0016313170932319052,0.0015193906602062447,0.001206400789887513,0.0013425470725835316,0.001624978237899474,0.0016453175396098645,0.0017745764044091532,0.002120645703143983,0.0012432386031062163,0.0018375232603797512,0.0016024516406858678,0.0018851967766755592,0.0016329435876422933,0.0017322317429073312,0.0014874687506009634,0.001838903833589575,0.0011345591536762673,0.0018038945400077058,0.0017756234631177614,0.0015717420919442553,0.002079542053989659,0.001738408758610922,0.001923596776665195,0.0019372373816449852,0.0015440737667044336,0.0017511339062992743,0.0012810834211972031,0.00149764032283389,0.0016012217189582685,0.001828829964344382,0.0017865648034903472,0.002220344829366015,0.0015971804612504889,0.0015211174121405318,0.0019668840310081708,0.001607609738734785,0.0016810227041712182,0.001259098141946273,0.0021528953465794736,0.0018481313731194846,0.0013314474477953608,0.0011450607865972342,0.0015741691409780704,0.0017730726523317454,0.0013285905923251288,0.001390715984652636,0.0015,0.00146355995225411,0.0018016280214517356,0.0020825175850012973,0.002010453461194174,0.0017610090063618488,0.0019556437866130906,0.0015717420919442553,0.002206201660125837,0.001651648847295007,0.001580635962877376,0.0018713695737155723,0.0012172967913628506,0.0011511484326014198,0.0013958399052244877,0.0011966515150024892,0.0015202555862233386,0.0013965630611785435,0.0017210715811870503,0.0017516291673878228,0.0017205091267236078,0.0017307972916822255,0.0013198105395457657,0.001765097841652506,0.001748140724409556,0.0014689635318695063,0.0018097930166559035,0.0015401318886936594,0.0018058768197712482,0.0016801362546013878,0.0013001499833200508,0.0014540856421866584,0.0016277548180998107,0.00181768983269923,0.0017822478262498873,0.0017260753283702926,0.0011609640474436812,0.0017247880257051796,0.0015671686705958328,0.0015650281593666971,0.00181768983269923,0.001375444238741708,0.002030605896912203,0.001313773841560307,0.002084797527010752,0.0016624024316342545,0.0011882138361574944,0.001193311889463065,0.0011409150084907293,0.001517651418095193,0.001383963458029517,0.0019483329952365745,0.0012810834211972031,0.0013361347146144257,0.0022999983069483605,0.0017459555718277332,0.0013487928568199753,0.0012552302434193853,0.0019017418919173323,0.0016450607865972342,0.0013854804925473925,0.0016416978062742957,0.001621886505170844,0.0016366964937358647,0.0018603985547928177,0.0018113418089575263,0.001515459523486642,0.0019418419485298215,0.0011847540761296949,0.00209485726275751,0.0016849717757131324,0.002216653910583387,0.0016761062858522,0.0011120708903285825,0.0012377107924503496,0.001876623877281797,0.0021736668843798553,0.001382436791481938,0.002006143407778841,0.001816936859724352,0.0014400408227037242,0.0018060083925096784,0.001215770124815271,0.0014737250572356346,0.0013965630611785435,0.0013987195704631267,0.0019126222384943997,0.0016905638689983032,0.0021906967065098205,0.001609701913791966,0.0015353147157576672,0.0016845361792652304,0.0020551528130191028,0.0016856236943415316,0.001382436791481938,0.001581641326739883,0.002162730852981432,0.0016406535085481725,0.0016437728929264658,0.001991576996560026,0.0013333333333333333,0.0017926203589403802,0.0013096634991879286,0.0018191887414917751,0.00189191523488667,0.0015682318226896172,0.0017828279210390478,0.001852940516898182,0.001881669807822103,0.00138320133639788,0.001886235435627478,0.0011388150023607902,0.0014829742426675852,0.0012751752818631547,0.0012247880257051796,0.0013505479680686703,0.001297983759898572,0.0015603239622892068,0.0015978066313269712,0.0012763685804586325,0.0018362507335182357,0.0017397986420963768,0.0012775559861975293,0.001654629660347057,0.0011609640474436812,0.0012404905826414547,0.001191624519917447,0.001542504761636455,0.001394387035707636,0.0016526465631392956,0.001339819831548717,0.00173736104813635,0.0016369623303284279,0.0013574430404719804,0.0015769132412143591,0.0012641604167868594,0.0012218194796857695,0.0011511484326014198,0.0016481238748163763,0.0014869734895124151,0.0012822478262498876,0.001693941612669304,0.0015635904918640975,0.0012775559861975293,0.001236308752480983,0.0013980028808908559,0.001299069311058351,0.0012751752818631547,0.0015643104001069102,0.002227515353391077,0.0019323874339874747,0.0015228318520133716,0.0021383861883017014,0.001956911164400191,0.0015898598018513385,0.0017955232011199484,0.0016173172622407771,0.0015266452227963982,0.0017981197221150762,0.0018980925839970934,0.001855844657629636,0.001966276920975627,0.001894022442501342,0.0016244190535230772,0.0015769132412143591,0.0017385829340430083,0.0018747534341564049,0.0016064059856650786,0.0014471657639469472,0.001787134588528258,0.0016241389729165908,0.0016054991995238263,0.0012486421827216125,0.0017498082010886208,0.0018894177599683758,0.0014192833063806738,0.001191624519917447,0.0012432386031062163,0.0022756980788432575,0.0019708927235798893,0.0017370107943621355,0.0018158029605513239,0.0014430352471252992,0.0018971040044291527,0.0017486421827216123,0.0018306176987765582,0.0017751752818631547,0.0015799633773381833,0.0018352045425705423,0.0013127528244275,0.0014569111644001911,0.0019974030764668563,0.0019451093748530735,0.0018355537789042412,0.0021664023560982104,0.002031482978873698,0.0014212461676767327,0.001798391416125319,0.0014829742426675852,0.0015717420919442553,0.0019382261033466018,0.0016193269983758574,0.001879547900021726,0.0018071893185185584,0.0012616426013884914,0.0017537635885424715,0.0018675303877047737,0.0013407323532264091,0.002326410348506157,0.0019143887087947774,0.002059408661703626,0.001978265640540131,0.0017087775720750415,0.001546408243036747,0.001286849864784531,0.0017117158877453399,0.0016573299857239566,0.0016403917239023013,0.00183473810367843,0.0015219761601014655,0.0018407323532264091,0.0018937486343410103,0.0018514207427963614,0.0011388150023607902,0.0016609640474436812,0.0012834066196901822,0.0016543826657968521,0.0014585906765148498,0.0015409254510426135,0.0015336873039717433,0.001325699385064479,0.0015055705002562417,0.0012404905826414547,0.0018239966523906231,0.0021326056407511298,0.0019319982946025209,0.0017298963945118768,0.0020681434060041267,0.0014869734895124151,0.0017774078807579953,0.001400856910522724,0.0011258145836939113,0.002078824105629935,0.0016645440020120897,0.0019424393380879947,0.0016945696909719562,0.0014471657639469472,0.0018211728614533824,0.0012913654749315768,0.0015452438379840625,0.002024746097029713,0.0012552302434193853,0.0016875689117472191,0.0013706669456996841,0.001642996832521262,0.001762904804672625,0.0017354283078008684,0.001731515586984079,0.0016924696848420176,0.0019158092640818663,0.0019309053419321602,0.0019124533244210804,0.0019283092680551577,0.002019011274527544,0.0014608119317893484,0.001979035489138479,0.001411945869065341,0.0019851695679661643,0.0019524458045513337,0.0018676322082328595,0.0018578674874903714,0.0014179657733664494,0.0015211174121405318,0.0016563515543698733,0.0017721658661904928,0.0016416978062742957,0.0014957357649675877,0.0014394374367572749,0.0018923748969908736,0.001387738247853717,0.0016340218368638864,0.0017760708105462968,0.0017079879189072643,0.0015525249270427167,0.001936091473963165,0.0018319203076792826,0.0017437503787662107,0.0011144167545305364,0.0015946593459025776,0.0018269082823996992,0.0016403917239023013,0.0021761062858522,0.00171672542672137,0.0017739760316291208,0.0014295714713392915,0.0013980028808908559,0.0016241389729165908,0.0015703441276954688,0.0012348984893562837,0.0014345550522916017,0.0017214458212213245,0.0015525249270427167,0.0015996754166936,0.0019771062262597993,0.0011722371669229085,0.001529569922998206,0.0018784798825547974,0.0015956078645822202,0.0015671686705958328,0.0016897119666953702,0.0016879990534960656,0.0014651938147591697,0.0017688114162151736,0.0015502493658304248,0.0020210636384237735,0.0016556151091587056,0.0016821261901533088,0.001193311889463065,0.0012404905826414547,0.0014804405082269735,0.0018297850765177264,0.0011450607865972342,0.0014668166499867174,0.0019119458690653407,0.001206400789887513,0.0013198105395457657,0.0022356266891258984,0.0017286294407229874,0.00196355995225411,0.0019165579388127666,0.0014597038691211207,0.0016129532736068348,0.0013208020839342966,0.0015809715514503173,0.001594342339695182,0.0016914127636963796,0.0014357849740192013,0.0012834066196901822,0.0015498680030645465,0.0017015755609381582,0.001585621265992073,0.0016903511762170916,0.0013086248402360097,0.0019057713712727876,0.0013633181816691557,0.002031585954966699,0.001515459523486642,0.0019395884252542182,0.0013323922394764764,0.0014418419485298214,0.001524534154157038,0.00174409095838899,0.0016770076896200816,0.0015198235121205844,0.001590827405464873,0.0015671686705958328,0.0015467951283551005,0.001361654166907052,0.0017926203589403802,0.0011366964937358647,0.0012048031150826467,0.0012391047046061208,0.0011097019137919658,0.0013565918920664657,0.00129359187207408,0.0014966899296065261,0.0015584898635910718,0.0011302266189207766,0.0013295466539166528,0.0013809003698103748,0.0019072436020378988,0.001742554536717427,0.0012079879189072643,0.0016173172622407771,0.0014029754191476496,0.0016873535519715311,0.0015921115162523787,0.0019349400790728021,0.0015101159886145923,0.0017210715811870503,0.001793453324577604,0.001676331953793196,0.0012262586674363473,0.0011812438068750566,0.0013899750004807707,0.0012552302434193853,0.0016181806354250573,0.001252616639714007,0.001316811134663458,0.0014132967106715165,0.0017908056395832576,0.0014962133205833194,0.0012203213491478939,0.001236308752480983,0.0013217895562604811,0.0015051111893744904,0.0014357849740192013,0.0011722371669229085,0.0014778797899516103,0.0015741691409780704,0.0017282662243797795,0.0015228318520133716,0.0016838813014020035,0.0012048031150826467,0.001432698292690735,0.0016102963496286646,0.001696444141834412,0.0014535165314511977,0.0017854211667399707,0.0018970139316903279,0.0014512265220134805,0.001294697387462821,0.0017212587740135401,0.0015525249270427167,0.00169561285605057,0.0015046509994283142,0.0017268078473632773,0.0013285905923251288,0.001223308333814104,0.0011471071748936402,0.0014085351853053883,0.0018114704257958332,0.0018715699480384028,0.0017091714283031217,0.0017578157433146063,0.0014092212033840934,0.0011235778310668576,0.0013649707598133362,0.0015789509582699026,0.0015206868853048646,0.0017054034878626794,0.0013847231716899013,0.0011609640474436812,0.0013514207427963614,0.0014859798964726289,0.0019808858435082293,0.0011213200757605331,0.0012715594366799348,0.0011551228895938144,0.0011966515150024892,0.0012473026295440428,0.0012763685804586325,0.00171672542672137,0.0018549878222517322,0.0011983040931466695,0.001305481669027457,0.0011366964937358647,0.0014071572493081215,0.0014192833063806738,0.001499058906143143,0.0017420402067384695,0.0015724380379394543,0.0012691183073525348,0.0016851892783724513,0.0019226268963311094,0.0016825661704654262,0.0012654095062113468,0.0019107576250556567,0.0012834066196901822,0.0014388325328571596,0.001286849864784531,0.0011491362938846573,0.0015487202721336732,0.0011324026443916843,0.001741352717568244,0.0016742932768971136,0.0014529460705110663,0.0018471357229453789,0.001476847817665899,0.0016155811595832208,0.0015249578532507803,0.0020756308425826926,0.0016999453908060605,0.0016869222528900054,0.0013980028808908559,0.002064175581391025,0.0013342707581989798,0.0016277548180998107,0.0011302266189207766,0.0015073990198930757,0.001661923925658462,0.0016736098586062024,0.001421896910086052,0.0012418685186387215,0.0011511484326014198,0.0017079879189072643,0.0011388150023607902,0.0013505479680686703,0.0017724685083619531,0.0021354631619379433,0.0012334799060470308,0.0015228318520133716,0.0014913945385974462,0.0017582974446579765,0.0014874687506009634,0.002038986534764496,0.0014477500878638699,0.0011830053471600878,0.00132375241755654,0.0015189570276748648,0.0012913654749315768,0.001175880405916865,0.001313773841560307,0.0017606915816642888,0.0016198981368236805,0.0016285815782500998,0.001315802960551324,0.0013793540675457064,0.0017199453534911659,0.0013461359328418054,0.001524534154157038,0.001542504761636455,0.0019281510257503473,0.0014022713215040288,0.0011999453908060607,0.001470029827069198,0.0012715594366799348,0.0018036289969950946,0.0013285905923251288,0.00165413541726763,0.0016310449379414109,0.001905510627520345,0.00138320133639788,0.001525380807051097,0.0014981141144620276,0.0012968932855874434,0.0015444644234491503,0.0020716113775221825,0.0017329457721580448,0.0011471071748936402,0.0011949875002403854,0.0016633565962731929,0.0012629048046726248,0.0014705612066743725,0.0016960288581845816,0.0017117158877453399,0.0019287044187989491,0.0017327674635303097,0.0013884861463524362,0.0017741262654193761,0.0013899750004807707,0.0012787375569952492,0.0019954368103431244,0.001966681831270832,0.001189925225399799,0.0017195687689608116,0.0018648678057661709,0.0018776025077474096,0.0012913654749315768,0.0018194376537018725,0.0014394374367572749,0.0016064059856650786,0.0015819755160549457,0.0013407323532264091,0.0015595920007696806,0.0013847231716899013,0.0016810227041712182,0.0013033631604025314,0.001790384906014,0.0018246061563253046,0.0013540202186381979,0.0016114808307110412,0.0012957978432668624,0.0019425139075329965,0.0017594176757786547,0.0016070086154879961,0.0011999453908060607,0.0016155811595832208,0.0011120708903285825,0.0018963824759853152,0.0017065997548748539,0.0017563648220087365,0.0013624876137501131,0.001484481765934753,0.0016012217189582685,0.0013574430404719804,0.0014884562229271479,0.0015506301246961836,0.0016126595054902916,0.001252616639714007,0.0014459928388236248,0.001609701913791966,0.0016213200757605331,0.0011235778310668576,0.0017878449263372842,0.0012552302434193853,0.0018250926495079185,0.0017264418668154812,0.0013075816751573959,0.0016590327183978125,0.0012247880257051796,0.0015202555862233386,0.0018267876658065096,0.0017565264685180052,0.0017643169082817952,0.0019682946881184023,0.0012763685804586325,0.0014173042896659584,0.0016812438068750566,0.0012377107924503496,0.001642478063876706,0.001843561865443302,0.0019269608772712846,0.0016201831981178642,0.0016676040915323132,0.0015968667636541596,0.0014064653087630435,0.0017169160324970916,0.0013793540675457064,0.0012031947534103602,0.001618467738949892,0.0016805798878886404,0.0018480209486980345,0.0011551228895938144,0.0019836663642780828,0.0016388150023607902,0.001571044125783683,0.0016033699709179145,0.001270341969909396,0.002029569922998206,0.0016678378778156614,0.0019327759446124437,0.0015498680030645465,0.0016129532736068348,0.0015819755160549457,0.0012486421827216125,0.0016033699709179145,0.001845131968237177,0.001765097841652506,0.0013624876137501131,0.0011450607865972342,0.001591791130897207,0.0019825327620938897,0.0015198235121205844,0.0018729679122871893,0.001352290361008198,0.0014981141144620276,0.0017576549615142447,0.001338903833589575,0.001765720767320808,0.0012565264685180052,0.001352290361008198,0.0017439207288785302,0.001989500987752765,0.0017282662243797795,0.0015064864982153837,0.0015028013812810924,0.0017675799196769449,0.0012079879189072643,0.0013443481984096288,0.0011491362938846573,0.001678577060426104,0.001497165595782385,0.0017464616032459605,0.001807973392605119,0.0014962133205833194,0.0017269906289558736,0.0012845598553468138,0.0016216034572588398,0.001218813825880726,0.0016496409093342517,0.001701981382424334,0.001968963531869506,0.0012616426013884914,0.0015198235121205844,0.0011190409196110203,0.0012432386031062163,0.0015734781946018118,0.0016227336552197152,0.0014363975837097677,0.0014339377241643656,0.0015377353654647977,0.0016266480305369723,0.0011647807811286943,0.0015198235121205844,0.001917800572965941,0.0012834066196901822,0.0011280307207961542,0.001791784497704158,0.0014029754191476496,0.0016476160622232326,0.0017268078473632773,0.0014424393380879947,0.0011258145836939113,0.002001463124713417,0.0018503292784915386,0.0014957357649675877,0.0016503958524143375,0.0017565264685180052,0.0017552302434193855,0.0014678924870096006,0.0016794692661751386,0.0012727707700906081,0.0014923660517311458,0.0018188148893716603,0.001524534154157038,0.0019239997416890902,0.0017205091267236078,0.0019519444955940577,0.0012787375569952492,0.0014112675916804994,0.001382436791481938,0.0015713933621173818,0.001508761341800692,0.001786707376381261,0.0014619149115834332,0.0016374931234214205,0.0012775559861975293,0.0013106976907757133,0.0017244189555276057,0.001731515586984079,0.0018599785561297314,0.001828829964344382,0.001299069311058351,0.0017986628034831148,0.0017157701248152713,0.0017284479011345363,0.0013633181816691557,0.001292481250360578,0.0013106976907757133,0.0012879867424271999,0.0017054034878626794,0.0012512991066997827,0.0017910857201897438,0.001369861420077027,0.0012565264685180052,0.0013854804925473925,0.00169561285605057,0.0014552198385041773,0.0016030642503764344,0.0017532727088072021,0.0015999854736978545,0.00170035397063841,0.001754090285839308,0.001960397006451732,0.0014238386367092062,0.0012306173820790087,0.001359136351508684,0.0014546534090938664,0.0011388150023607902,0.0013801284616884338,0.0012957978432668624,0.0016144167545305364,0.0016260927204206812,0.0019527317982496134,0.0016105930173695455,0.0014668166499867174,0.0018122406854192293,0.0015581213590385129,0.0016578177124093995,0.0015570124446665232,0.0016094041438796303,0.0015717420919442553,0.0015990541006541414,0.0015136915068923117,0.001286849864784531,0.0018640425825675582,0.001530399058900755,0.0018064026792995562,0.0015625065718911542,0.001700558000496627,0.0015748581075625727,0.001153143872879099,0.001189925225399799,0.0011388150023607902,0.0011551228895938144,0.0018048216379419142,0.0018128806889205326,0.0012203213491478939,0.0015193906602062447,0.001589536400089766,0.001517214634735337,0.0016498928204871852,0.0013266669886780136,0.0012486421827216125,0.0018357863216433349,0.0015643104001069102,0.0017348984893562837,0.0013690531868001277,0.001676782655281259,0.0018255781603714748,0.0017306173820790087,0.001508761341800692,0.0013738623305788252,0.001738756983398043,0.0016294055054074553,0.0013487928568199753,0.0018949328910464463,0.0018885794703099364,0.0012902444977335244,0.0019003243539960893,0.001215770124815271,0.0016924696848420176,0.0016280307207961545,0.0013690531868001277,0.0014737250572356346,0.0014758113972100392,0.0016345591536762673,0.0014370086365760625,0.0012879867424271999,0.0013352045425705423,0.0011609640474436812,0.0012126874008790397,0.0016324026443916841,0.001669931788059647,0.0016324026443916841,0.001376231307115442,0.0017788848459269493,0.0016204679218615912,0.0016070086154879961,0.0020233118438687477,0.0012715594366799348,0.0014050754252775885,0.0018070583905689679,0.0012277203690409693,0.0014962133205833194,0.0016033699709179145,0.0013505479680686703,0.001731515586984079,0.0012727707700906081,0.0012810834211972031,0.0015083080915750937,0.0015617812344678695,0.001214233703143708,0.0012739760316291208,0.0011190409196110203,0.0014716204558476763,0.0018438991802147517,0.0012095646404487754,0.001191624519917447,0.001481963950536385,0.001670163323150702,0.0014351707995512255,0.0013514207427963614,0.0016830053471600878,0.0015965526562633358,0.0017574940721315395,0.0015949759347218245,0.0016377580812151525,0.0015145771402083898,0.001313773841560307,0.0014238386367092062,0.0016126595054902916,0.0013540202186381979,0.0012691183073525348,0.0017343675009031424,0.0015475670364770413,0.0018714697817493135,0.0013641458904847137,0.0015320488024117944,0.0015799633773381833,0.0015096652871265295,0.001869558650878389,0.0012799133499175744,0.001555152813019103,0.0011983040931466695,0.0012822478262498876,0.0018531568454539177,0.0017085804017700356,0.0011471071748936402,0.0013854804925473925,0.0013854804925473925,0.0012822478262498876,0.00129359187207408,0.0014064653087630435,0.0013295466539166528,0.0013361347146144257,0.0016703946355047423,0.0014619149115834332,0.0011590327183978125,0.0015119103937594372,0.0014966899296065261,0.0016796918012891083,0.0012715594366799348,0.0012603737373701788,0.0014071572493081215,0.0016708565937130846,0.0013304989291157184,0.002116269866513119,0.0013086248402360097,0.001394387035707636,0.001177681531742962,0.001494777798865868,0.0014394374367572749,0.0011812438068750566,0.0013452437270927706,0.001730257158530764,0.001294697387462821,0.0011590327183978125,0.0017760708105462968,0.001508761341800692,0.0019175525593560395,0.0017483079934065495,0.001468428605790191,0.0012691183073525348,0.0013285905923251288,0.0017410082344527585,0.0014966899296065261,0.0017193802552910367,0.001361654166907052,0.0018643523732569407,0.0018013599621447293,0.0012775559861975293,0.0017944214847664774,0.0014471657639469472,0.0017347216234612317,0.0014737250572356346,0.0012822478262498876,0.0015502493658304248,0.0016877840788071985,0.0016792465249146694,0.0011190409196110203,0.0016260927204206812,0.0018739615053269753,0.0017184354636099214,0.001701169053362922,0.0017044020321314642,0.0014737250572356346,0.001583307647847201,0.0014864772062124325,0.0013407323532264091,0.0011794692661751384,0.0013086248402360097,0.0016082093629195523,0.0014418419485298214,0.0011590327183978125,0.0014705612066743725,0.0013608178211126146,0.001840276525272869,0.0012691183073525348,0.0014923660517311458,0.001608508615196488,0.001305481669027457,0.0014251244642305406,0.0016481238748163763,0.0017584577975638738,0.0017264418668154812,0.0012291732385578207,0.001658061205264113,0.0019784583338910188,0.0016659611918129669,0.0015755451056684371,0.0014064653087630435,0.0018449082945712974,0.001678577060426104,0.001784272064560236,0.001316811134663458,0.001338903833589575,0.001742554536717427,0.001513247463971136,0.0013117274532639008,0.001551768796943255,0.001175880405916865,0.0016657255728098098,0.001162879987249986,0.0011570857508898733,0.001245955571827733,0.001501871209237209,0.0017247880257051796,0.0020131919009036487,0.0020330230087335192,0.001476847817665899,0.0016888570354001002,0.0017316948260333639,0.0013548805028241611,0.0015614177435846154,0.0015069431919395356,0.0013044247478818192,0.001881573762614722,0.0018621754096290193,0.0014370086365760625,0.0019395884252542182,0.0011345591536762673,0.001651648847295007,0.0013649707598133362,0.0015671686705958328,0.0015675235771893906,0.0015755451056684371,0.0014694972705425633,0.0016740656865597424,0.0016845361792652304,0.0016661965801562702,0.0013266669886780136,0.001400856910522724,0.0011409150084907293,0.0016945696909719562,0.0014126222384943997,0.0012391047046061208,0.0017794731010790255,0.0016496409093342517,0.0018617585058861167,0.001826546250953417,0.0014794194910941665,0.001501871209237209,0.0016626413280011307,0.0013994341301969764,0.0015933888057020737,0.0012739760316291208,0.0018737631149085576,0.0013958399052244877,0.0016406535085481725,0.001554779154554658,0.001369861420077027,0.0016602416157330327,0.0014529460705110663,0.001215770124815271,0.0014569111644001911,0.0016650173273095833,0.0014345550522916017,0.0017338353372624994,0.001394387035707636,0.0014105873955451967,0.0016388150023607902,0.0015529021022941448,0.001822772989833762,0.0013565918920664657,0.0016673700777196992,0.0015328694488516753,0.0011511484326014198,0.0013987195704631267,0.0012775559861975293,0.001285707586277687,0.0011491362938846573,0.0013217895562604811,0.0015064864982153837,0.0013657928090703747,0.0015581213590385129,0.0016181806354250573,0.0013496720138267545,0.0012291732385578207,0.0016633565962731929,0.0014132967106715165,0.001189925225399799,0.001294697387462821,0.001162879987249986,0.0017974391409262536,0.001337061302171409,0.0014382261033466018,0.0011703946355047423,0.0014126222384943997,0.0011213200757605331,0.001359136351508684,0.0013470248402256452,0.0014225458961034671,0.0012391047046061208,0.0014363975837097677,0.0015682318226896172,0.0014952572589917953,0.0012616426013884914,0.0017268078473632773,0.001443629682961998,0.0011703946355047423,0.0015004691692678423,0.0011345591536762673,0.0014563487099367484,0.0015336873039717433,0.0015096652871265295,0.0016972725635788697,0.001177681531742962,0.0016756543135885175,0.0014483329952365745,0.0011966515150024892,0.0016997408402420605,0.0014859798964726289,0.001245955571827733,0.0016788004224240346,0.0019319982946025209,0.0011983040931466695,0.0011280307207961542,0.0015892125627701337,0.0014879629936803904,0.0012348984893562837,0.0015073990198930757,0.0015529021022941448,0.0014205936593428353,0.0014173042896659584,0.001191624519917447,0.001468428605790191,0.0017095646404487752,0.0011609640474436812,0.0011097019137919658,0.0013314474477953608,0.0016796918012891083,0.001542504761636455,0.0013936572956225403,0.00147736435744238,0.0011190409196110203,0.0014192833063806738,0.0012913654749315768,0.0014630128549225597,0.0013127528244275,0.0014864772062124325,0.0012218194796857695,0.0015968667636541596,0.0014824696272179904,0.0013452437270927706,0.0015809715514503173,0.001299069311058351,0.0016099993154049962,0.0019264831635244504,0.0011409150084907293,0.0011280307207961542,0.001142996832521262,0.001421896910086052,0.001509213739250198,0.0018474680646340604,0.0013793540675457064,0.001153143872879099,0.0018629032563315393,0.0016761062858522,0.0015588578042496804,0.001689925225399799,0.001206400789887513,0.0018191887414917751,0.001367428524041534,0.0013096634991879286,0.001786707376381261,0.0013777977567824837,0.0012763685804586325,0.00144124307107582,0.0015859499730473405,0.0011966515150024892,0.0011740656865597422,0.0011450607865972342,0.0015603239622892068,0.0012565264685180052,0.0019333188070311878,0.0016645440020120897,0.0017134617950217673,0.001524109707138647,0.0016213200757605331,0.0016592749845880622,0.0017442610674682332,0.0018100518424865803,0.0018203068228457484,0.0013624876137501131,0.0017663420833602668,0.0017514641936774188,0.0017370107943621355,0.0015720903167313765,0.001497165595782385,0.0011949875002403854,0.0012739760316291208,0.0015299848483358225,0.0012015755609381584,0.0016565965357191153,0.0016272020611357333,0.00182375241755654,0.001569290294715015,0.001572785257022869,0.0013407323532264091,0.0013217895562604811,0.0012775559861975293,0.0011666666666666668,0.0016526465631392956,0.001355737720036821,0.0014477500878638699,0.0018066651784233144,0.0012539269926761687,0.0014166409811805342,0.0016958209470834464,0.0014778797899516103,0.0014799305416021307,0.0011144167545305364,0.0012095646404487754,0.0013342707581989798,0.0014406426982957875,0.0017733741560370575,0.0016213200757605331,0.0012787375569952492,0.00129359187207408,0.001313773841560307,0.0011235778310668576,0.0011609640474436812,0.0012306173820790087,0.001818190507889983,0.0012715594366799348,0.001517214634735337,0.0012666521403645213,0.001175880405916865,0.0013470248402256452,0.0014646504265652387,0.0014238386367092062,0.0011120708903285825,0.001533278724139394,0.0014057713712727876,0.0014962133205833194,0.0015911490766479395,0.0013425470725835316,0.001470029827069198,0.0013285905923251288,0.0013314474477953608,0.0011609640474436812,0.0014668166499867174,0.0016570857508898733,0.0013178150992680865,0.001525380807051097,0.0014918807858278287,0.0016244190535230772,0.0015349088942714915,0.001316811134663458,0.0013314474477953608,0.001214233703143708,0.001653143872879099,0.0012539269926761687,0.001481963950536385,0.0016263705357877874,0.0015101159886145923,0.001244600925013833,0.0012539269926761687,0.0014763301658545956,0.0013921911375830139,0.0017015755609381582,0.0014459928388236248,0.0011703946355047423,0.0015839709563326252,0.0013178150992680865,0.0014535165314511977,0.001341641424908427,0.0016834437231675332,0.0014257648086129396,0.001563950715412342,0.0015717420919442553,0.0012834066196901822,0.0012810834211972031,0.001206400789887513,0.001313773841560307,0.001662879987249986,0.0011666666666666668,0.001622451603370973,0.0012913654749315768,0.001259098141946273,0.0014064653087630435,0.0011491362938846573,0.0016070086154879961,0.0014641058075929203,0.0019367796736892348,0.0017522879326587395,0.0015336873039717433,0.0014563487099367484,0.0018354374231441767,0.0012218194796857695,0.0016761062858522,0.0012126874008790397,0.0012262586674363473,0.0016680714370117633,0.0011812438068750566,0.0016088074955003299,0.0012834066196901822,0.0011812438068750566,0.0016794692661751386,0.0015765719364395493,0.0014859798964726289,0.0017329457721580448,0.0019297287818934674,0.0011812438068750566,0.0017069971916157216,0.0015984311749858392,0.0016985098690886092,0.0017331239486563655,0.0013649707598133362,0.001193311889463065,0.0017467983668493028,0.0012320529037964602,0.0011450607865972342,0.0014257648086129396,0.0013304989291157184,0.0015765719364395493,0.0011213200757605331,0.0013086248402360097,0.0015202555862233386,0.001297983759898572,0.0013208020839342966,0.0012126874008790397,0.0013314474477953608,0.001502336745052489,0.0012377107924503496,0.0014552198385041773,0.0011144167545305364,0.0016432557977304422,0.0011647807811286943,0.001223308333814104,0.0013266669886780136,0.0013461359328418054,0.0015014047703450968,0.0018139011643980615,0.0016135397352963008,0.001387738247853717,0.0019395884252542182,0.0017247880257051796,0.0016845361792652304,0.0011511484326014198,0.0014580321415982433,0.001375444238741708,0.0012552302434193853,0.0018453554340278721,0.0019808222746582936,0.0011666666666666668,0.001517651418095193,0.0011324026443916843,0.0015051111893744904,0.0012334799060470308,0.001257815743314606,0.0013285905923251288,0.0013022968652028396,0.0015105658468814182,0.0015475670364770413,0.0013352045425705423,0.0013690531868001277,0.001270341969909396,0.0011388150023607902,0.0015769132412143591,0.0014238386367092062,0.001218813825880726,0.0012603737373701788,0.0015279030243052895,0.0016943605137743523,0.0015809715514503173,0.001578273636206586,0.0017916449045661405,0.0011167399530235154,0.0014105873955451967,0.001223308333814104,0.0015734781946018118,0.0018310921916261098,0.0012262586674363473,0.0017619587739172576,0.0016313170932319052,0.0013314474477953608,0.0018146636888430757,0.0015892125627701337,0.0017394519236895356,0.0012629048046726248,0.001162879987249986,0.0012763685804586325,0.0014173042896659584,0.0013407323532264091,0.0014839803076226966,0.0011812438068750566,0.0014036774610288023,0.0017913654749315765,0.0013869880158145602,0.0016453175396098645,0.0013178150992680865,0.001392925334103014,0.0016198981368236805,0.001338903833589575,0.0011471071748936402,0.0014225458961034671,0.0015069431919395356,0.001580635962877376,0.0015573826513193027,0.0011235778310668576,0.001383963458029517,0.0013847231716899013,0.0017686578236366633,0.0012247880257051796,0.0014952572589917953,0.0017641604167868594,0.001383963458029517,0.0012763685804586325,0.0016832246350671988,0.0014535165314511977,0.0012957978432668624,0.001257815743314606,0.0015510102815713904,0.0016009132530102781,0.0011213200757605331,0.0013994341301969764,0.0012763685804586325,0.0013086248402360097,0.0014192833063806738,0.0017462930444073147,0.0015846324400331162,0.0012775559861975293,0.0014742483418240626,0.00147736435744238,0.0012654095062113468,0.0011491362938846573,0.0012739760316291208,0.0013816698078221031,0.001499058906143143,0.0012751752818631547,0.0016869222528900054,0.0012095646404487754,0.0018361347146144257,0.0012968932855874434,0.001236308752480983,0.001616161254372381,0.0016563515543698733,0.001257815743314606,0.001175880405916865,0.0012822478262498876,0.0012739760316291208,0.0016590327183978125,0.0014483329952365745,0.0012512991066997827,0.0015544049145203838,0.0014231931351846717,0.0014418419485298214,0.001301225820342934,0.0013227729898337619,0.0015965526562633358,0.0016654897226943022,0.0014938160008895435,0.0014580321415982433,0.0014388325328571596,0.0016345591536762673,0.001448914492916554,0.0011144167545305364,0.0018242406393963186,0.001175880405916865,0.0011450607865972342,0.0012603737373701788,0.0016501444679967914,0.0012799133499175744,0.0015381364484159802,0.0013304989291157184,0.0014370086365760625,0.0016061041034239416,0.0012891182700376397,0.0012377107924503496,0.0013001499833200508,0.0015643104001069102,0.0014966899296065261,0.0017467983668493028,0.00169561285605057,0.0015369311868774676,0.0016321317157168439,0.001306533964682824,0.0011590327183978125,0.0014231931351846717,0.0015324594757370415,0.0011144167545305364,0.0013425470725835316,0.0014874687506009634,0.0012666521403645213,0.0017333019932209476,0.001551768796943255,0.0011949875002403854,0.0015779342583471662,0.0017733741560370575,0.0012666521403645213,0.001478907352085896,0.0016803581735589785,0.001411945869065341,0.001297983759898572,0.001387738247853717,0.0013649707598133362,0.0011551228895938144,0.0011235778310668576,0.0011830053471600878,0.0014199393754738688,0.0016324026443916841,0.0012751752818631547,0.0011666666666666668,0.0011830053471600878,0.0013086248402360097,0.0012095646404487754,0.001142996832521262,0.0016493887339849903,0.001214233703143708,0.001162879987249986,0.001355737720036821,0.0014430352471252992,0.0012822478262498876,0.001604284807177411,0.001218813825880726,0.001214233703143708,0.0015682318226896172,0.0017459555718277332,0.0014995299134896035,0.001390715984652636,0.00138320133639788,0.0013117274532639008,0.001359136351508684,0.0015004691692678423,0.0013690531868001277,0.0013540202186381979,0.001177681531742962,0.0014630128549225597,0.0013247278719307797,0.0016377580812151525,0.0014799305416021307,0.0013505479680686703,0.0013730674565541798,0.0015211174121405318,0.0014726750591763451,0.001270341969909396,0.0017467983668493028,0.001699126142403708,0.0014597038691211207,0.0014400408227037242,0.0014092212033840934,0.001484481765934753,0.0013869880158145602,0.001270341969909396,0.0013461359328418054,0.001996868414711949,0.0013285905923251288,0.0013505479680686703,0.0012348984893562837,0.0015646695475575226,0.0015110148650762953,0.0014477500878638699,0.001524109707138647,0.0011120708903285825,0.001743238603106216,0.001494777798865868,0.0013574430404719804,0.0011794692661751384,0.0014918807858278287,0.0014874687506009634,0.001478907352085896,0.0014752915069026764,0.0011882138361574944,0.001305481669027457,0.0012277203690409693,0.001175880405916865,0.0014962133205833194,0.001693941612669304,0.001259098141946273,0.0016088074955003299,0.0013531568454539177,0.0015150187366107148,0.0012404905826414547,0.001524534154157038,0.0011280307207961542,0.0015993649593574017,0.0016350952724568577,0.0013936572956225403,0.0015599582600537216,0.0014345550522916017,0.0011409150084907293,0.0014179657733664494,0.0014105873955451967,0.001337061302171409,0.001352290361008198,0.0011366964937358647,0.0014339377241643656,0.001327630714110348,0.0013777977567824837,0.001704602657235704,0.0012512991066997827,0.0014302000969874929,0.0016463418187880894,0.0012616426013884914,0.0014001465727136973,0.001236308752480983,0.0013809003698103748,0.0013247278719307797,0.0011511484326014198,0.0011847540761296949,0.0011511484326014198,0.0013285905923251288,0.0013198105395457657,0.001508761341800692,0.0012031947534103602,0.0011740656865597422,0.0012822478262498876,0.0016638322624490517,0.001285707586277687,0.0013746545855739308,0.0011666666666666668,0.0012629048046726248,0.0017408358076447372,0.0012432386031062163,0.0014580321415982433,0.0012404905826414547,0.0013106976907757133,0.001270341969909396,0.0014529460705110663,0.001286849864784531,0.001214233703143708,0.0016573299857239566,0.0015051111893744904,0.001162879987249986,0.0013582911865841136,0.0016901382951288336,0.001468428605790191,0.0016561063231670952,0.0016624024316342545,0.001700558000496627,0.0013793540675457064,0.0011409150084907293,0.0011097019137919658,0.0017834066196901822,0.0013624876137501131,0.0015101159886145923,0.0013496720138267545,0.0014454042236619158,0.0011097019137919658,0.0013217895562604811,0.0013127528244275,0.0012111310901158168,0.001382436791481938,0.0016592749845880622,0.0015823092415401371,0.0014179657733664494,0.001223308333814104,0.0015984311749858392,0.001223308333814104,0.0016856236943415316,0.0011409150084907293,0.0013540202186381979,0.001671087240419961,0.001215770124815271,0.001588238425691025,0.0014591479170272448,0.001325699385064479,0.0011740656865597422,0.0013461359328418054,0.0012565264685180052,0.0013582911865841136,0.0015491034581486046,0.0015544049145203838,0.001497165595782385,0.0013574430404719804,0.0013565918920664657,0.0015215471694908279,0.0014078472043682754,0.0013869880158145602,0.0012079879189072643,0.0016583044517931853,0.001621886505170844,0.0012968932855874434,0.001531637426480003,0.001191624519917447,0.0015506301246961836,0.0019151418127900497,0.001426403452211444,0.0014105873955451967,0.001600295131401285,0.0015004691692678423,0.0011812438068750566,0.0013434493219479258,0.0016640697431335228,0.0014064653087630435,0.0012727707700906081,0.0011740656865597422,0.001372269946126617,0.0012218194796857695,0.0014251244642305406,0.0011345591536762673,0.0015014047703450968,0.0014166409811805342,0.001376231307115442,0.0013117274532639008,0.0014546534090938664,0.0016123653780242804,0.0014406426982957875,0.001754579501010066,0.0013777977567824837,0.0015262244892271406,0.0016285815782500998,0.0012377107924503496,0.001245955571827733,0.0012486421827216125,0.0011213200757605331,0.0015809715514503173,0.0011551228895938144,0.001339819831548717,0.0014909073060629854,0.001671317666094981,0.0013574430404719804,0.0013117274532639008,0.0013649707598133362,0.0014092212033840934,0.0015755451056684371,0.001189925225399799,0.001390715984652636,0.0013770158075616964,0.0013785771713173958,0.0016088074955003299,0.0015628684217314254,0.0012348984893562837,0.0013487928568199753,0.0017504719673444573,0.001206400789887513,0.0012822478262498876,0.0016091060047546612,0.001285707586277687,0.0015635904918640975,0.0014483329952365745,0.0015789509582699026,0.0015921115162523787,0.0013461359328418054,0.0018095339119180277,0.001206400789887513,0.0018139011643980615,0.0014938160008895435,0.001669931788059647,0.0011590327183978125,0.0013379843327616474,0.0014732006313494905,0.001387738247853717,0.0017889771199464239,0.0013641458904847137,0.001301225820342934,0.0012715594366799348,0.0015064864982153837,0.0011120708903285825,0.0011647807811286943,0.0016551228895938144,0.0011471071748936402,0.0012418685186387215,0.0014400408227037242,0.001390715984652636,0.001738408758610922,0.0013714697817493134,0.0014483329952365745,0.0015628684217314254,0.0014834778013301246,0.0018456902437920843,0.0011551228895938144,0.0014869734895124151,0.0015765719364395493,0.0014923660517311458,0.0013379843327616474,0.001888952404348995,0.0011830053471600878,0.0011366964937358647,0.0013574430404719804,0.0015682318226896172,0.001524534154157038,0.0011409150084907293,0.0014952572589917953,0.0018062713221952342,0.0013487928568199753,0.0014064653087630435,0.001355737720036821,0.0012079879189072643,0.0011999453908060607,0.001206400789887513,0.0011830053471600878,0.0014668166499867174,0.001530399058900755,0.0014289411979155535,0.0012810834211972031,0.0011144167545305364,0.001506028935425581,0.0016315889408283933,0.001533278724139394,0.001299069311058351,0.001301225820342934,0.001313773841560307,0.0013033631604025314,0.001270341969909396,0.0012616426013884914,0.0014721483356941235,0.0012603737373701788,0.0015428979737821084,0.0011949875002403854,0.001587586801515845,0.0013425470725835316,0.0012291732385578207,0.001327630714110348,0.0013548805028241611,0.0011609640474436812,0.00129359187207408,0.0012348984893562837,0.0016155811595832208,0.0015599582600537216,0.0013862354356274783,0.0016036753032427293,0.0011966515150024892,0.0014314524392637106,0.0015724380379394543,0.0011190409196110203,0.0014923660517311458,0.0013899750004807707,0.0011812438068750566,0.0013247278719307797,0.001392925334103014,0.0013633181816691557,0.0013649707598133362,0.001236308752480983,0.0015373336123663509,0.0011882138361574944,0.0014057713712727876,0.001223308333814104,0.0012727707700906081,0.0012277203690409693,0.0015219761601014655,0.00160152978969033,0.0016315889408283933,0.0012203213491478939,0.0018028306038758966,0.001292481250360578,0.0012629048046726248,0.0014036774610288023,0.0012787375569952492,0.0015494860344798813,0.001382436791481938,0.0012015755609381584,0.0013854804925473925,0.0014630128549225597,0.0011324026443916843,0.001286849864784531,0.001355737720036821,0.0016258145836939113,0.0014705612066743725,0.0013304989291157184,0.0016155811595832208,0.001339819831548717,0.0012822478262498876,0.0014192833063806738,0.0012218194796857695,0.0014529460705110663,0.0015678779607074555,0.0013793540675457064,0.0015460207342123731,0.0012348984893562837,0.0011213200757605331,0.0015274844877792813,0.001444222652864196,0.0016230153766034151,0.0012957978432668624,0.001355737720036821,0.0013342707581989798,0.0012845598553468138,0.0012031947534103602,0.0011590327183978125,0.0016645440020120897,0.0013295466539166528,0.0017352518313353453,0.0011235778310668576,0.0012432386031062163,0.0011190409196110203,0.0014173042896659584,0.0014166409811805342,0.0011794692661751384,0.001544854446524903,0.0012739760316291208,0.001355737720036821,0.0014933336553446803,0.0011666666666666668,0.0014758113972100392,0.0013075816751573959,0.0011949875002403854,0.001740663257100209,0.0011570857508898733,0.001671317666094981,0.001369861420077027,0.0014591479170272448,0.0018832967338097567,0.0016905638689983032,0.001315802960551324,0.0014854815560383268,0.001162879987249986,0.0013295466539166528,0.0017790320446909472,0.001572785257022869,0.0016073093649624543,0.0012277203690409693,0.0013666120574727272,0.0015829753061585195,0.001306533964682824,0.0012203213491478939,0.001245955571827733,0.001327630714110348,0.0013582911865841136,0.0011235778310668576,0.0014363975837097677,0.001578273636206586,0.0012499743145138677,0.001189925225399799,0.0012891182700376397,0.0014763301658545956,0.0016167399530235154,0.0014225458961034671,0.0011740656865597422,0.0015862782313556352,0.0012079879189072643,0.0015802999052776255,0.0011144167545305364,0.0016388150023607902,0.0014406426982957875,0.0016690034117191556,0.0012404905826414547,0.0013434493219479258,0.0012666521403645213,0.0011794692661751384,0.0012654095062113468,0.0013086248402360097,0.0014199393754738688,0.0014952572589917953,0.0013809003698103748,0.0012048031150826467,0.0013770158075616964,0.0012111310901158168,0.0014747704900715565,0.0015028013812810924,0.001245955571827733,0.0013770158075616964,0.0011409150084907293,0.0014166409811805342,0.001375444238741708,0.0015467951283551005,0.0015185226117057846,0.0011740656865597422,0.0013127528244275,0.0016882138361574946,0.0016851892783724513,0.0012902444977335244,0.001189925225399799,0.0012787375569952492,0.0012031947534103602,0.001292481250360578,0.001244600925013833,0.0016673700777196992,0.0011471071748936402,0.0011830053471600878,0.001524109707138647,0.0011830053471600878,0.0014799305416021307,0.0012891182700376397,0.0013044247478818192,0.0015802999052776255,0.0014726750591763451,0.0014205936593428353,0.0014092212033840934,0.001375444238741708,0.0014105873955451967,0.001236308752480983,0.0014132967106715165,0.0012095646404487754,0.0013075816751573959,0.001339819831548717,0.001252616639714007,0.0011235778310668576,0.0015389366127932836,0.0011882138361574944,0.0014580321415982433,0.001270341969909396,0.001339819831548717,0.0011864901787872512,0.0013033631604025314,0.0011280307207961542,0.00132375241755654,0.001530399058900755,0.0015713933621173818,0.0014889484424920388,0.0011280307207961542,0.00147736435744238,0.001285707586277687,0.001236308752480983,0.0013443481984096288,0.0012799133499175744,0.0011551228895938144,0.0012787375569952492,0.001359136351508684,0.001142996832521262,0.0011864901787872512,0.0011450607865972342,0.0015502493658304248,0.0014512265220134805,0.001339819831548717,0.0013793540675457064,0.0012291732385578207,0.0012277203690409693,0.001531637426480003,0.0013972840487456754,0.0017504719673444573,0.0014569111644001911,0.0017144262936013262,0.0013540202186381979,0.0014078472043682754,0.0013487928568199753,0.001394387035707636,0.0014758113972100392,0.0014540856421866584,0.0011213200757605331,0.0013770158075616964,0.001468428605790191,0.0015487202721336732,0.0015885635767527188,0.0014132967106715165,0.0014092212033840934,0.0011235778310668576,0.0015096652871265295,0.001315802960551324,0.001524534154157038,0.001259098141946273,0.0011302266189207766,0.001325699385064479,0.0011864901787872512,0.001294697387462821,0.001244600925013833,0.0014747704900715565,0.0012126874008790397,0.0011235778310668576,0.0013649707598133362,0.001189925225399799,0.0012486421827216125,0.0012810834211972031,0.001175880405916865,0.001462464509933529,0.0015291542804167797,0.0011097019137919658,0.001585621265992073,0.001175880405916865,0.0014270404040368453,0.0013641458904847137,0.0013434493219479258,0.0012048031150826467,0.0013075816751573959,0.0011324026443916843,0.001533278724139394,0.0014794194910941665,0.001446580016584241,0.0014523742529443538,0.0011491362938846573,0.0015696420858143162,0.0014333188070311878,0.0012845598553468138,0.001257815743314606,0.001244600925013833,0.0015682318226896172,0.0015796263777406482,0.001294697387462821,0.001347910473541723,0.0014186254422945631,0.001430827083453526,0.0014159758378145283,0.0014295714713392915,0.0014913945385974462,0.0012822478262498876,0.0012499743145138677,0.0013899750004807707,0.0014597038691211207,0.0011258145836939113,0.0013965630611785435,0.0014580321415982433,0.0013075816751573959,0.0012666521403645213,0.001245955571827733,0.001347910473541723,0.0014535165314511977,0.0012739760316291208,0.0014535165314511977,0.001142996832521262,0.0011097019137919658,0.0011388150023607902,0.0014001465727136973,0.0015069431919395356,0.0013958399052244877,0.0013314474477953608,0.001236308752480983,0.0011190409196110203,0.0011097019137919658,0.001484481765934753,0.0012095646404487754,0.0016252573431815166,0.0013470248402256452,0.001214233703143708,0.0013342707581989798,0.0012334799060470308,0.0011409150084907293,0.001338903833589575,0.0013582911865841136,0.0011966515150024892,0.0014406426982957875,0.0013816698078221031,0.0016132466832509075,0.001355737720036821,0.0011213200757605331,0.001299069311058351,0.0013342707581989798,0.0014874687506009634,0.0013407323532264091,0.0011280307207961542,0.0011491362938846573,0.0012715594366799348,0.0014763301658545956,0.0012822478262498876,0.0011666666666666668,0.001376231307115442,0.001153143872879099,0.0014814572081497098,0.0012499743145138677,0.0014289411979155535,0.0014752915069026764,0.0012095646404487754,0.0011409150084907293,0.0012377107924503496,0.0011511484326014198,0.0015055705002562417,0.001294697387462821,0.0014454042236619158,0.001443629682961998,0.0013342707581989798,0.0011491362938846573,0.001316811134663458,0.0014933336553446803,0.0012486421827216125,0.0013127528244275,0.0014814572081497098,0.0015752018519720548,0.0013847231716899013,0.0011847540761296949,0.001223308333814104,0.001252616639714007,0.0014105873955451967,0.001162879987249986,0.0011740656865597422,0.001618754500073304,0.001494777798865868,0.0017590981419462728,0.0012320529037964602,0.001347910473541723,0.0011324026443916843,0.0013227729898337619,0.0012666521403645213,0.0012377107924503496,0.0012739760316291208,0.0014078472043682754,0.0011213200757605331,0.0014889484424920388,0.001765720767320808,0.001359136351508684,0.0011366964937358647,0.0012291732385578207,0.001252616639714007,0.0013987195704631267,0.0011409150084907293,0.0013208020839342966,0.001376231307115442,0.0011722371669229085,0.0012787375569952492,0.0014454042236619158,0.0011324026443916843,0.0012172967913628506,0.0011324026443916843,0.0013217895562604811,0.001292481250360578,0.0012320529037964602,0.0013379843327616474,0.0013777977567824837,0.0012079879189072643,0.0014001465727136973,0.0012486421827216125,0.0013540202186381979,0.0014864772062124325,0.001484481765934753,0.0011366964937358647,0.0013075816751573959,0.0011966515150024892,0.0014406426982957875,0.0012391047046061208,0.0015599582600537216,0.0012654095062113468,0.0011999453908060607,0.0011491362938846573,0.0015028013812810924,0.0013361347146144257,0.0012473026295440428,0.0016039802483355764,0.0014535165314511977,0.001430827083453526,0.0014483329952365745,0.001509213739250198,0.0012641604167868594,0.0016548764014394954,0.0012095646404487754,0.0011847540761296949,0.001193311889463065,0.0011235778310668576,0.0011703946355047423,0.001316811134663458,0.0011235778310668576,0.0012499743145138677,0.0012787375569952492,0.0013461359328418054,0.0011280307207961542,0.0011794692661751384,0.0011258145836939113,0.0013809003698103748,0.0011647807811286943,0.0015,0.0013266669886780136,0.0014613640541294877,0.0013657928090703747,0.001315802960551324,0.001223308333814104,0.0014879629936803904,0.0012172967913628506,0.0013914546923718461,0.001693731888126151,0.0013425470725835316,0.0014333188070311878,0.0016920474737177637,0.0011830053471600878,0.0012111310901158168,0.0013266669886780136,0.0012775559861975293,0.0014742483418240626,0.0012666521403645213,0.001368242227604825,0.0012172967913628506,0.0012539269926761687,0.001215770124815271,0.001175880405916865,0.0012891182700376397,0.0014357849740192013,0.0011280307207961542,0.0014710914145484857,0.0011120708903285825,0.0013001499833200508,0.0015487202721336732,0.0011949875002403854,0.001784559855346814,0.0011794692661751384,0.0014283092680551577,0.0012277203690409693,0.0014036774610288023,0.0015193906602062447,0.0015599582600537216,0.0015475670364770413,0.0015885635767527188,0.0012095646404487754,0.0012834066196901822,0.001153143872879099,0.0012306173820790087,0.0012486421827216125,0.001257815743314606,0.0013809003698103748,0.0011097019137919658,0.0011366964937358647,0.0015211174121405318,0.0012079879189072643,0.0013487928568199753,0.0012079879189072643,0.0012432386031062163,0.0014705612066743725,0.0011949875002403854,0.0014085351853053883,0.001566457281989699,0.0011999453908060607,0.001587260326009502,0.0014849821806283403,0.001415308849388279,0.0015096652871265295,0.0011097019137919658,0.0012048031150826467,0.0012603737373701788,0.0013188148893716603,0.0014064653087630435,0.001411945869065341,0.0013117274532639008,0.001175880405916865,0.0015150187366107148,0.0014388325328571596,0.0011409150084907293,0.0011830053471600878,0.0012291732385578207,0.0013657928090703747,0.0014283092680551577,0.001448914492916554,0.0012775559861975293,0.001306533964682824,0.0011324026443916843,0.0011388150023607902,0.0011830053471600878,0.0011666666666666668,0.0013624876137501131,0.0011120708903285825,0.0012775559861975293,0.001400856910522724,0.00138320133639788,0.0011722371669229085,0.001426403452211444,0.0016144167545305364,0.0016158713819159583,0.0013361347146144257,0.001191624519917447,0.0013001499833200508,0.0014064653087630435,0.0015706943814696832,0.0011966515150024892,0.0014192833063806738,0.0011666666666666668,0.0014394374367572749,0.0011864901787872512,0.0012432386031062163,0.0011302266189207766,0.0015502493658304248,0.0012603737373701788,0.0012499743145138677,0.001369861420077027,0.0011167399530235154,0.001223308333814104,0.0012334799060470308,0.0013531568454539177,0.0011812438068750566,0.001681905897720601,0.0015775944008015665,0.0012079879189072643,0.00138320133639788,0.0011864901787872512,0.0011213200757605331,0.0011830053471600878,0.001347910473541723,0.0014050754252775885,0.0012822478262498876,0.0013106976907757133,0.0013965630611785435,0.0013208020839342966,0.0014314524392637106,0.001341641424908427,0.0012739760316291208,0.0013407323532264091,0.0011983040931466695,0.0012616426013884914,0.0014050754252775885,0.0012739760316291208,0.0012810834211972031,0.0013314474477953608,0.001517651418095193,0.0015661007968636432,0.001177681531742962,0.001299069311058351,0.0012218194796857695,0.0011144167545305364,0.0012739760316291208,0.0012902444977335244,0.0011097019137919658,0.0012247880257051796,0.0011388150023607902,0.001153143872879099,0.0012473026295440428,0.0016302266189207766,0.001252616639714007,0.001294697387462821,0.001481963950536385,0.0012499743145138677,0.001257815743314606,0.0013777977567824837,0.0012799133499175744,0.0011949875002403854,0.001494777798865868,0.0012262586674363473,0.0013809003698103748,0.0013208020839342966,0.0012629048046726248,0.0011864901787872512,0.001315802960551324,0.0011794692661751384,0.001177681531742962,0.001395114567801203,0.0012763685804586325,0.0012306173820790087,0.0011190409196110203,0.0014036774610288023,0.0013127528244275,0.0012048031150826467,0.0011491362938846573,0.0011258145836939113,0.00138320133639788,0.0011388150023607902,0.0013452437270927706,0.0012262586674363473,0.0011666666666666668,0.001142996832521262,0.0013117274532639008,0.0012079879189072643,0.0011551228895938144,0.0015158995037987595,0.0011882138361574944,0.0012473026295440428,0.0013582911865841136,0.001305481669027457,0.0011847540761296949,0.0011120708903285825,0.001215770124815271,0.001162879987249986,0.0013914546923718461,0.0013505479680686703,0.0012015755609381584,0.0012751752818631547,0.001375444238741708,0.001524534154157038,0.0013746545855739308,0.0015145771402083898,0.0011609640474436812,0.0013379843327616474,0.0013434493219479258,0.0015224043867034878,0.0012015755609381584,0.0011491362938846573,0.001175880405916865,0.0011213200757605331,0.0012834066196901822,0.001337061302171409,0.0011590327183978125,0.0011703946355047423,0.0011647807811286943,0.0011366964937358647,0.0011097019137919658,0.0012739760316291208,0.0011551228895938144,0.0013582911865841136,0.0011097019137919658,0.0011097019137919658,0.0012391047046061208,0.001313773841560307,0.0012834066196901822,0.0012751752818631547,0.00129359187207408,0.0013565918920664657,0.0014619149115834332,0.0014064653087630435,0.0013117274532639008,0.001223308333814104,0.0013470248402256452,0.001270341969909396,0.001257815743314606,0.0011450607865972342,0.0012306173820790087,0.0011609640474436812,0.00147736435744238,0.0012799133499175744,0.0013033631604025314,0.0012565264685180052,0.0011590327183978125,0.001244600925013833,0.001294697387462821,0.001367428524041534,0.001375444238741708,0.0013127528244275,0.0014345550522916017,0.0012432386031062163,0.0015946593459025776,0.0014370086365760625,0.0012432386031062163,0.001206400789887513,0.001285707586277687,0.001259098141946273,0.0011471071748936402,0.001175880405916865,0.0015614177435846154,0.0011590327183978125,0.0011144167545305364,0.001375444238741708,0.0014231931351846717,0.0015888882887176389,0.001162879987249986,0.0012891182700376397,0.0016067074893703908,0.001267888385624935,0.001327630714110348,0.0012111310901158168,0.0012654095062113468,0.0013361347146144257,0.0013198105395457657,0.0014357849740192013,0.0011949875002403854,0.001175880405916865,0.001361654166907052,0.0012787375569952492,0.001426403452211444,0.0011388150023607902,0.0011794692661751384,0.001162879987249986,0.0011812438068750566,0.0011830053471600878,0.0012565264685180052,0.0011511484326014198,0.0011966515150024892,0.0014904190842232067,0.001394387035707636,0.0011491362938846573,0.0011366964937358647,0.0012247880257051796,0.0011213200757605331,0.001313773841560307,0.0012751752818631547,0.001306533964682824,0.0013624876137501131,0.0011491362938846573,0.0011830053471600878,0.0011258145836939113,0.0011345591536762673,0.0016862738502315153,0.0012666521403645213,0.0013452437270927706,0.001285707586277687,0.0011812438068750566,0.0011864901787872512,0.0013936572956225403,0.0012291732385578207,0.001218813825880726,0.001153143872879099,0.001252616639714007,0.001518087409463028,0.0016045889807454652,0.001525380807051097,0.0011235778310668576,0.0011366964937358647,0.0012691183073525348,0.0011570857508898733,0.0012218194796857695,0.001299069311058351,0.001177681531742962,0.001372269946126617,0.0012111310901158168,0.0011511484326014198,0.0014057713712727876,0.0013847231716899013,0.0011324026443916843,0.001301225820342934,0.0011213200757605331,0.0014085351853053883,0.0011882138361574944,0.0011258145836939113,0.0014591479170272448,0.0011345591536762673,0.0011302266189207766,0.0012913654749315768,0.0012727707700906081,0.001177681531742962,0.001286849864784531,0.0011830053471600878,0.0013899750004807707,0.0015799633773381833,0.0012432386031062163,0.0013352045425705423,0.0013914546923718461,0.0014043774591170164,0.001361654166907052,0.001316811134663458,0.0011280307207961542,0.001206400789887513,0.0011703946355047423,0.001191624519917447,0.0014092212033840934,0.0012291732385578207,0.0012048031150826467,0.0012957978432668624,0.0011258145836939113,0.0011409150084907293,0.001306533964682824,0.0011190409196110203,0.001426403452211444,0.0011213200757605331,0.0012203213491478939,0.0011491362938846573,0.001341641424908427,0.001153143872879099,0.0011647807811286943,0.0013323922394764764,0.0013505479680686703,0.0012512991066997827,0.0013295466539166528,0.0015483364744887697,0.001245955571827733,0.0013972840487456754,0.00132375241755654,0.0011097019137919658,0.0011983040931466695,0.0012377107924503496,0.0012391047046061208,0.0012968932855874434,0.0011144167545305364,0.0012691183073525348,0.0011703946355047423,0.0011345591536762673,0.001223308333814104,0.001259098141946273,0.001175880405916865,0.0011812438068750566,0.0013730674565541798,0.0011471071748936402,0.0012565264685180052,0.0013574430404719804,0.0013086248402360097,0.0011864901787872512,0.0012616426013884914,0.0017099572106151302,0.0011590327183978125,0.0011450607865972342,0.001245955571827733,0.001218813825880726,0.001206400789887513,0.001162879987249986,0.0012031947534103602,0.0014619149115834332,0.0016683047695613515,0.0011366964937358647,0.0013188148893716603,0.0012539269926761687,0.0011703946355047423,0.0011882138361574944,0.0011144167545305364,0.0011966515150024892,0.0011812438068750566,0.001257815743314606,0.0011685378759038756,0.0013323922394764764,0.0012539269926761687,0.0011450607865972342,0.0012048031150826467,0.0011609640474436812,0.0011491362938846573,0.0012902444977335244,0.0011590327183978125,0.0012822478262498876,0.0012079879189072643,0.0011120708903285825,0.001390715984652636,0.0012691183073525348,0.001162879987249986,0.001177681531742962,0.0011471071748936402,0.001175880405916865,0.0014494945877057146,0.001153143872879099,0.001191624519917447,0.0012203213491478939,0.0011511484326014198,0.001175880405916865,0.0013086248402360097,0.001259098141946273,0.0012262586674363473,0.0011120708903285825,0.001206400789887513,0.0011167399530235154,0.0011213200757605331,0.001306533964682824,0.0013434493219479258,0.00132375241755654,0.001267888385624935,0.001327630714110348,0.0011450607865972342,0.0011258145836939113,0.0011949875002403854,0.0012348984893562837,0.0011144167545305364,0.0011190409196110203,0.001347910473541723,0.001270341969909396,0.001193311889463065,0.0012432386031062163,0.0013247278719307797,0.0011999453908060607,0.0012377107924503496,0.0013801284616884338,0.0012968932855874434,0.0011703946355047423,0.001189925225399799,0.0011491362938846573,0.0011830053471600878,0.0012565264685180052,0.0011388150023607902,0.001189925225399799,0.0011847540761296949,0.0011722371669229085,0.001162879987249986,0.0012616426013884914,0.0012641604167868594,0.0013086248402360097,0.0012418685186387215,0.0012691183073525348,0.0012432386031062163,0.0013096634991879286,0.0011551228895938144,0.0014029754191476496,0.0011213200757605331,0.0011491362938846573,0.0012277203690409693,0.001162879987249986,0.001215770124815271,0.0013188148893716603,0.001361654166907052,0.0011609640474436812,0.001341641424908427,0.0012552302434193853,0.0012654095062113468,0.0011703946355047423,0.001206400789887513,0.0011409150084907293,0.0011864901787872512,0.001153143872879099,0.0012512991066997827,0.0012048031150826467,0.0015051111893744904,0.0011345591536762673,0.001375444238741708,0.001286849864784531,0.0012095646404487754,0.0012763685804586325,0.0011097019137919658,0.0013147905414830432,0.0012432386031062163,0.0011722371669229085,0.0014029754191476496,0.0012787375569952492,0.0011235778310668576,0.0011280307207961542,0.0016033699709179145,0.0011120708903285825,0.0013582911865841136,0.0013706669456996841,0.001153143872879099,0.00129359187207408,0.00132375241755654,0.0011235778310668576,0.001177681531742962,0.0011740656865597422,0.0011388150023607902,0.0012277203690409693,0.0011551228895938144,0.0011812438068750566,0.0011144167545305364,0.0012031947534103602,0.0012629048046726248,0.0011491362938846573,0.001299069311058351,0.0011511484326014198,0.0012499743145138677,0.0014619149115834332,0.001153143872879099,0.0011120708903285825,0.0011471071748936402,0.0011167399530235154,0.0014716204558476763,0.0013461359328418054,0.0011609640474436812,0.0012565264685180052,0.001175880405916865,0.0011570857508898733,0.0012348984893562837,0.0013582911865841136,0.0011213200757605331,0.0011235778310668576,0.0013746545855739308,0.0012277203690409693,0.0012565264685180052,0.001245955571827733,0.0011450607865972342,0.0011190409196110203,0.0012015755609381584,0.0011097019137919658,0.0011144167545305364,0.0012751752818631547,0.0013854804925473925,0.001267888385624935,0.001206400789887513,0.0011302266189207766,0.001153143872879099,0.0011471071748936402,0.001193311889463065,0.0012348984893562837,0.0011280307207961542,0.0011302266189207766,0.0011685378759038756,0.0011097019137919658,0.001252616639714007,0.0013641458904847137,0.001153143872879099,0.0012629048046726248,0.0012499743145138677,0.001244600925013833,0.0011167399530235154,0.0011190409196110203,0.0011144167545305364,0.0011703946355047423,0.0012126874008790397,0.0011144167545305364,0.0012391047046061208,0.001191624519917447,0.0011345591536762673,0.0011647807811286943,0.0014225458961034671,0.0014244824099812728,0.0015717420919442553,0.0011609640474436812,0.0011830053471600878,0.001223308333814104,0.0013514207427963614,0.001189925225399799,0.0013247278719307797,0.0013487928568199753,0.0013086248402360097,0.0011740656865597422,0.0011740656865597422,0.0011144167545305364,0.001206400789887513,0.0011324026443916843,0.001162879987249986,0.001191624519917447,0.0012968932855874434,0.001294697387462821,0.0011280307207961542,0.001432698292690735,0.0013425470725835316,0.0011740656865597422,0.0011812438068750566,0.0011190409196110203,0.0012404905826414547,0.0019379223140787987,0.0015678779607074555,0.0012822478262498876,0.0012031947534103602,0.001214233703143708,0.0011722371669229085,0.001297983759898572,0.0011366964937358647,0.0012247880257051796,0.0014923660517311458,0.0013333333333333333,0.0012031947534103602,0.0011144167545305364,0.0011280307207961542,0.0011983040931466695,0.0011983040931466695,0.0012391047046061208,0.0011570857508898733,0.0011366964937358647,0.0011388150023607902,0.002386117631904833,0.0012654095062113468,0.0011685378759038756,0.0019189545993254062,0.0015741691409780704,0.0012095646404487754,0.0011144167545305364,0.0011647807811286943,0.0012603737373701788,0.0014382261033466018,0.0017073939725200848,0.001142996832521262,0.0011794692661751384,0.0012473026295440428,0.0011167399530235154,0.0011280307207961542,0.0012203213491478939,0.0015675235771893906,0.0011685378759038756,0.0014363975837097677,0.0012172967913628506,0.0012654095062113468,0.0014849821806283403,0.001730437337762486,0.0011258145836939113,0.0015236845095504248,0.001153143872879099,0.001175880405916865,0.001142996832521262,0.001177681531742962,0.0012031947534103602,0.0011966515150024892,0.0013862354356274783,0.00132375241755654,0.001387738247853717,0.0011409150084907293,0.001175880405916865,0.001206400789887513,0.001175880405916865,0.001292481250360578,0.0011258145836939113,0.0011213200757605331,0.0011409150084907293,0.001162879987249986,0.0011570857508898733,0.0012291732385578207,0.0011685378759038756,0.0012822478262498876,0.0013117274532639008,0.0014923660517311458,0.0015748581075625727,0.0016968587094775944,0.0012629048046726248,0.0015974937501201927,0.0011703946355047423,0.0011511484326014198,0.0011388150023607902,0.0011324026443916843,0.0011551228895938144,0.0011280307207961542,0.0012203213491478939,0.001153143872879099,0.0013178150992680865,0.0014173042896659584,0.0014212461676767327,0.002115290586528546,0.0016058018416952864,0.001782538048582625,0.0017938687278024,0.0017641604167868594,0.0011882138361574944,0.0021280307207961545,0.001811984206276531,0.002001171211148995,0.0018994341301969764,0.0017035978535441343,0.001191624519917447,0.0017558792294368004,0.001893016951240141,0.0013147905414830432,0.0015946593459025776,0.0017331239486563655,0.0018144097826172842,0.0018001499833200508,0.0016310449379414109,0.0011830053471600878,0.002136796216903181,0.0018070583905689679,0.0017467983668493028,0.0016974792238180472,0.0013314474477953608,0.0014430352471252992,0.00147736435744238,0.0017913654749315765,0.0020160642890754417,0.0013641458904847137,0.001963833034820069,0.001517214634735337,0.0018458017435267421,0.0016733816201709528,0.0015397341232208464,0.00201073432698184,0.0017348984893562837,0.0017552302434193855,0.0019207569525059747,0.001359136351508684,0.0013198105395457657,0.0018855749901605095,0.0011190409196110203,0.0013208020839342966,0.0017452792023986742,0.0017544165398560943,0.001850219859070546,0.0016377580812151525,0.001411945869065341,0.0014651938147591697,0.0011491362938846573,0.0019327759446124437,0.001551389838356568,0.0012334799060470308,0.001162879987249986,0.001796346188255893,0.0013086248402360097,0.0017579764176764026,0.0017277203690409693,0.0016666666666666668,0.0011812438068750566,0.001492850340260381,0.0014884562229271479,0.0016021447495485068,0.0014454042236619158,0.0015249578532507803,0.0014186254422945631,0.0016332136035869871,0.001506028935425581,0.0014869734895124151,0.0014591479170272448,0.0018045571173723528,0.0013086248402360097,0.0019379223140787987,0.0015479520632582415,0.0015393356986500141,0.0011167399530235154,0.0012565264685180052,0.001359136351508684,0.0011409150084907293,0.0011167399530235154,0.001339819831548717,0.0013801284616884338,0.0016147083848555297,0.0011120708903285825,0.0015249578532507803,0.0012603737373701788,0.0014270404040368453,0.0011235778310668576,0.0011740656865597422,0.0011450607865972342,0.0015621441766854314,0.0011167399530235154,0.0013980028808908559,0.0013127528244275,0.0011120708903285825,0.0015119103937594372,0.0011794692661751384,0.0011491362938846573,0.001245955571827733,0.001626925205407413,0.0015946593459025776,0.001315802960551324,0.0012031947534103602,0.0011740656865597422,0.0016079097377424867,0.0011258145836939113,0.0013770158075616964,0.0014225458961034671,0.001367428524041534,0.0013198105395457657,0.001316811134663458,0.001214233703143708,0.0018320383774943147,0.0011167399530235154,0.001421896910086052,0.0013936572956225403,0.0012739760316291208,0.0015185226117057846,0.0011666666666666668,0.0014854815560383268,0.0011830053471600878,0.0014179657733664494,0.0016488835884767607,0.0012499743145138677,0.0014270404040368453,0.0011258145836939113,0.0011812438068750566,0.0011366964937358647,0.0013487928568199753,0.001325699385064479,0.0012629048046726248,0.0016432557977304422,0.0012512991066997827,0.0011190409196110203,0.0014388325328571596,0.0014742483418240626,0.001245955571827733,0.00138320133639788,0.0011258145836939113,0.0014251244642305406,0.0011609640474436812,0.0013624876137501131,0.0012845598553468138,0.0012691183073525348,0.0011302266189207766,0.0012015755609381584,0.0013624876137501131,0.0011120708903285825,0.0015962381380059583,0.0011450607865972342,0.0013323922394764764,0.001189925225399799,0.001368242227604825,0.0011213200757605331,0.001395114567801203,0.0011551228895938144,0.0012799133499175744,0.0015262244892271406,0.0011345591536762673,0.0011551228895938144,0.001359136351508684,0.001142996832521262,0.001376231307115442,0.0011097019137919658,0.0012348984893562837,0.001352290361008198,0.0011511484326014198,0.0013958399052244877,0.001297983759898572,0.001257815743314606,0.0011144167545305364,0.0013352045425705423,0.0011213200757605331,0.0011666666666666668,0.001640129653932509,0.0012404905826414547,0.0011609640474436812,0.0011647807811286943,0.0015198235121205844,0.0012048031150826467,0.0012079879189072643,0.001244600925013833,0.0012654095062113468,0.0011345591536762673,0.0011647807811286943,0.0011590327183978125,0.0011511484326014198,0.001306533964682824,0.0012247880257051796,0.0015417164029843887,0.0011812438068750566,0.001214233703143708,0.0012565264685180052,0.0014057713712727876,0.0012031947534103602],\"subreddit\":[\"politics\",\"trees\",\"pics\",\"Metal\",\"AskReddit\",\"tattoos\",\"redditguild\",\"WTF\",\"cocktails\",\"funny\",\"gaming\",\"Fitness\",\"mcservers\",\"TeraOnline\",\"GetMotivated\",\"itookapicture\",\"Paleo\",\"trackers\",\"Minecraft\",\"gainit\",\"IAmA\",\"AdviceAnimals\",\"movies\",\"smallbusiness\",\"Republican\",\"todayilearned\",\"IWantOut\",\"DIY\",\"Frugal\",\"relationships\",\"atheism\",\"Jeep\",\"Music\",\"grandrapids\",\"reddit.com\",\"videos\",\"yoga\",\"bestof\",\"ShitRedditSays\",\"gifs\",\"technology\",\"aww\",\"CrohnsDisease\",\"birthcontrol\",\"TwoXChromosomes\",\"Mustang\",\"4x4\",\"CCW\",\"dogpictures\",\"Cartalk\",\"space\",\"cars\",\"Economics\",\"Libertarian\",\"240sx\",\"UserCars\",\"Autos\",\"formula1\",\"bodybuilding\",\"Drifting\",\"Justrolledintotheshop\",\"gadgets\",\"business\",\"gamernews\",\"worldnews\",\"carporn\",\"motorsports\",\"Nissan\",\"startrek\",\"Flagstaff\",\"Rainmeter\",\"fffffffuuuuuuuuuuuu\",\"pcgaming\",\"screenshots\",\"truegaming\",\"Guildwars2\",\"gonewild\",\"gamingsuggestions\",\"Games\",\"dubstep\",\"skyrim\",\"SuggestALaptop\",\"battlefield3\",\"starcraft\",\"creepy\",\"darksouls\",\"books\",\"mw3\",\"hentai\",\"halo\",\"magicTCG\",\"swtor\",\"SOPA\",\"anime\",\"IndieGaming\",\"Jokes\",\"wow\",\"Design\",\"Android\",\"GameDeals\",\"playitforward\",\"pokemon\",\"Clarinet\",\"festivals\",\"SubredditDrama\",\"InternetAMA\",\"aves\",\"cringe\",\"AmISexy\",\"electricdaisycarnival\",\"ForeverAlone\",\"RedHotChiliPeppers\",\"tifu\",\"civ\",\"gameofthrones\",\"explainlikeimfive\",\"soccer\",\"germany\",\"seduction\",\"circlebroke\",\"sto\",\"4chan\",\"circlejerk\",\"apple\",\"cats\",\"minimalism\",\"beermoney\",\"Frisson\",\"beertrade\",\"beer\",\"batman\",\"BBQ\",\"beerporn\",\"Homebrewing\",\"2012Elections\",\"Parenting\",\"fresno\",\"picrequests\",\"loseit\",\"Marriage\",\"Mommit\",\"VirginiaTech\",\"loseit_classic\",\"RedditLaqueristas\",\"LadyBoners\",\"GradSchool\",\"CalPoly\",\"Conservative\",\"toosoon\",\"dune\",\"caps\",\"MURICA\",\"Christianity\",\"scifi\",\"hockey\",\"StarWars\",\"worldpolitics\",\"NoFap\",\"malefashionadvice\",\"Military\",\"comicbooks\",\"AskWomen\",\"writing\",\"MensRights\",\"community\",\"ask\",\"sex\",\"Connecticut\",\"Favors\",\"fifthworldproblems\",\"keto\",\"BeardPorn\",\"FanTheories\",\"DebateAnAtheist\",\"ruby\",\"beards\",\"comics\",\"doctorwho\",\"firstworldproblems\",\"TheLastAirbender\",\"ladybonersgw\",\"AskMen\",\"homestuck\",\"custommagic\",\"DebateAChristian\",\"relationship_advice\",\"rpg\",\"tf2\",\"OneY\",\"DebateReligion\",\"nosleep\",\"buildapc\",\"frugalmalefashion\",\"buildapcsales\",\"thewalkingdead\",\"badcompany2\",\"personalfinance\",\"Dexter\",\"malelivingspace\",\"halloween\",\"buffy\",\"zombies\",\"horror\",\"GunPorn\",\"guns\",\"Firearms\",\"Tgirls\",\"Boobies\",\"reportthespammers\",\"redditrequest\",\"dirtysmall\",\"redheads\",\"grool\",\"ginger\",\"AnythingGoesPics\",\"modhelp\",\"cumsluts\",\"NSFW_GIF\",\"nsfwhardcore\",\"TinyTits\",\"thick\",\"progresspics\",\"IASIP\",\"tomhiddleston\",\"breakingbad\",\"MyChemicalRomance\",\"harrypotter\",\"Health\",\"shamelessplug\",\"LifeProTips\",\"tipofmytongue\",\"metalmusicians\",\"wicked_edge\",\"AbandonedPorn\",\"photography\",\"C25K\",\"HDR\",\"running\",\"Nirvana\",\"SkyPorn\",\"urbanexploration\",\"AskHistorians\",\"FloridaGators\",\"pearljam\",\"ireland\",\"AndroidQuestions\",\"baseball\",\"GNV\",\"fantasybaseball\",\"devils\",\"ufl\",\"sports\",\"AskPhotography\",\"redsox\",\"battlestations\",\"applehelp\",\"iphone\",\"AMA\",\"somethingimade\",\"ExpectationVsReality\",\"audiophile\",\"mildlyinteresting\",\"hometheater\",\"britishproblems\",\"cordcutters\",\"self\",\"techsupportgore\",\"techsupport\",\"xbox360\",\"ipad\",\"0x10c\",\"dbz\",\"forhire\",\"recordthis\",\"Diablo\",\"rpg_gamers\",\"Torchlight\",\"Sherlock\",\"netflix\",\"FinalFantasy\",\"coheedandcambria\",\"firefly\",\"digimon\",\"PS3\",\"FullmetalAlchemist\",\"ffxiv\",\"bleach\",\"webcomics\",\"yugioh\",\"sandy\",\"television\",\"redditcasual\",\"fantasyfootball\",\"jailbreak\",\"Invites\",\"letsplay\",\"SteamGifts\",\"freebies\",\"secretsanta\",\"nfl\",\"poppunkers\",\"RedditThroughHistory\",\"DoesAnybodyElse\",\"Rateme\",\"buccaneers\",\"GhettoJerk\",\"jacksonville\",\"olympics\",\"csshelp\",\"TrueAtheism\",\"Jaguars\",\"CHIBears\",\"RotMG\",\"Braveryjerk\",\"TheoryOfReddit\",\"amiugly\",\"deaf\",\"cannabis\",\"askscience\",\"Dallas\",\"evolution\",\"news\",\"texas\",\"Foodforthought\",\"Marijuana\",\"entertainment\",\"environment\",\"martialarts\",\"linguistics\",\"medicine\",\"cowboys\",\"medical\",\"science\",\"subaru\",\"BarefootRunning\",\"programming\",\"ragecomics\",\"mylittlepony\",\"falloutequestria\",\"MLPLounge\",\"mylittlelistentothis\",\"MyLittleSupportGroup\",\"mylittleandysonic1\",\"leagueoflegends\",\"PloungeMafia\",\"metacirclejerk\",\"ainbow\",\"Dogtraining\",\"Meditation\",\"Cascadia\",\"gaybros\",\"bicycling\",\"nottheonion\",\"whichbike\",\"travel\",\"bikecommuting\",\"dogs\",\"engineering\",\"duolingo\",\"Brazil\",\"bodyweightfitness\",\"QuotesPorn\",\"realasians\",\"TrueReddit\",\"Animesuggest\",\"Korean\",\"SteamTrade\",\"LearnUselessTalents\",\"InsightfulQuestions\",\"Documentaries\",\"Tokyo\",\"history\",\"photoshopbattles\",\"mac\",\"nyc\",\"Judaism\",\"WeAreTheMusicMakers\",\"lego\",\"occupywallstreet\",\"BuyItForLife\",\"socialism\",\"vinyl\",\"gamedev\",\"netsec\",\"Ubuntu\",\"linux\",\"drunk\",\"web_design\",\"PixelArt\",\"firefox\",\"Romania\",\"FIFA12\",\"OperationGrabAss\",\"FIFA\",\"EarthPorn\",\"shittyadvice\",\"reddevils\",\"exmormon\",\"firstworldanarchists\",\"Images\",\"Fallout\",\"RandomActsOfGaming\",\"HalfLife\",\"Makemeagif\",\"oregon\",\"EmmaWatson\",\"Piracy\",\"hcfactions\",\"gravityfalls\",\"HistoryPorn\",\"MineZ\",\"nanowrimo\",\"vexillology\",\"Dreams\",\"answers\",\"gaymers\",\"rant\",\"Paranormal\",\"asexuality\",\"fantasywriters\",\"depression\",\"memes\",\"gay\",\"Sonsofanarchy\",\"jobs\",\"agnostic\",\"Nerf\",\"reddeadredemption\",\"newjersey\",\"SquaredCircle\",\"gentlemanboners\",\"shittyaskscience\",\"FloridaTrees\",\"see\",\"cripplingalcoholism\",\"roosterteeth\",\"tall\",\"falcons\",\"Netherlands\",\"geology\",\"Acadiana\",\"electronicmusic\",\"POLITIC\",\"Amateur\",\"LegalTeens\",\"porn\",\"RealGirls\",\"gamingpc\",\"UVA\",\"wikipedia\",\"listentothis\",\"nba\",\"asmr\",\"Nationals\",\"geek\",\"Charlotte\",\"offbeat\",\"poker\",\"happy\",\"hiphopheads\",\"SteamGameSwap\",\"ColoradoSprings\",\"49ers\",\"HIMYM\",\"tf2trade\",\"runescape\",\"actuallesbians\",\"serbia\",\"UniversityofReddit\",\"lgbt\",\"dykesgonemild\",\"tax\",\"AskCulinary\",\"offmychest\",\"food\",\"KitchenConfidential\",\"kungfu\",\"childfree\",\"AskScienceFiction\",\"GuildWars\",\"Clemson\",\"reactiongifs\",\"Borderlands2\",\"SRSBusiness\",\"SRSMen\",\"Feminism\",\"SRSMeta\",\"EnoughPaulSpam\",\"opensource\",\"SRSMythos\",\"SRSDiscussion\",\"longboarding\",\"lifehacks\",\"lacrosse\",\"airsoft\",\"forwardsfromgrandma\",\"Offensive_Wallpapers\",\"Bioshock\",\"metalgearsolid\",\"Steam\",\"truetf2\",\"ronpaul\",\"TWD\",\"Internet_Box\",\"Yogscast\",\"simpleliving\",\"SkincareAddiction\",\"survivor\",\"dayz\",\"Chargers\",\"facepalm\",\"KingdomHearts\",\"diablo3\",\"eyes\",\"ukulele\",\"rap\",\"zelda\",\"NetflixBestOf\",\"codbo\",\"MMA\",\"VideoEditing\",\"blackops2\",\"Guitar\",\"shutupandtakemymoney\",\"audioengineering\",\"Filmmakers\",\"Cooking\",\"nintendo\",\"ragenovels\",\"Hungergames\",\"PandR\",\"52weeksofcooking\",\"gameswap\",\"alcohol\",\"venturebros\",\"awesome\",\"3DS\",\"iphonehelp\",\"PostHardcore\",\"microsoft\",\"CrusaderKings\",\"summonerschool\",\"LeagueOfMemes\",\"CircLoLjerk\",\"TeamRedditTeams\",\"ImGoingToHellForThis\",\"LadiesofScience\",\"MINI\",\"rangers\",\"GrandTheftAutoV\",\"xbmc\",\"DepthHub\",\"AlienBlue\",\"investing\",\"ladyladyboners\",\"taiwan\",\"education\",\"asoiaf\",\"Thetruthishere\",\"electronic_cigarette\",\"CarAV\",\"florida\",\"RageOfBahamut\",\"DealsReddit\",\"fantasybball\",\"minnesotavikings\",\"androidapps\",\"MorbidReality\",\"kateupton\",\"microgrowery\",\"eatsandwiches\",\"Buddhism\",\"oklahoma\",\"MMFB\",\"tulsa\",\"wallpaper\",\"Nepal\",\"piercing\",\"photoshop\",\"reptiles\",\"hardware\",\"flying\",\"Physics\",\"whatisthisthing\",\"WikiLeaks\",\"RealEstate\",\"Pennsylvania\",\"Pitt\",\"abletonlive\",\"law\",\"pittsburgh\",\"conspiracy\",\"bigboobproblems\",\"mangonewild\",\"gonewildcurvy\",\"bigdickproblems\",\"bdsm\",\"sooners\",\"Borderlands\",\"patientgamers\",\"SomebodyMakeThis\",\"estimation\",\"Punny\",\"AskSocialScience\",\"eCards\",\"subredditoftheday\",\"ShittyLifeProTips\",\"DestructionPorn\",\"sydney\",\"YouShouldKnow\",\"wallpapers\",\"legaladvice\",\"TrollXChromosomes\",\"SRSWomen\",\"MakeupAddiction\",\"girlsinyogapants\",\"feet\",\"booksuggestions\",\"mfw\",\"CelebFakes\",\"shittyadviceanimals\",\"stockings\",\"desktops\",\"voluptuous\",\"spacedicks\",\"nsfw_gifs\",\"milf\",\"gif\",\"WomenOfColor\",\"Celebs\",\"SilkRoad\",\"asktrees\",\"treemusic\",\"chiptunes\",\"drawing\",\"SF4\",\"gamemaker\",\"Vocaloid\",\"uktrees\",\"dataisbeautiful\",\"conspiratard\",\"languagelearning\",\"SRDBroke\",\"NeutralPolitics\",\"RedditDayOf\",\"circlebroke2\",\"trance\",\"Virginia\",\"MapPorn\",\"Gamingcirclejerk\",\"PoliticalDiscussion\",\"Colorado\",\"GreenParty\",\"EFLcomics\",\"CircleMusic\",\"reloading\",\"gats\",\"knives\",\"Trombone\",\"defaultgems\",\"JusticePorn\",\"TrueFilm\",\"moped\",\"BorderCollie\",\"islam\",\"minnesota\",\"Insurance\",\"oblivion\",\"anonymous\",\"dishonored\",\"discgolf\",\"literature\",\"Minneapolis\",\"stopsmoking\",\"NigelThornberry\",\"Planetside\",\"backpacking\",\"teenagers\",\"newreddits\",\"redditlogos\",\"deutschland\",\"ADHD\",\"OkCupid\",\"smnc\",\"SuicideWatch\",\"Diablo3Strategy\",\"trumpet\",\"Metalcore\",\"KSU\",\"Boxer\",\"ufc\",\"stlouisblues\",\"Fishing\",\"Pieces\",\"woahdude\",\"regularshow\",\"zen\",\"feminisms\",\"IWantToLearn\",\"nutrition\",\"BostonSocialClub\",\"BTFC\",\"adventuretime\",\"ClopClop\",\"pokemonconspiracies\",\"gamegrumps\",\"mylittlehuman\",\"Supernatural\",\"mlpmature\",\"manga\",\"OnePiece\",\"overclocking\",\"24hoursupport\",\"networking\",\"snackexchange\",\"pcmods\",\"Astronomy\",\"ITcrowd\",\"boltedontits\",\"Stacked\",\"palegirls\",\"GirlswithGlasses\",\"happygirls\",\"hugeboobs\",\"Hotchickswithtattoos\",\"suicidegirls\",\"MilitaryPorn\",\"KarmaConspiracy\",\"pussy\",\"Cinemagraphs\",\"asshole\",\"nsfwoutfits\",\"anal\",\"carcrash\",\"Blowjobs\",\"curvy\",\"burstingout\",\"PrettyGirls\",\"ideasfortheadmins\",\"GirlswithNeonHair\",\"randomsexiness\",\"datgap\",\"SexyButNotPorn\",\"bikinis\",\"shorthairedhotties\",\"watchpeopledie\",\"HighHeels\",\"HumanPorn\",\"AsianHotties\",\"camwhores\",\"HairyPussy\",\"Bondage\",\"BustyPetite\",\"electricians\",\"InternetIsBeautiful\",\"casualiama\",\"drums\",\"superman\",\"philosophy\",\"Anarchism\",\"DebateaCommunist\",\"HistoricalWhatIf\",\"Liberal\",\"communism\",\"DCcomics\",\"ifyoulikeblank\",\"introvert\",\"psychology\",\"totalwar\",\"Demotivational\",\"ExposurePorn\",\"spaceporn\",\"Poetry\",\"AmericanHorrorStory\",\"FifthWorldPics\",\"GifSound\",\"Slender_Man\",\"shortscarystories\",\"FearMe\",\"piano\",\"whatsthisbug\",\"creepypasta\",\"creepy_gif\",\"metametacirclejerk\",\"Drugs\",\"Psychonaut\",\"nursing\",\"catpictures\",\"nugs\",\"Anxiety\",\"orangecounty\",\"Scotch\",\"architecture\",\"steelers\",\"DAE\",\"mctourney\",\"Awesomenauts\",\"mindcrack\",\"Terraria\",\"GalaxyNexus\",\"talesfromtechsupport\",\"TalesFromRetail\",\"Stretched\",\"knitting\",\"fairytail\",\"singapore\",\"Bass\",\"AndroidGaming\",\"classicalmusic\",\"China\",\"beijing\",\"MachinePorn\",\"EngineeringStudents\",\"AdamCarolla\",\"DotA2\",\"HeroesofNewerth\",\"Dota2Trade\",\"snowboarding\",\"surfing\",\"Barca\",\"Tf2Scripts\",\"TF2fashionadvice\",\"NewToTF2\",\"nuzlocke\",\"bindingofisaac\",\"ents\",\"mflb\",\"treecomics\",\"StonerEngineering\",\"AskModerators\",\"GaybrosGoneWild\",\"kzoo\",\"GaymersGoneMild\",\"uofm\",\"gaybrosgonemild\",\"tumblr\",\"sad\",\"HIFW\",\"drawsome\",\"malehairadvice\",\"learnprogramming\",\"EDC\",\"learnmath\",\"math\",\"guineapigs\",\"evedreddit\",\"dayton\",\"eveporn\",\"Eve\",\"minerapocalypse\",\"dating_advice\",\"ps3bf3\",\"BostonTerrier\",\"corgi\",\"allrages\",\"greenday\",\"nostalgia\",\"davidtennant\",\"fnv\",\"Rockband\",\"MMORPG\",\"Civcraft\",\"chrome\",\"tekkit\",\"video\",\"windows\",\"climbing\",\"ShouldIbuythisgame\",\"futurama\",\"webdev\",\"Loans\",\"creepyPMs\",\"CastleStory\",\"Random_Acts_Of_Pizza\",\"Random_Acts_Of_Amazon\",\"minecraftsuggestions\",\"feedthebeast\",\"evolutionReddit\",\"women\",\"cogsci\",\"energy\",\"privacy\",\"Archaeology\",\"cyberlaws\",\"Bad_Cop_No_Donut\",\"southpaws\",\"Trucks\",\"paintball\",\"counterstrike\",\"3dsFCswap\",\"vita\",\"Anarcho_Capitalism\",\"PoliticalHumor\",\"Mastiff\",\"PropagandaPosters\",\"OldSchoolCool\",\"Archery\",\"masseffect\",\"GTA\",\"cheatatmathhomework\",\"Deathcore\",\"facebook\",\"iosgaming\",\"help\",\"Dredmor\",\"xbox\",\"AirForce\",\"findareddit\",\"roguelikes\",\"assassinscreed\",\"browsers\",\"steamdeals\",\"Tribes\",\"AppHookup\",\"whatstheword\",\"worldbuilding\",\"Screenwriting\",\"WritersGroup\",\"progmetal\",\"progrockmusic\",\"LosAngeles\",\"mcpublic\",\"Morrowind\",\"gwu\",\"capstone\",\"Kayaking\",\"skiing\",\"Msstate\",\"Saints\",\"TopGear\",\"mississippi\",\"Toyota\",\"motorcycles\",\"LawSchool\",\"golf\",\"Watches\",\"sportsbook\",\"coins\",\"randomactsofkindness\",\"dayzlfg\",\"redstone\",\"RedditRescueForce\",\"mylittlefortress\",\"TF2LFT\",\"pkmntcg\",\"polandball\",\"Supplements\",\"INTP\",\"Hawken\",\"Assistance\",\"BPD\",\"LucidDreaming\",\"MinecraftCirclejerk\",\"GiftofGames\",\"l4d2\",\"spongebob\",\"HardcoreSMP\",\"StonerProTips\",\"glassheads\",\"bmx\",\"CannabisExtracts\",\"lostgeneration\",\"occult\",\"WhiteRights\",\"collapse\",\"overpopulation\",\"new_right\",\"softscience\",\"genetics\",\"conservatives\",\"sailormoon\",\"rupaulsdragrace\",\"yankees\",\"ween\",\"familyguy\",\"Lubbock\",\"youtubehaiku\",\"JoeRogan\",\"BlackMesaSource\",\"AFL\",\"ImaginaryLandscapes\",\"NBA2k\",\"indianapolis\",\"aviation\",\"Colorization\",\"misc\",\"CrazyIdeas\",\"PerfectTiming\",\"test\",\"ArtPorn\",\"botany\",\"pic\",\"whatsthisplant\",\"species\",\"DesignPorn\",\"BotanicalPorn\",\"RoomPorn\",\"waterporn\",\"AdPorn\",\"VietNam\",\"MacroPorn\",\"Awww\",\"VillagePorn\",\"CemeteryPorn\",\"InfrastructurePorn\",\"birdpics\",\"InteriorDesign\",\"herpetology\",\"fashion\",\"hinduism\",\"ArchitecturePorn\",\"AnimalPorn\",\"Ska\",\"Denton\",\"IDAP\",\"punk\",\"FortWorth\",\"metanarchism\",\"TheFacebookDelusion\",\"gaybears\",\"quotes\",\"acne\",\"UIUC\",\"actuary\",\"GeekTool\",\"ainbowdash\",\"violinist\",\"HomeworkHelp\",\"Gunners\",\"AllThingsTerran\",\"hardwareswap\",\"trapmuzik\",\"askminecraft\",\"Hiphopcirclejerk\",\"KingOfTheHill\",\"Frat\",\"dolan\",\"latin\",\"arabic\",\"Lawrence\",\"IndieFolk\",\"CollegeBasketball\",\"UniversityofKansas\",\"Modern_Family\",\"Moviesinthemaking\",\"ArianaGrande\",\"starlets\",\"JenniferLawrence\",\"Rift\",\"chemistry\",\"animenocontext\",\"9gag\",\"Instagram\",\"OpiatesRecovery\",\"REDDITORSINRECOVERY\",\"Etsy\",\"Graffiti\",\"showerbeer\",\"Dodge\",\"cableporn\",\"GlobalOffensive\",\"workaholics\",\"insects\",\"nexus4\",\"PokePorn\",\"peloton\",\"firewater\",\"Charcuterie\",\"triathlon\",\"195\",\"Maplestory\",\"pinkfloyd\",\"omegle\",\"FixedGearBicycle\",\"yiff\",\"Scrubs\",\"videography\",\"r4r\",\"tattoo\",\"classicrage\",\"operabrowser\",\"confession\",\"mississauga\",\"trailerparkboys\",\"ryerson\",\"argentina\",\"awwnime\",\"katawashoujo\",\"atheistvids\",\"lists\",\"Bundesliga\",\"Enhancement\",\"Owls\",\"lectures\",\"StandUpComedy\",\"Art\",\"Rammstein\",\"LANL_German\",\"windowshots\",\"MetalMemes\",\"berlin\",\"KerbalSpaceProgram\",\"hawkthorne\",\"lol\",\"hotties\",\"nsfw_wtf\",\"Faces\",\"Upskirt\",\"NSFWFunny\",\"spiders\",\"MLPdrawingschool\",\"AntiJokes\",\"scaredshitless\",\"shittyreactiongifs\",\"Michigan\",\"ModestMouse\",\"detroitlions\",\"mlb\",\"AnimalCrossing\",\"powerrangers\",\"supermoto\",\"Dualsport\",\"250r\",\"bikesgonewild\",\"minnesotatwins\",\"pornvids\",\"Redskins\",\"cigars\",\"LasVegas\",\"bostonceltics\",\"lotro\",\"truezelda\",\"datfeel\",\"skeptic\",\"religion\",\"AusFinance\",\"humanism\",\"GalaxyS3\",\"MtAugusta\",\"CivcraftExchange\",\"PostCollapse\",\"Catholicism\",\"TheSimpsons\",\"stopdrinking\",\"chillmusic\",\"needadvice\",\"ASU\",\"findfashion\",\"femalefashionadvice\",\"FancyFollicles\",\"GetEmployed\",\"Advice\",\"woodworking\",\"recipes\",\"auslaw\",\"hookah\",\"Cubs\",\"Pizza\",\"Breadit\",\"macsetups\",\"Dentistry\",\"wsu\",\"college\",\"ZombieSurvivalTactics\",\"Hunting\",\"southpark\",\"LaTeX\",\"bleachshirts\",\"nook\",\"cosplay\",\"DaftPunk\",\"ouya\",\"papercraft\",\"Playdate\",\"valve\",\"RandomKindness\",\"beatles\",\"ILiveIn\",\"folk\",\"urbanplanning\",\"Anthropology\",\"Bluegrass\",\"museum\",\"germanshepherds\",\"hiking\",\"askashittydoctor\",\"Indiana\",\"gratefuldead\",\"medicalschool\",\"Gwinnett\",\"GreenBayPackers\",\"nflcirclejerk\",\"askseddit\",\"treesgonewild\",\"cmu\",\"vaporents\",\"EmmaStone\",\"nyjets\",\"Portal\",\"androidthemes\",\"progressive\",\"DnD\",\"elianscript\",\"chicagotrees\",\"MovieSuggestions\",\"chicagoEDM\",\"aggies\",\"radiohead\",\"vegan\",\"dvdcollection\",\"askphilosophy\",\"triangle\",\"SRSFunny\",\"korea\",\"NCSU\",\"SRSMailbag\",\"Freethought\",\"sixwordstories\",\"graphic_design\",\"labor\",\"humor\",\"calvinandhobbes\",\"GaryJohnson\",\"bigbangtheory\",\"FilmIndustryLA\",\"boardgames\",\"ArtisanVideos\",\"gamecollecting\",\"3Dprinting\",\"analog\",\"CableManagement\",\"Massdrop\",\"lfg\",\"AskEngineers\",\"Xcom\",\"SpideyMeme\",\"LongboardBuilding\",\"Omaha\",\"arresteddevelopment\",\"psych\",\"lost\",\"InlandEmpire\",\"Glocks\",\"JRPG\",\"modclub\",\"gamemusic\",\"redditdev\",\"IndianaUniversity\",\"nova\",\"Entrepreneur\",\"orlando\",\"TexasRangers\",\"motorcitykitties\",\"Patriots\",\"Romney\",\"whitesox\",\"media\",\"eagles\",\"autism\",\"nhl\",\"economy\",\"weather\",\"obama\",\"CAKEWIN\",\"TimAndEric\",\"truecreepy\",\"rule34\",\"LearnJapanese\",\"photocritique\",\"bioinformatics\",\"maryland\",\"gamereviews\",\"GeekPorn\",\"crossdressing\",\"Madden\",\"DragonsDogma\",\"southafrica\",\"geocaching\",\"seinfeld\",\"kitchener\",\"Hair\",\"CampingandHiking\",\"Food_Pantry\",\"flash\",\"javascript\",\"metacanada\",\"BSG\",\"twincitiessocial\",\"til\",\"souleater\",\"Naruto\",\"buildapcforme\",\"aoe2\",\"Bacon\",\"PipeTobacco\",\"notinteresting\",\"nature\",\"wisconsin\",\"femmit\",\"democrats\",\"Baking\",\"Firefighting\",\"daddit\",\"mashups\",\"Aquariums\",\"olympia\",\"Libraries\",\"alcoholism\",\"homestead\",\"memphis\",\"UFOs\",\"UofT\",\"exmuslim\",\"OneParagraph\",\"BooksAMA\",\"GuessTheMovie\",\"Stargate\",\"Python\",\"PHP\",\"Coldplay\",\"WebGames\",\"Glitch_in_the_Matrix\",\"ftlgame\",\"Dublin\",\"okc\",\"origami\",\"comicswap\",\"skyrimmods\",\"nfffffffluuuuuuuuuuuu\",\"OFWGKTA\",\"buccos\",\"ImaginaryTechnology\",\"rockhounds\",\"Edmonton\",\"AdrenalinePorn\",\"fitnesscirclejerk\",\"Wordpress\",\"DenverBroncos\",\"hardbodies\",\"crossfit\",\"skateboarding\",\"curiosityrover\",\"climate\",\"Ultralight\",\"Hammocks\",\"Bushcraft\",\"AppalachianTrail\",\"Outdoors\",\"camping\",\"Survival\",\"Futurology\",\"Hawaii\",\"TinyHouses\",\"futurebeats\",\"futuregarage\",\"realdubstep\",\"admincraft\",\"hacking\",\"EDM\",\"Beatmatch\",\"relationship_tips\",\"Gaben\",\"DJs\",\"ihaveissues\",\"xxfitness\",\"Standup\",\"NewOrleans\",\"Lovecraft\",\"whoselineisitanyway\",\"Northwestern\",\"StanleyKubrick\",\"learnspanish\",\"software\",\"vegetarian\",\"AnythingGoesUltimate\",\"Ebay\",\"budgetfood\",\"Songwriters\",\"EA_NHL\",\"banana\",\"MultipleSclerosis\",\"BMW\",\"Audi\",\"fringe\",\"bristol\",\"typography\",\"design_critiques\",\"CrappyDesign\",\"gonewildaudio\",\"beagle\",\"penpals\",\"RandomActsOfPolish\",\"Ladybonersgonecuddly\",\"GoneWildPlus\",\"LeagueofLegendsMeta\",\"SkyrimPorn\",\"BabyBumps\",\"juicyasians\",\"nocontext\",\"Norway\",\"chemicalreactiongifs\",\"ontario\",\"Bonsai\",\"leafs\",\"PictureChallenge\",\"RESissues\",\"dubai\",\"graphicnovels\",\"melodicdeathmetal\",\"excel\",\"nashville\",\"DetroitRedWings\",\"stalker\",\"linux4noobs\",\"archlinux\",\"slowcooking\",\"gardening\",\"whatsthisbird\",\"EndlessWar\",\"DnB\",\"futurefunkairlines\",\"Techno\",\"House\",\"comedy\",\"intj\",\"rapecounseling\",\"Berserk\",\"mysterybox\",\"opieandanthony\",\"wilfred\",\"LiveFromNewYork\",\"Darts\",\"Finland\",\"tea\",\"Foofighters\",\"shreveport\",\"shittyaskreddit\",\"magicskyfairy\",\"MachineLearning\",\"greece\",\"Boxing\",\"Dodgers\",\"SFGiants\",\"Cardinals\",\"Braves\",\"firefall\",\"spiral_knights\",\"UCSC\",\"leaves\",\"nongolfers\",\"deism\",\"Nootropics\",\"premed\",\"popping\",\"CanadianForces\",\"russia\",\"blender\",\"ImaginaryMonsters\",\"biology\",\"ActionFigures\",\"PlantedTank\",\"Augusta\",\"GaState\",\"electrohouse\",\"postrock\",\"greenville\",\"geography\",\"warriors\",\"fcbayern\",\"Munich\",\"Equality\",\"NBASpurs\",\"Vegetarianism\",\"Miami\",\"tasker\",\"reddit_news\",\"htpc\",\"asustransformer\",\"Minecraft360\",\"highseddit\",\"DumpsterDiving\",\"lockpicking\",\"torrents\",\"PowerShell\",\"sysadmin\",\"homelab\",\"financialindependence\",\"SolidWorks\",\"SocialEngineering\",\"everymanshouldknow\",\"NotaMethAddict\",\"Basketball\",\"chess\",\"Database\",\"mandolin\",\"ar15\",\"fountainpens\",\"Nexus7\",\"neopets\",\"nin\",\"fasting\",\"rickygervais\",\"Rabbits\",\"AskGames\",\"shittyfoodporn\",\"radioreddit\",\"firstimpression\",\"thesims\",\"bostontrees\",\"saplings\",\"KansasCityChiefs\",\"kansascity\",\"baldursgate\",\"mylittlefanfic\",\"MW2\",\"CallOfDuty\",\"bonnaroo\",\"jhu\",\"teslore\",\"LongDistance\",\"iiiiiiitttttttttttt\",\"SaltLakeCity\",\"AnythingGoesNews\",\"Bikeporn\",\"AskAcademia\",\"Velo\",\"ads\",\"BicyclingCirclejerk\",\"shittingadvice\",\"ToolBand\",\"shroomers\",\"Floridar4r\",\"gonewildstories\",\"baconreader\",\"headphones\",\"RedditLaqueristaSwap\",\"antisrs\",\"BoardwalkEmpire\",\"EnoughLibertarianSpam\",\"oaklandraiders\",\"GearsOfWar\",\"pitbulls\",\"shittyama\",\"Shatter\",\"lakers\",\"Coffee\",\"steampunk\",\"whiskey\",\"experimentalmusic\",\"bayarea\",\"animation\",\"GirlGamers\",\"UCI\",\"comiccon\",\"meetup\",\"SRSGaming\",\"longrange\",\"UTAustin\",\"RioGrandeValley\",\"sanantonio\",\"chillstep\",\"microbiology\",\"labrats\",\"HailCorporate\",\"leangains\",\"rage\",\"Bitcoin\",\"malelifestyle\",\"finance\",\"Teachers\",\"iran\",\"rush\",\"stocks\",\"britishcolumbia\",\"eldertrees\",\"google\",\"hiphop\",\"Fantasy\",\"EnoughObamaSpam\",\"CanadaPolitics\",\"Green\",\"youtube\",\"TechNewsToday\",\"AskFeminists\",\"DippingTobacco\",\"sailing\",\"TrueBlood\",\"LSD\",\"DJSetups\",\"DJsCirclejerk\",\"GreekLife\",\"d3loot\",\"shanghai\",\"chinacirclejerk\",\"kpop\",\"Pareidolia\",\"DunderMifflin\",\"disney\",\"Charleston\",\"OnOff\",\"EDH\",\"UBC\",\"darknetplan\",\"AskACountry\",\"MLS\",\"udub\",\"ultimate\",\"DeadSpace\",\"doodleordie\",\"terriblefacebookmemes\",\"wii\",\"pickle\",\"Switzerland\",\"wedding\",\"AfterEffects\",\"linuxquestions\",\"computing\",\"gamingnews\",\"LoLCodeTrade\",\"scooters\",\"Smite\",\"longbeach\",\"California\",\"Adelaide\",\"ptsd\",\"ChronicPain\",\"alltheleft\",\"AmericanPolitics\",\"MMJ\",\"selfhelp\",\"makeupexchange\",\"Reformed\",\"spotify\",\"milwaukee\",\"farming\",\"revolutionNBC\",\"entwives\",\"FolkPunk\",\"Sprint\",\"SantaBarbara\",\"SDSU\",\"arduino\",\"AnimalRights\",\"Magic\",\"MontrealEnts\",\"computergraphics\",\"barefoot\",\"Volvo\",\"SlenderMan\",\"lds\",\"transhumanism\",\"Pottermore\",\"uwaterloo\",\"newhampshire\",\"ripcity\",\"Seahawks\",\"drupal\",\"eastside\",\"prowrestling\",\"tampabayrays\",\"wrestling\",\"moderatepolitics\",\"arizona\",\"Honda\",\"katyperry\",\"NASCAR\",\"Arkansas\",\"cad\",\"MechanicAdvice\",\"fixit\",\"ElPaso\",\"phoenix\",\"MTB\",\"unicycling\",\"Shortfilms\",\"howardstern\",\"acting\",\"Astros\",\"Texans\",\"beadsprites\",\"PenmanshipPorn\",\"earthbound\",\"AZCardinals\",\"UpliftingNews\",\"java\",\"cedarrapids\",\"drunkencookery\",\"modelmakers\",\"printSF\",\"crappymusic\",\"Transhuman\",\"robotics\",\"chomsky\",\"singularity\",\"SWORDS\",\"killingfloor\",\"customization\",\"GuildWarsDyeJob\",\"Toonami\",\"navy\",\"UCSD\",\"911truth\",\"editors\",\"prisonarchitect\",\"oculus\",\"windowsphone\",\"htc\",\"tightdresses\",\"consolerepair\",\"UGA\",\"guitarpedals\",\"WorldofTanks\",\"Thenewsroom\",\"movieclub\",\"startups\",\"allthingsprotoss\",\"starcraft_strategy\",\"SEO\",\"craigslist\",\"compsci\",\"spaceribs\",\"PSO2\",\"Gore\",\"soccercirclejerk\",\"country\",\"OaklandAthletics\",\"Hardcore\",\"liquiddnb\",\"90sHipHop\",\"classicfilms\",\"FL_Studio\",\"counter_strike\",\"edmproduction\",\"ThisIsOurMusic\",\"arma\",\"gmod\",\"makinghiphop\",\"trap\",\"windows8\",\"ArcherFX\",\"wheredidthesodago\",\"barista\",\"TheWarZ\",\"gamesell\",\"chelseafc\",\"tonightsdinner\",\"portugal\",\"treedibles\",\"Learnmusic\",\"postprocessing\",\"DeepSpaceNine\",\"bikewrench\",\"Brooklyn\",\"redditgetsdrawn\",\"longisland\",\"transpassing\",\"Proofreading\",\"ineedafavor\",\"REDDITEXCHANGE\",\"ITdept\",\"bipolar\",\"newfoundland\",\"SkyDiving\",\"weightroom\",\"DessertPorn\",\"bettafish\",\"P90X\",\"deadpool\",\"goldenretrievers\",\"spirituality\",\"cardfightvanguard\",\"AnimeFigures\",\"malaysia\",\"opiates\",\"askdrugs\",\"MobileAL\",\"howyoudoin\",\"alberta\",\"transit\",\"tacos\",\"musicians\",\"Jazz\",\"relationshipadvice\",\"Heavymind\",\"NYCbike\",\"trailers\",\"kickstarter\",\"astrophotography\",\"FortCollins\",\"Tekken\",\"paris\",\"poland\",\"synthesizers\",\"homeland\",\"proghouse\",\"hardstyle\",\"Slackline\",\"chemhelp\",\"cuboulder\",\"norge\",\"SFM\",\"bakchodi\",\"Purdue\",\"AnnArbor\",\"LV426\",\"ArtCrit\",\"explainlikeimjive\",\"csharp\",\"ShittyTechSupport\",\"fitmeals\",\"raisingkids\",\"vertical\",\"WWE\",\"Theatre\",\"Pottery\",\"CFL\",\"solotravel\",\"VegRecipes\",\"ems\",\"airsoftmarket\",\"redditblack\",\"teaching\",\"rotmgtradingpost\",\"VinylCollectors\",\"nyu\",\"LetsTalkMusic\",\"commandline\",\"Horses\",\"worstof\",\"fantasyfb\",\"LibertarianDebates\",\"dominion\",\"ShitPoliticsSays\",\"LeagueOfGiving\",\"timberwolves\",\"SNSD\",\"BL2Guns\",\"AsianLadyboners\",\"kpics\",\"HermitCraft\",\"nerdfighters\",\"meme\",\"Pets\",\"Columbus\",\"TheDarkTower\",\"stephenking\",\"mildlyinfuriating\",\"Alienware\",\"scuba\",\"MedalofHonor\",\"disability\",\"aspergers\",\"Occupy\",\"coversongs\",\"WestVirginia\",\"shakespeare\",\"learnpython\",\"bookexchange\",\"Boise\",\"MonsterHunter\",\"pathofexile\",\"uncharted\",\"Cricket\",\"ForeverAloneDating\",\"gopro\",\"forza\",\"industrialmusic\",\"wtfart\",\"howto\",\"ImaginaryCharacters\",\"es\",\"Diablo3Wizards\",\"LARP\",\"grammar\",\"futurepopmusic\",\"ShittyEarthPorn\",\"glitch_art\",\"badMovies\",\"snes\",\"ObscureMedia\",\"pinball\",\"MoviePosterPorn\",\"ecchi\",\"londonontario\",\"uspolitics\",\"SampleSize\",\"FlashGames\",\"classic4chan\",\"HVAC\",\"gallifreyan\",\"pebble\",\"Cyberpunk\",\"statistics\",\"youngatheists\",\"dwarffortress\",\"computers\",\"crafts\",\"castles\",\"minecraftseeds\",\"Palestine\",\"timbers\",\"Pokemongiveaway\",\"pokemontrades\",\"TreesFortress2\",\"deadmau5\",\"knifeparty\",\"skrillex\",\"BlackAtheism\",\"merchents\",\"MLPvectors\",\"Reprap\",\"UMD\",\"PhilosophyofScience\",\"grunge\",\"AcademicPhilosophy\",\"ArtHistory\",\"Stoicism\",\"Scholar\",\"sociology\",\"ancientrome\",\"truthfulteenopinions\",\"Unity3D\",\"tennis\",\"Blink182\",\"ProtectAndServe\",\"lotr\",\"NZTrees\",\"timetolegalize\",\"taekwondo\",\"onetruegod\",\"Marvel\",\"SLO\",\"kindle\",\"berkeley\",\"needamod\",\"LetsNotMeet\",\"parrots\",\"ThriftStoreHauls\",\"serialkillers\",\"Tempe\",\"WWU\",\"Bellingham\",\"SoundersFC\",\"Eugene\",\"GreenDawn\",\"KingkillerChronicle\",\"MechanicalKeyboards\",\"emacs\",\"linux_gaming\",\"politicalfactchecking\",\"perl\",\"xkcd\",\"jquery\",\"csun\",\"exchristian\",\"Thailand\",\"googleplus\",\"italy\",\"it\",\"bloomington\",\"TransSpace\",\"asktransgender\",\"transgamers\",\"dresdenfiles\",\"Magicdeckbuilding\",\"genderqueer\",\"couchsurfing\",\"transgender\",\"mead\",\"chicagofood\",\"torontoraptors\",\"chicagobulls\",\"bicycletouring\",\"lowcar\",\"Torontoevents\",\"DOTA\",\"textpals\",\"dykesgonewild\",\"dirtypenpals\",\"Dachshund\",\"jmu\",\"shrooms\",\"DrugNerds\",\"chubby\",\"government\",\"Alabama\",\"dating\",\"fsu\",\"kol\",\"diabetes\",\"asoiafcirclejerk\",\"madmen\",\"Zappa\",\"KDRAMA\",\"resumes\",\"glutenfree\",\"Fibromyalgia\",\"Vindictus\",\"PocketPlanes\",\"chicagobeer\",\"MvC3\",\"gonenatural\",\"NSFWIAMA\",\"marchingband\",\"Cumberbitches\",\"django\",\"appletv\",\"Sexy\",\"NYGiants\",\"wine\",\"NewYorkMets\",\"NYKnicks\",\"HuntsvilleAlabama\",\"Winnipeg\",\"Spiderman\",\"aSongOfMemesAndRage\",\"electronics\",\"consulting\",\"neuroscience\",\"PastAndPresentPics\",\"snakes\",\"Colombia\",\"Transmogrification\",\"LSU\",\"batonrouge\",\"malegrooming\",\"japanese\",\"AdventureRacing\",\"Huskers\",\"USMC\",\"TeenMFA\",\"socialskills\",\"WoT\",\"starcraft2\",\"marketing\",\"whedon\",\"Forex\",\"socialmedia\",\"TalesFromThePizzaGuy\",\"USNEWS\",\"worldevents\",\"Animals\",\"Kentucky\",\"androiddev\",\"OSU\",\"logophilia\",\"exjw\",\"MECoOp\",\"Militaryfaq\",\"northernireland\",\"ravens\",\"barter\",\"castit\",\"RenewableEnergy\",\"Veterans\",\"BSD\",\"ScotchSwap\",\"ChemicalEngineering\",\"Anticonsumption\",\"BurningMan\",\"Pokemonexchange\",\"aerospace\",\"massage\",\"SRSFeminism\",\"SRSMusic\",\"SRSGSM\",\"coys\",\"RedDwarf\",\"shortstories\",\"dreamcast\",\"mathrock\",\"cyclocross\",\"VictoriaBC\",\"29er\",\"timelapse\",\"HongKong\",\"furry\",\"gaaaaaaayyyyyyyyyyyy\",\"Canning\",\"pakistan\",\"GirlTalk\",\"OCD\",\"ffxi\",\"SaintsRow\",\"nasa\",\"BabyExchange\",\"TRADE\",\"clothdiaps\",\"beyondthebump\",\"aaaaaatheismmmmmmmmmm\",\"Cuckold\",\"wowscrolls\",\"niggers\",\"mazda\",\"bestofworldstar\",\"footballmanagergames\",\"RATS\",\"ecigclassifieds\",\"RBA\",\"CompanyOfHeroes\",\"MST3K\",\"moviecritic\",\"AnarchistNews\",\"racism\",\"SimCity\",\"Sidehugs\",\"straightedge\",\"RadicalChristianity\",\"mycology\",\"alaska\",\"suits\",\"rct\",\"reddithax\",\"musictheory\",\"Luthier\",\"TestOutfit\",\"darksoulsbuilds\",\"DarkSoulsHelp\",\"PlayStationPlus\",\"UCDavis\",\"indie_rock\",\"secretpalace\",\"gorillaz\",\"musicpics\",\"goldredditsays\",\"paydaytheheist\",\"Accounting\",\"BHMGoneWild\",\"tolkienfans\",\"nextdoorasians\",\"DoctorWhumour\",\"Torchwood\",\"podcasts\",\"cute\",\"pugs\",\"TheHobbit\",\"theoffice\",\"Avengers\",\"HorseMask\",\"mythbusters\",\"arrow\",\"pokemonteams\",\"Brostep\",\"moombahton\",\"newcastle\",\"realmadrid\",\"weightlifting\",\"AskHistory\",\"swoleacceptance\",\"Liftingmusic\",\"Reds\",\"madisonwi\",\"Deathmetal\",\"GraphicDesign\",\"rescuedogs\",\"shiba\",\"lincoln\",\"adultswim\",\"streetart\",\"HomestarRunner\",\"speedrun\",\"Chefit\",\"freelance\",\"nonprofit\",\"HoustonSocials\",\"redditisland\",\"AlbumArtPorn\",\"Porsche\",\"drumcorps\",\"fastfood\",\"Themepark\",\"polyamory\",\"chesthairporn\",\"LGBTrees\",\"veganrecipes\",\"alpinism\",\"Cello\",\"BlackMetal\",\"HeadBangToThis\",\"bapcsalescanada\",\"BritishTV\",\"blackberry\",\"Tennessee\",\"againstmensrights\",\"SRSsucks\",\"TaylorSwift\",\"FreeKarma\",\"BigBrother\",\"tipofmypenis\",\"pornID\",\"GirlsFinishingTheJob\",\"Unashamed\",\"bisexual\",\"baduk\",\"ggggg\",\"labrador\",\"Louisiana\",\"MetalPorn\",\"NewSkaters\",\"southcarolina\",\"AskPhysics\",\"sabres\",\"Cleveland\",\"Buffalo\",\"ccna\",\"tablets\",\"computertechs\",\"ServerPorn\",\"sewing\",\"Plumbing\",\"Hungercraft\",\"guitarlessons\",\"circlejerkcopypasta\",\"glee\",\"craftit\",\"mylittlealcoholic\",\"gallopfrey\",\"camaro\",\"youtubecomments\",\"smoking\",\"ChineseLanguage\",\"ns2\",\"Gunpla\",\"saab\",\"classiccars\",\"Miata\",\"Habs\",\"angelsbaseball\",\"nope\",\"halifax\",\"French\",\"russian\",\"TEFL\",\"ebooks\",\"FantasyPL\",\"Warhammer\",\"oakland\",\"coding\",\"ShinyPokemon\",\"MinecraftInventions\",\"venturacounty\",\"ScenesFromAHat\",\"bourbon\",\"touchpad\",\"bartenders\",\"OKState\",\"D3T\",\"Wales\",\"mixes\",\"ducks\",\"SanJoseSharks\",\"techtheatre\",\"Suomi\",\"Nordiccountries\",\"facebookwins\",\"inthenews\",\"predaddit\",\"Fifa13\",\"Austria\",\"audio\",\"EA_FIFA\",\"TheWayWeWere\",\"WarshipPorn\",\"StockMarket\",\"Zune\",\"Muse\",\"jerseycity\",\"doommetal\",\"dayztrade\",\"Pathfinder_RPG\",\"SpecArt\",\"ios\",\"iWallpaper\",\"discworld\",\"Tucson\",\"UofArizona\",\"auto\",\"norfolk\",\"PAX\",\"Flyers\",\"Torontobluejays\",\"homedefense\",\"tabletopgamedesign\",\"Volkswagen\",\"photomarket\",\"pokemonrng\",\"ketorecipes\",\"fortlauderdale\",\"socialanxiety\",\"AlisonBrie\",\"alternativeart\",\"canucks\",\"Twitter\",\"raspberry_pi\",\"Fedora\",\"bjj\",\"d3hardcore\",\"allthingszerg\",\"VolleyballGirls\",\"ScottPilgrim\",\"indie\",\"RBI\",\"LiverpoolFC\",\"providence\",\"RhodeIsland\",\"opera\",\"beauty\",\"technicpack\",\"humansvszombies\",\"rit\",\"MetaHub\",\"transtimelines\",\"vermont\",\"burlington\",\"cscareerquestions\",\"hoggit\",\"Welding\",\"PennStateUniversity\",\"neuro\",\"BreakUps\",\"UTK\",\"buffalobills\",\"Rowing\",\"AskNYC\",\"puzzles\",\"sharedota2\",\"Gothenburg\",\"AGOTBoardGame\",\"atheismplus\",\"Parkour\",\"slashdiablo\",\"SouthDakota\",\"mturk\",\"HITsWorthTurkingFor\",\"kindlefire\",\"gis\",\"eu3\",\"warehouse13\",\"jpop\",\"Cyberpunk_Music\",\"birding\",\"Birmingham\",\"Djent\",\"spain\",\"england\",\"Maps\",\"Iceland\",\"Scotland\",\"Amsterdam\",\"Infographics\",\"Washington\",\"spaceflight\",\"trains\",\"massachusetts\",\"Utah\",\"residentevil\",\"DMB\",\"belgium\",\"ForeignMovies\",\"mountandblade\",\"springfieldMO\",\"socialwork\",\"centralpa\",\"TheVampireDiaries\",\"TechnicalDeathMetal\",\"Antitheism\",\"Munchkin\",\"breastfeeding\",\"DeadBedrooms\",\"Spokane\",\"MCPE\",\"Broadway\",\"MuayThai\",\"WouldYouRather\",\"cardsagainsthumanity\",\"OnceUponATime\",\"guildwars2funny\",\"sticker\",\"blackgirls\",\"Bombing\",\"Chihuahua\",\"PSP\",\"BobsBurgers\",\"retrogameswap\",\"Punk_Rock\",\"Anarchy101\",\"Norse\",\"meat\",\"ForeverAloneWomen\",\"Deusex\",\"singing\",\"spikes\",\"TallMeetTall\",\"Sneakers\",\"peacecorps\",\"thewestwing\",\"productivity\",\"linuxmint\",\"farcry\",\"Pictures\",\"Radiology\",\"rally\",\"ultrahardcore\",\"futureporn\",\"EnterShikari\",\"rollercoasters\",\"usenet\",\"infj\",\"auburn\",\"dungeondefenders\",\"StPetersburgFL\",\"karate\",\"MyLittleFriends\",\"Mylittlenosleep\",\"Knoxville\",\"GT5\",\"webhosting\",\"spicy\",\"lonely\",\"togetheralone\",\"phillies\",\"RandomActsOfPizza\",\"army\",\"pagan\",\"MCFC\",\"DrawForMe\",\"StLouisRams\",\"Synesthesia\",\"portlandstate\",\"Swimming\",\"marvelstudios\",\"ABraThatFits\",\"tf2memes\",\"bookporn\",\"2006Scape\",\"LoLFanArt\",\"reggae\",\"trippy\",\"penguins\",\"GODZILLA\",\"flatcore\",\"30ROCK\",\"lightshow\",\"ableton\",\"futurebeatproducers\",\"cocaine\",\"paradoxplaza\",\"mtgcube\",\"TheWire\",\"chuck\",\"Entomology\",\"wiiu\",\"TrueAskReddit\",\"Shitstatistssay\",\"austrian_economics\",\"BikingATX\",\"idm\",\"gallifrey\",\"advertising\",\"standupshots\",\"KingstonOntario\",\"libertarianmeme\",\"keyboards\",\"UMF\",\"listentous\",\"html5\",\"pug\",\"Hedgehog\",\"Daww\",\"rollerderby\",\"boulder\",\"tardcat\",\"witcher\",\"ColorBlind\",\"emulation\",\"hackintosh\",\"css\",\"newhaven\",\"xxketo\",\"toycameras\",\"DesktopDetective\",\"MvMatchup\",\"Warhammer40k\",\"HPMOR\",\"BipolarReddit\",\"costa_rica\",\"desmoines\",\"altrap\",\"diyaudio\",\"kratom\",\"climateskeptics\",\"Bowling\",\"RPI\",\"taoism\",\"RepublicOfMusic\",\"Weird\",\"athiesm\",\"SanJose\",\"AdviceAtheists\",\"ponypapers\",\"Idliketobeatree\",\"Psybient\",\"ambientmusic\",\"psytrance\",\"Battlefield\",\"TheDarkKnightRises\",\"KitSwap\",\"hypotheticalsituation\",\"ECE\",\"AskElectronics\",\"EngineeringPorn\",\"Spider_Man\",\"groovesharkplaylists\",\"Barcelona\",\"LoLChampConcepts\",\"houstonents\",\"gaymersgonewild\",\"doublebass\",\"gggg\",\"confessions\",\"DontPanic\",\"Edinburgh\",\"D3AH\",\"rccars\",\"radiocontrol\",\"msu\",\"awwwtf\",\"Blacksmith\",\"EmoScreamo\",\"Objectivism\",\"oliviawilde\",\"ghibli\",\"sheffield\",\"BurnNotice\",\"DowntonAbbey\",\"Hypothyroidism\",\"TheKillers\",\"supremeclothing\",\"Trichsters\",\"cancer\",\"chile\",\"brandnew\",\"NZXT\",\"Antiques\",\"ParallelWorldProblems\",\"mfacirclejerk\",\"SCP\",\"stencils\",\"TheSecretWorld\",\"passionx\",\"starbucks\",\"stunfisk\",\"KeepWriting\",\"Tobacco\",\"Dreamtheater\",\"Christian\",\"prolife\",\"Inglip\",\"LinkinPark\",\"smokerslounge\",\"faimprovement\",\"hawks\",\"Metroid\",\"Whatisthis\",\"Genealogy\",\"ColoradoAvalanche\",\"dxm\",\"macgaming\",\"Petloss\",\"crochet\",\"creepygaming\",\"smashbros\",\"Tulpas\",\"lowendgaming\",\"ProjectAwesome\",\"blackbookgraffiti\",\"NorthCarolina\",\"BBW\",\"washu\",\"iOSProgramming\",\"donaldglover\",\"MDMA\",\"LGBTeens\",\"blues\",\"aquaponics\",\"AudioPost\",\"Warmachine\",\"Calligraphy\",\"dragonage\",\"AustralianShepherd\",\"WhiteWolfRPG\",\"Megaman\",\"queen\",\"crypto\",\"AskTechnology\",\"visualnovels\",\"Clannad\",\"nsfw2\",\"Dance\",\"SwingDancing\",\"baylor\",\"iastate\",\"OpenChristian\",\"Illustration\",\"ferrets\",\"badlinguistics\",\"Rochester\",\"opengl\",\"javahelp\",\"canadaguns\",\"GetStudying\",\"LibertarianLeft\",\"classicalguitar\",\"vodka\",\"vmware\",\"insanityworkout\",\"WritingPrompts\",\"Albany\",\"upstate_new_york\",\"rutgers\",\"glasgow\",\"Syracuse\",\"columbiamo\",\"vcu\",\"orioles\",\"cosplaygirls\",\"Tacoma\",\"Shave_Bazaar\",\"freehugsbf3\",\"birdswitharms\",\"mcgill\",\"dragoncon\",\"ExplainLikeImCalvin\",\"TexasTech\",\"LadyGaga\",\"uofmn\",\"panthers\",\"HBL\",\"StonerPhilosophy\",\"cpp\",\"XFiles\",\"ShinyPorn\",\"TOR\",\"NarFFL\",\"Iowa\",\"pantyselling\",\"Harley\",\"amateurfights\",\"cork\",\"beatingwomen\",\"Motocross\",\"lolcats\",\"osx\",\"ZenHabits\",\"LittleRock\",\"upvotegifs\",\"AnimalsWithoutNecks\",\"proper\",\"comeonandslam\",\"gatech\",\"sushi\",\"SRSQuestions\",\"GodlessWomen\",\"pregnant\",\"NIU\",\"dotnet\",\"esports\",\"AnaheimDucks\",\"freemasonry\",\"bengals\",\"Cynicalbrit\",\"silenthill\",\"ScarlettJohansson\",\"ElderScrolls\",\"SonicTheHedgehog\",\"Permaculture\",\"EntExchange\",\"joomla\",\"X3TC\",\"astoria\",\"PokemonROMhacks\",\"ramen\",\"bboy\",\"bookshelf\",\"ucr\",\"Hamilton\",\"femalehairadvice\",\"whatsthisworth\",\"Needafriend\",\"bugs\",\"cfs\",\"deephouse\",\"ClimbingPorn\",\"flyfishing\",\"shareSMITE\",\"transformers\",\"pkmntcgtrades\",\"JurassicPark\",\"pokemonbattles\",\"Dinosaurs\",\"InfernalMachine\",\"WoWGoldMaking\",\"ReverseEngineering\",\"ProgrammerHumor\",\"vim\",\"AdvancedFitness\",\"bf3pc\",\"selfimprovement\",\"BetweenTheBuriedAndMe\",\"Monstercat\",\"SubredditDramaDrama\",\"HTML\",\"lookatmydog\",\"compDota2\",\"rugbyunion\",\"SoccerBetting\",\"NUFC\",\"FinancialPlanning\",\"PHPhelp\",\"vzla\",\"swinghouse\",\"SexPositive\",\"Delaware\",\"nycmeetups\",\"MassiveCock\",\"penis\",\"Frugal_Jerk\",\"musicals\",\"hydro\",\"cinematography\",\"Blacklight\",\"lookwhoimet\",\"Metallica\",\"TMNT\",\"Pokemoncollege\",\"Adoption\",\"Wellington\",\"sca\",\"trueMusic\",\"MotoLA\",\"roblox\",\"edmprodcirclejerk\",\"lebanon\",\"transpositive\",\"UWMadison\",\"techsupportanimals\",\"Ijustwatched\",\"VXJunkies\",\"legal\",\"LinuxActionShow\",\"cablefail\",\"seedboxes\",\"JapaneseFood\",\"hungary\",\"lexington\",\"Percussionists\",\"Gunsforsale\",\"Tennesseetitans\",\"roasting\",\"insomnia\",\"nerdcubed\",\"umass\",\"collegehockey\",\"starcitizen\",\"StopSelfHarm\",\"Colts\",\"bestoftribunal\",\"miamidolphins\",\"husky\",\"perth\",\"write\",\"blogs\",\"pantheism\",\"ShittyFanTheories\",\"Everton\",\"Cinema4D\",\"RDT2\",\"Heroclix\",\"dragonvale\",\"StencilTemplates\",\"tf2replays\",\"noiserock\",\"worldwhisky\",\"Cheap_Meals\",\"riseagainst\",\"Disneyland\",\"discexchange\",\"90daysgoal\",\"ketogains\",\"2XLookbook\",\"MAME\",\"linuxadmin\",\"rollerblading\",\"livesound\",\"phish\",\"Eminem\",\"vfx\",\"CODZombies\",\"deftones\",\"DesignMyRoom\",\"ShittyPoetry\",\"DMT\",\"Albuquerque\",\"misophonia\",\"Fixxit\",\"juggalo\",\"UTSA\",\"CarletonU\",\"swedents\",\"Journalism\",\"dust514\",\"Climbingvids\",\"Gundam\",\"rum\",\"LAlist\",\"BodyAcceptance\",\"basset\",\"BDSMcommunity\",\"Random_Acts_of_Etsy\",\"touhou\",\"ludology\",\"Mariners\",\"PrettyGirlsUglyFaces\",\"short\",\"CombatFootage\",\"Maine\",\"queensuniversity\",\"Gameboy\",\"n64\",\"planetaryannihilation\",\"QuakeLive\",\"Aleague\",\"sc2partners\",\"SALEM\",\"Random_Acts_of_Books\",\"bodymods\",\"USMilitarySO\",\"preppers\",\"bugout\",\"Ornithology\",\"Juicing\",\"twinpeaks\",\"flightsim\",\"amateurradio\",\"athensohio\",\"unixporn\",\"shittybattlestations\",\"fossworldproblems\",\"riddles\",\"lebowski\",\"WingChun\",\"siberianhusky\",\"jambands\",\"simracing\",\"banjo\",\"ak47\",\"Concordia\",\"day9\",\"StarcraftCirclejerk\",\"tinydick\",\"artificial\",\"Equestrian\",\"lolgrindr\",\"demonssouls\",\"Pokeents\",\"appstate\",\"futanari\",\"simonfraser\",\"Datsun\",\"Cigarettes\",\"ketorage\",\"selfpublish\",\"kandi\",\"Debate\",\"UCONN\",\"highschool\",\"winemaking\",\"Dreadlocks\",\"Surface\",\"ClashOfClans\",\"Spanish\",\"vinylscratch\",\"ilstu\",\"doppelbangher\",\"Browns\",\"clevelandcavs\",\"malefashion\",\"Blogging\",\"streetwear\",\"ipv6\",\"NativeAmerican\",\"turning\",\"learnart\",\"santacruz\",\"tryptonaut\",\"SQL\",\"Forts\",\"Guelph\",\"gue\",\"Beekeeping\",\"veg\",\"weddingplanning\",\"Destiny\",\"badphilosophy\",\"COents\",\"lampwork\",\"mypartneristrans\",\"shazbot\",\"onions\",\"sloths\",\"Catan\",\"theleaguefx\",\"RedditBrigade\",\"1911\",\"flashlight\",\"USF\",\"chinchilla\",\"SkyrimHelp\",\"mysql\",\"cosplayers\",\"composer\",\"AceOfSpades\",\"OttawaSenators\",\"BarCraft\",\"stonerrock\",\"ChivalryGame\",\"centralmich\",\"plotholes\",\"GayBroTeens\",\"GoogleTV\",\"canberra\",\"kde\",\"sarasota\",\"RandomActsOfVinyl\",\"HunterXHunter\",\"boating\",\"AcademicPsychology\",\"SketchDaily\",\"BiGoneMild\",\"canadients\",\"translator\",\"AnimalCollective\",\"folkmetal\",\"PowerMetal\",\"AskComputerScience\",\"ArtGW\",\"asstastic\",\"D3L4G\",\"freedesign\",\"Divorce\",\"greysanatomy\",\"Clojure\",\"triphop\",\"cowboybebop\",\"BinghamtonUniversity\",\"rails\",\"AustralianCattleDog\",\"Egypt\",\"subredditofthedead\",\"rocksmith\",\"IndianBabes\",\"brighton\",\"Africa\",\"roanoke\",\"gameDevClassifieds\",\"Bestof2011\",\"Turkey\",\"MCNSA\",\"happyhardcore\",\"bloodlinechampions\",\"lisp\",\"protools\",\"spacex\",\"starbound\",\"gnomoria\",\"deadisland\",\"painting\",\"love\",\"conlangs\",\"CalgarySocialClub\",\"MitchellAndWebb\",\"fredericton\",\"Complextro\",\"UnsentLetters\",\"TheCreatures\",\"FTH\",\"japanlife\",\"LondonSocialClub\",\"croatia\",\"incest\",\"harmonica\",\"gmu\",\"BackYardChickens\",\"haskell\",\"aikido\",\"sanmarcos\",\"txstate\",\"Neuropsychology\",\"wichita\",\"boardsofcanada\",\"scape\",\"Knife_Swap\",\"saudiarabia\",\"4Xgaming\",\"exjew\",\"Fantasy_Bookclub\",\"SSBPM\",\"Fighters\",\"asiantwoX\",\"scala\",\"homebrew\",\"traps\",\"harvestmoon\",\"bookhaul\",\"Liverpool\",\"artstore\",\"football\",\"MLPtunes\",\"metalworking\",\"ICoveredASong\",\"ftm\",\"debian\",\"Epilepsy\",\"retrogaming\",\"asianeats\",\"Metric\",\"Cubers\",\"RUG_Leeds\",\"UBreddit\",\"askagirl\",\"craftexchange\",\"improv\",\"psychedelicrock\",\"losangeleskings\",\"myevilplan\",\"Hotwife\",\"BDSMGW\",\"northkorea\",\"BostonBruins\",\"sneakermarket\",\"tarantulas\",\"RUGC_Midwest\",\"redditsync\",\"PortalMaps\",\"Magento\",\"babylon5\",\"pornfree\",\"amishsmp\",\"astrophysics\",\"Drexel\",\"Chattanooga\",\"mwo\",\"illustrator\",\"mizzou\",\"Halo4\",\"golang\",\"bassfishing\",\"chibike\",\"MeetLGBT\",\"doodles\",\"WahoosTipi\",\"entgaming\",\"BSA\",\"TheStopGirl\",\"bakedart\",\"BostonU\",\"unt\",\"NSFW_nospam\",\"MontgomeryCountyMD\",\"Alternativerock\",\"tech\",\"animegifs\",\"LSAT\",\"Nokia\",\"wallstreetbets\",\"RandomActsOfChristmas\",\"waterloo\",\"NuDisco\",\"IBD\",\"nethack\",\"Kiteboarding\",\"utdallas\",\"TrainPorn\",\"Greyhounds\",\"fweddit\",\"mixcd\",\"windsorontario\",\"illusionporn\",\"amv\",\"ICanDrawThat\",\"lovegaymale\",\"LGBTGoneWild\",\"turtle\",\"regina\",\"identifythisfont\",\"nrl\",\"pokemmo\",\"Eesti\",\"NakedProgress\",\"poi\",\"evangelion\",\"Silverbugs\",\"getdisciplined\",\"audiobooks\",\"simpleios\",\"mbti\",\"metaldetecting\",\"NewcastleUponTyne\",\"sharepoint\",\"akron\",\"verizon\",\"INDYCAR\",\"scion\",\"mormon\",\"lanparty\",\"wildcats\",\"IowaCity\",\"C_Programming\",\"matlab\",\"git\",\"drumstep\",\"TwoXSex\",\"FrugalFemaleFashion\",\"Georgia\",\"SBU\",\"quilting\",\"merlinbbc\",\"reasoners\",\"rolltide\",\"Pensacola\",\"rawdenim\",\"greatdanes\",\"PCOS\",\"Makeup\",\"PrettyLittleLiars\",\"infertility\",\"Animewallpaper\",\"poledancing\",\"AskBattlestations\",\"getting_over_it\",\"seventhworldproblems\",\"saskatoon\",\"coupons\",\"chicagomusicscene\",\"CastleTV\",\"policydebate\",\"Nebraska\",\"ABDL\",\"wien\",\"AutoDetailing\",\"Rule34LoL\",\"northdakota\",\"arlington\",\"juggling\",\"DIY_eJuice\",\"Ducati\",\"Kappa\",\"judo\",\"christmas\",\"wemetonline\",\"TryingForABaby\",\"Hooping\",\"psbattleroyale\",\"dcuonline\",\"motivation\",\"bigonewild\",\"santarosa\",\"Ghosts\",\"Punkskahardcore\",\"SouthJersey\",\"Helicopters\",\"ColoradoRockies\",\"ecycle\",\"steamswap\",\"Bakersfield\",\"AskLiteraryStudies\",\"DayZServers\",\"auckland\",\"Gymnastics\",\"RTLSDR\",\"thegdstudio\",\"onebros\",\"hamsters\",\"volleyball\",\"TheGirlSurvivalGuide\",\"acappella\",\"NewMexico\",\"Handwriting\",\"3dsmax\",\"playstation\",\"saskatchewan\",\"TestGuildPleaseIgnore\",\"youngjustice\",\"BorderlandsGuns\",\"MLPvids\",\"billiards\",\"Cornell\",\"grime\",\"TripSit\",\"BacktotheFuture\",\"DanishEnts\",\"homeschool\",\"NYCapartments\",\"tales\",\"PointsPlus\",\"node\",\"elite\",\"HPfanfiction\",\"avporn\",\"lanterncorps\",\"ussoccer\",\"astrology\",\"fargo\",\"liquor\",\"missoula\",\"Pegging\",\"avengedsevenfold\",\"trailrunning\",\"CuteGuyButts\",\"AustinClassifieds\",\"talesfromcallcenters\",\"cade\",\"rockets\",\"capetown\",\"gradadmissions\",\"wowguilds\",\"Toughmudder\",\"AskScienceDiscussion\",\"ukbike\",\"nes\",\"ThankYouBasedGod\",\"puns\",\"shittyprogramming\",\"chunky\",\"led_zeppelin\",\"Montana\",\"skylanders\",\"excatholic\",\"Saxophonics\",\"BlueJackets\",\"homegym\",\"MUD\",\"Umphreys\",\"dustforce\",\"TheBrewery\",\"Fencing\",\"Wilmington\",\"jewelry\",\"foxes\",\"Gear4Sale\",\"credditMWO\",\"ACMilan\",\"Bulldogs\",\"indonesia\",\"MusicBattlestations\",\"crustpunk\",\"Waco\",\"oxford\",\"MotionDesign\",\"Femdom\",\"broslikeus\",\"xmen\",\"puppy101\",\"kelowna\",\"Sissies\",\"thinkpad\",\"Cisco\",\"uCinci\",\"AskNetsec\",\"telecaster\",\"teen4teen\",\"Veterinary\",\"FutureWhatIf\",\"RedditPost\",\"chastity\",\"grimm\",\"MusicInTheMaking\",\"photographs\",\"motogp\",\"BeardedDragons\",\"ptcgo\",\"shoegaze\",\"toledo\",\"pewdiepie\",\"nottingham\",\"moviescirclejerk\",\"bestofnetflix\",\"IndustrialDesign\",\"F1Porn\",\"AnimeSketch\",\"BikeShop\",\"raleigh\",\"hetalia\",\"Reno\",\"AFOL\",\"yorku\",\"apathy\",\"fragrance\",\"savannah\",\"SCREENPRINTING\",\"SQLServer\",\"ReefTank\",\"vintageaudio\",\"WorcesterMA\",\"visualbasic\",\"outside\",\"Syria\",\"Temple\",\"Wicca\",\"Scams\",\"Logic_Studio\",\"BBWGW\",\"TibiaMMO\",\"HowToHack\",\"FIU\",\"beetle\",\"japanesemusic\",\"shutupandwrite\",\"Swingers\",\"borussiadortmund\",\"plants\",\"3Dmodeling\",\"EdmontonOilers\",\"everquest\",\"swgemu\",\"WowUI\",\"pharmacy\",\"TheMentalist\",\"herpetoculture\",\"SVRiders\",\"weed\",\"GoneWildCD\",\"Netrunner\",\"nonmonogamy\",\"Shadowrun\",\"IBO\",\"cassetteculture\",\"graffhelp\",\"BeautyBoxes\",\"Cameras\",\"stanford\",\"techsupportmacgyver\",\"jakeandamir\",\"gso\",\"sexytimechat\",\"PanicHistory\",\"CysticFibrosis\",\"treesdating\",\"sixers\",\"optometry\",\"baconit\",\"JamesBond\",\"kettlebell\",\"minimal\",\"AcousticOriginals\",\"brasil\",\"100pushups\",\"whitewater\",\"techsnap\",\"notredame\",\"riotpls\",\"WVU\",\"freebietalk\",\"asianamerican\",\"Ford\",\"bitchimabus\",\"bootroom\",\"SJSU\",\"projectcar\",\"WtSSTaDaMiT\",\"men_in_panties\",\"europeanmalefashion\",\"ChicoCA\",\"guildrecruitment\",\"Dirtbikes\",\"CafeRacers\",\"Shootmania\",\"fcs\",\"slp\",\"gundeals\",\"selfharm\",\"fireemblem\",\"shittymcsuggestions\",\"uofu\",\"SFSU\",\"AdvancedRunning\",\"twinks\",\"AmateurArchives\",\"LOLStreams\",\"characterdrawing\",\"FinancialCareers\",\"asatru\",\"OregonStateUniv\",\"Throwers\",\"trackandfield\",\"BDSMpersonals\",\"GW2_Guild\",\"purebattlefield\",\"Catacombs\",\"jackrussellterrier\",\"GamePhysics\",\"NotTimAndEric\",\"chillwave\",\"uwo\",\"Rolla\",\"CRH\",\"pettyrevenge\",\"askgaybros\",\"LoLGaymers\",\"VPN\",\"GolfGTI\",\"mit\",\"highdeas\",\"freemusic\",\"wifesharing\",\"TalesFromYourServer\",\"steroids\",\"Shotguns\",\"askaconservative\",\"YAlit\",\"knifeclub\",\"fortwayne\",\"schnauzers\",\"themountaingoats\",\"AtheismComingOut\",\"gaysian\",\"cringepics\",\"EvilLeagueOfEvil\",\"NewsOfTheStupid\",\"TumblrInAction\",\"fullmoviesonyoutube\",\"GalaxyNote2\",\"annakendrick\",\"BravestWarriors\",\"IsJewBoyMarriedYet\",\"santashelpers\",\"Ingress\",\"RAOWL\",\"zombiespartyup\",\"razer\",\"montageparodies\",\"Bozeman\",\"myfriendwantstoknow\",\"MakeNewFriendsHere\",\"TheTerminal\",\"ifiwonthelottery\",\"GameTrade\",\"im14andthisisfunny\",\"dontstarve\",\"explainlikeIAmA\",\"BIRDTEAMS\",\"RandomActsofMakeup\",\"StackAdvice\",\"TrueWalkingDead\",\"woweconomy\",\"DebateCommunism\",\"MLPIOS\",\"comicbookart\",\"blackpeoplegifs\",\"AmIFreeToGo\",\"blackladies\",\"BlackOps2Emblems\",\"foreskin\",\"comicbookmovies\",\"armawasteland\",\"lolwallpaper\",\"weddings\",\"thesimscc\",\"ConfusedBoners\",\"D3GC\",\"guitars\",\"TheRedLion\",\"Im14andthisisWTF\",\"Negareddit\",\"Drama\",\"KarmaCourt\",\"gunpolitics\",\"progun\",\"newtothenavy\",\"TheRedPill\",\"gloving\",\"swordartonline\",\"bitcointip\",\"perfectloops\",\"PokemonMelanite\",\"comiccodes\",\"ThanksObama\",\"RWBY\",\"NFL_Draft\",\"uglyduckling\",\"theketodiet\",\"CFB\",\"mexico\",\"sanfrancisco\",\"washingtondc\",\"india\",\"minecraftxbox\",\"nsfw\",\"Atlanta\",\"FoodPorn\",\"boston\",\"CityPorn\",\"powerlifting\",\"sandiego\",\"Austin\",\"chromeos\",\"cincinnati\",\"PS4\",\"vancouver\",\"philadelphia\",\"StLouis\",\"farcry3\",\"canada\",\"japan\",\"howtonotgiveafuck\",\"ottawa\",\"fffffffuuuuuuuuuuuud\",\"de\",\"vegas\",\"london\",\"unitedkingdom\",\"AskUK\",\"chicago\",\"webdesign\",\"europe\",\"ukpolitics\",\"nononono\",\"australia\",\"melbourne\",\"montreal\",\"toronto\",\"ColbertRally\",\"starcraft2_class\",\"Portland\",\"mcwasted\",\"counting\",\"2007scape\",\"promos\",\"FiftyFifty\",\"ass\",\"GunsAreCool\",\"ucf\",\"TournamentOfMemes\",\"changemyview\",\"Shitty_Car_Mods\",\"Team_Awesome\",\"csuf\",\"sweden\",\"Spartacus_TV\",\"newzealand\",\"blog\",\"Calgary\",\"Brewers\",\"tappedout\",\"EatCheapAndHealthy\",\"Israel\",\"TwinCities\",\"Louisville\",\"DornerCase\",\"baltimore\",\"Detroit\",\"Quebec\",\"Philippines\",\"houston\",\"announcements\",\"Seattle\",\"Denmark\",\"france\",\"CrossStitch\",\"hockeyplayers\",\"Ohio\",\"shameless\",\"misfitstv\",\"summoners\",\"Bravenewbies\",\"brisbane\",\"ploungeafterdark\",\"Coachella\",\"amazondeals\",\"Scrolls\",\"ReviewThis\",\"migraine\",\"Padres\",\"tampa\",\"AsianParentStories\",\"ucla\",\"NorthKoreaNews\",\"StarWarsEU\",\"Ask_Politics\",\"XboxMinecraft\",\"wildhockey\",\"androidcirclejerk\",\"pcmasterrace\",\"whowouldwin\",\"infp\",\"Skullgirls\",\"Megaten\",\"Warframe\",\"evenewbies\",\"asheville\",\"DailyDouble\",\"UCSantaBarbara\",\"heat\",\"Pyongyang\",\"Maya\",\"fatpeoplestories\",\"SFxT\",\"Injusticegame\",\"litecoin\",\"Lollapalooza\",\"Sacramento\",\"WaltDisneyWorld\",\"Defiance\",\"Redditropolis\",\"AnimalsBeingJerks\",\"iOSthemes\",\"arabs\",\"NoStupidQuestions\",\"AndroidUsers\",\"FallOutBoy\",\"whitepeoplegifs\",\"Ni_no_Kuni\",\"Roadcam\",\"GWCouples\",\"Showerthoughts\",\"FRC\",\"Darkfall\",\"SourceFed\",\"HomeImprovement\",\"TruePokemon\",\"blunderyears\",\"harlemshake\",\"cycling\",\"itmejp\",\"BitcoinMining\",\"TheBestOfAmazon\",\"DungeonsAndDragons\",\"BitMarket\",\"Nexus10\",\"latterdaysaints\",\"projectzomboid\",\"Ameristralia\",\"BronyHate\",\"TrueChristian\",\"NEU\",\"fantasyhockey\",\"ENFP\",\"RandomActsOfTf2\",\"SWARJE\",\"braswap\",\"elderscrollsonline\",\"hiphop101\",\"spotted\",\"LatvianJokes\",\"justified\",\"marvelheroes\",\"SSX\",\"INGLIN\",\"IAmAFiction\",\"USC\",\"Unexpected\",\"TheBluePill\",\"askcarsales\",\"Tallahassee\",\"DestinyTheGame\",\"ShitCosmoSays\",\"UniversityOfHouston\",\"CubeWorld\",\"BioshockInfinite\",\"qotsa\",\"ElectricForest\",\"RapeSquadKillas\",\"arma3\",\"PuzzleAndDragons\",\"Kikpals\",\"mtgfinance\",\"Harmontown\",\"ProRevenge\",\"dota2pubs\",\"feedthebeastservers\",\"LOLDyrus\",\"YGOBinders\",\"thatHappened\",\"foodhacks\",\"CoDCompetitive\",\"StateOfDecay\",\"GTAV\",\"GoneMild\"],\"x\":[0.0029681802454424103,-0.00027431308043228576,0.00039385579987598855,-0.005090193319072197,-0.00024256131274364408,-0.007927164387281128,-0.019906699489131197,0.0007386539098779305,-0.00620662139709264,-0.0001939870542244466,0.0006203870244336202,0.009574891237117186,0.0010750385980707999,-0.013530692018484192,0.006008159661924518,-0.004940988277132747,-0.006050153452846436,0.0037700777234148195,0.001184269524157832,0.010219645271861514,0.0006247886889626796,-8.044475680611553e-05,-0.00037919800065784885,-0.005794826396090294,-0.013160828098588812,-0.0003525010876075945,0.0041448943853132445,-0.007637969820126401,0.0002734560403620123,-0.0016409744147873582,0.0007282154778983273,-0.03980214367019796,-0.0020200327919226253,-0.009313325071263546,0.0014882345944303224,-0.001104204220327326,0.006520741613506486,0.0016647118909818097,-0.005401625145524391,-0.0036365916105435747,0.00040013316799942427,0.0008006157668858423,-0.012022994613037382,-0.0022673899999943086,-0.004953080841151197,-0.02857536983494206,-0.034443219666358306,-0.04599794068813983,-0.008915241352575596,-0.020071495571782224,-0.004226988522763881,-0.017173546823509248,2.0581038570266496e-05,-0.011159491037619302,-0.0245957135716776,-0.01902931249434847,-0.018841812173421627,0.026789454595188236,0.00342064845543111,-0.019492276187559488,-0.023495723535686207,-0.0034406717562843353,0.00018420866253525493,-0.0023286165328367,-0.005816959709319494,-0.014994286655802457,-0.009897288019605401,-0.021574408965241147,-0.01429287752800816,-0.007110025149741064,0.0027213268949073132,0.00045136123530690054,-0.0005578189765678278,0.003566103877854229,-0.0011898663082471129,-0.010322346627351051,0.0015612880426895653,0.0018849601034188273,0.000739220055408706,-0.00018554839821820118,0.00798400832327538,0.0016471194360735207,-0.010742774758619322,0.005786903209607686,-0.007703421668606958,-0.004083827803790266,-0.0018470491197524056,-0.002852130836357041,-0.006955520560844538,-0.005079841737762416,-0.006841581523461123,-0.017919675324949223,-0.0017513315336482337,-0.004957578391081954,0.0010689026814007106,0.008747020793228722,-0.01820374440889697,-0.0013036901978842547,-0.0015917679740314024,0.005705035247085822,0.0052820709219502885,0.0002825378760311442,-0.016743740094416076,0.005723414667275418,-0.004665592328929367,0.002355682115975998,0.0010447528542889945,-0.002058988375216654,-0.0055773186117382845,-0.0007052547251732402,-0.008715499278501833,0.004428586065888848,0.001046834808911521,0.002896204025736706,0.0008367625709576962,-0.02313120358140253,0.16919078813099347,0.02784722006661831,0.00048062127128263414,-0.003425070895679168,-0.02055558561967866,-0.0008964839247769334,-0.005555744610196171,-0.0011236291058156166,-0.0030546180037434633,0.0006328666629171023,0.012146629685392997,0.0003115217383822456,-0.008503618240396098,-0.008262840572264209,-0.007816162802213733,-0.0164259034514894,-0.011182262035526329,-0.011461819831877369,0.0004989746171903129,-0.005571205695293841,-0.008551828197136617,-0.0011835673185803348,-0.00477074172764402,0.0060019806625533955,-0.0014607824358479537,-0.008488687877560476,-0.0034624394140394935,-0.001955069367525079,-0.00475144005126661,-0.0016140926742514638,0.003192757307352833,-0.01563378311337338,-0.004692200692918482,-0.006281536506049269,-0.0025510380819596863,-0.023837167438877545,-0.007143967061006635,-0.009037727856073008,0.005656420718934119,-0.01368253855323385,0.004675846132844048,0.0010546946857010438,-0.02540305026814283,-0.039393151368268334,-0.008377574830769789,-0.0024041317034039396,-0.0036999130380278604,-0.012331681910212208,0.0025857194245360662,-0.012069582573994498,0.01166986226451226,-0.019156382641887595,0.0001290299912115921,-0.0065531097633219695,-0.0060145095149257135,-0.011215395732145441,-0.003774011790265457,-0.005045765259497201,-0.003126348442984769,-0.019808737150596143,-0.0007286298865318859,-0.011664829845698773,-0.003542334097922437,-0.005439309936550775,-0.0006488486643920243,-0.0035491748186277914,-0.005982231489129867,-0.0042474064021455335,-0.006920191241197265,-0.0014126094713966108,-0.01122469446336663,0.00844503431615717,-0.010914187189764382,-0.007276308173630535,-0.0035765593073638705,0.007193475543524596,-0.021638500919869113,0.001579872913357491,-0.005792965539665976,-0.009444128411618043,-0.00764033535221148,-0.0018001645835068593,-0.018298506084216484,-0.015224091736265672,-0.00989273300448634,-0.01939493964422266,-0.011982492067092098,-0.047624316462592485,-0.046667847425501174,-0.04732155938564545,-0.0012749659482193174,-0.003164303527327929,-0.0006012724540634696,-0.00362371855085773,0.0015093567788377429,-6.292486737444998e-06,0.006517880673670374,-0.004416676932194416,-0.0027731451318636705,-0.00514108093910534,0.003555825158887675,0.0019914764194618024,0.0014429488083406656,-0.004376472247037868,-0.0037500671136879416,-0.0008075125891067328,0.003596649488942942,-0.007966074530066154,0.0005195203207222961,-0.010984979348234733,-0.003548473802828543,0.0002895992003509837,-0.006631923005277219,0.05257528556940759,0.0002724234996521992,-0.004282143677007014,-0.02086935343993579,-0.0111250708805596,-0.003987901300472378,-0.0006966250869742837,0.0005985663056812575,0.0045459861644459075,-0.009108897168771302,6.924353158613515e-05,-0.00913809235792302,-0.0011661182771515728,-0.0029764737995666844,0.006610741225262488,0.058753607705146746,-7.411541988965885e-06,-0.0030303019375722932,0.015270460397877146,-0.005131427208659357,0.005888451692038746,0.024369228539179683,0.012782071902332414,-0.007188513364001417,-0.0011135990245603037,-0.006284646613665598,-0.0037596398290061133,-0.0012282394881829686,-0.010747457965952088,-0.005931137786744051,0.0045777315230157685,-0.01254599033153632,0.011007387060103353,-0.013724938938685578,0.04081776230623362,-0.007581252583497836,-0.000719877622749173,-0.006224010456403301,-0.0037576394788281387,-0.003157440754721484,-0.0016529013557652545,-0.0029909955703600454,-0.0029693851327019447,-0.008230173242381877,-0.009273062974635635,-0.011937200117518745,-0.007732433980206961,-0.004916716671673032,-0.005352248358779718,-0.007463046974251156,-0.0075375623690414305,-0.011760772308571484,-0.012516130220230508,-0.00296800082417073,0.0005094854378728151,-0.00606410340586185,-0.013532261519719938,-0.002300222045134622,-0.0009636892962413939,-0.002090218717201013,-0.004533586796187303,0.004320861660223641,-0.013365579422537665,-0.01496895638343707,0.002357976616709486,0.006717153797842996,0.005725180880114047,0.006677931700593913,0.005983740799766717,-0.004982669961854422,-0.025407975617025055,-0.0038303838087454657,-0.005030058061701737,-0.0013403853807046873,-0.0065875091337668735,-0.01904959586883995,-0.004507891667182716,-0.02688350885019434,0.05871240441128338,0.010462360413143126,-0.0034693601546836785,-0.029013975593009826,-0.029047039499282893,0.004835977054845747,-0.005579348402194264,0.00016708283864512208,-0.005723844042492478,-0.006382054601763458,-0.0009503535345760571,0.0020984176315890627,-0.016814374928480914,0.0008555308249130929,0.01794392096885997,-0.022794419602790415,0.0032613811869457885,-0.0010865111953172696,0.0017335391128857267,0.0014745124111078234,-0.011485732402572483,0.0011598438825429094,0.0038588393898825973,-0.02282103787422208,0.00937683512524948,-0.0011209582675830334,-0.021323244104109535,-0.0020427699936950996,-0.0008031989774935484,-0.0019323829687047066,-0.00582337777312505,-0.007580213003515183,-0.005697135178854412,-0.008141227791631943,-0.005380090164402813,-0.004883342437624233,0.000992099325423118,-0.004736793198971648,-0.005300158726414072,-0.00524488053617541,-0.009144656540227858,0.0030317811776243617,0.004054459501201724,-0.005382050519913027,-0.002528116887884751,0.0004708325905674213,-0.0033753074673351187,0.008622535771785364,0.00039267048526009135,-0.012029673247342528,-0.009897974205890031,0.02511623701562933,0.04812476879163674,0.010331106575837872,0.004306997510915555,0.0012893611389297754,0.001326358417398219,-0.004003264202554935,0.001560193144910891,0.007283717772983773,0.013794032067983313,0.0021896856379494496,0.0055379164344913825,0.0001824265981617896,-0.0005383835215271444,0.0041079957863054415,-0.004114545643570848,0.0009102242639028863,-0.009766334171357189,-0.0013793318480295911,-0.012539903605708266,-0.0027615049527387396,-0.007138941407106879,-0.0016084407725949399,-0.0069084294971988,-0.001479874936154176,-0.006100185708141306,-0.0017863031766196442,-0.0025655018884115535,-0.0076590897624668015,0.00032106541450948993,-0.0005148965978784473,0.005779614631669566,0.02323264189398507,0.15469979056815786,-0.007539696483220603,0.15665486402856324,0.004912689566458608,-0.005710179909532841,0.1676577296007723,-0.006629359071689228,0.003755517594613485,-0.0032894036696258793,-0.005832315062509984,0.008980167083290608,-0.00014073775114480813,-0.0010083734683754486,-0.012324892542755359,-6.526460022926517e-05,-0.004590356341095984,0.00156042168581381,-0.005068295939252453,-0.004025782159965282,0.006909260134383011,-0.005556859294089479,0.01446671083627623,-0.005130016026463395,0.0011196525031308175,-0.00646373275925359,-0.00681337131103049,-0.009991004239762053,-0.0048587299837165735,-0.008189688807988134,-0.003904062898769163,-0.00807877490600419,-0.004781992701490061,-0.011724424399486446,-0.0047439226204975095,-0.007994790615135484,-0.01934756816243327,-0.0035226808826359663,-0.008031636036544443,0.020114399786696536,0.005542013202554744,8.958750297551061e-05,0.0057905860545848144,0.0020924061667396687,-0.011275269049625681,0.0008061220372340002,-0.004556179147765795,-0.0275546573155878,0.03343905010895848,-0.00797376278692487,-0.021956609940326596,0.003641208729766432,-0.006813233459017258,0.0007039146372429831,-0.002467601644724656,0.0010757435104943147,-0.0001864978636280931,-0.0031203873615804107,-0.0020563036882681636,0.002370234172998164,0.005566407710356062,0.008464078365007743,-0.002912479571890722,-0.006887847884689413,-0.00457675259071866,-0.017591369533354623,0.0011151309785641763,0.01770362327362385,-0.0012465625965263332,0.005891404014133451,0.005998530796439758,-0.012698072960965832,-0.02307450144271923,0.00473080573165456,0.011101557197632658,0.0004839032356367999,-0.0028329083654037644,0.028134481506236136,0.0032251073712856056,-0.005160821943803828,-0.007195039394721594,-0.0023400444406443404,0.0001887521864313426,-0.004991570750477837,-0.003389680817036727,-0.0038379706480736217,-0.01290861115478137,-0.006501712013588802,-0.010250844184631038,-0.00887281268852658,-0.0032146800333490346,0.002941690867181954,-0.009826034493784485,-0.004297413489116852,-0.000746211772701962,-0.006707493093637475,-0.004206656276989489,-0.00867579542957928,-0.0009679157830397773,-0.0018374536277878902,-0.005348544275772627,-0.0079349651422247,0.02239208563235357,-0.00371929853445148,-0.029636415999082413,-0.00568852877080644,0.00032560527512967986,-0.0024500501920474145,-0.006590096400080462,0.00554110362531875,0.010311478890544401,-0.010968716508027523,-0.001942844156853255,-0.0048179585129307905,0.009403243553907585,0.0018725604635166971,0.0018051155853781892,0.0027087216244838304,-0.00502140743547608,-0.019864502622417395,0.00028755202965154565,-0.004564027202967617,-0.01232370653998203,-0.006119361658226545,0.0024864934987097204,-0.0010010480031041715,-0.004598327666888999,-0.004952141272655154,-0.005932924485882824,0.006730925494229925,-0.004504403873163679,-0.0017316137842678411,-0.004147712906904907,-0.0032072251918617407,-0.003195134870268288,-0.0056166030733066355,-0.004376554761949036,-0.0021886533289314936,-0.005466471314390012,-0.007459226901038844,0.0024135702429274285,-0.0018564540306093104,0.00014796741907810963,-0.005136472065915222,-0.012434063269965523,0.00776197119461095,-0.005128858504779026,0.00319739583470367,-0.0020309315859888674,-0.0044843104422339205,0.00672622708054019,0.0017724300711873461,0.0013555037453903895,-0.0024088115276284434,-0.00023770535315165514,-0.0013224691146072433,-0.001824254169040423,-0.02273620508844138,0.004655831687391862,0.010473153983510928,-0.00011687226622078716,-0.0005843717320811458,0.001920354196606713,-0.008011374387453469,-0.008835966426536895,0.0007530268879725787,0.0001351206100626309,-0.00011961345668916429,-0.0065022262698634994,-0.018887764252705184,-0.01649322499577899,-0.009643190970088747,-0.010334070589846008,3.271320914255362e-05,0.00471499393096537,-0.03352640331045414,0.003385749293539861,-0.005891241215348521,0.005125507999018697,-0.002450872436215216,-0.0052225332893213,-0.0014675176073010296,-0.018241421702969437,-0.007668026678900181,-0.014691850005982958,-0.0038463374528659717,0.02837507517611391,-0.005511021129664055,-0.006338193115106481,-0.014981326723695116,-0.006549021626788852,-0.017459442120735056,-8.852644049962788e-05,-0.004606086479775996,-0.0006665847823814643,-0.01056665142918495,-0.015459262859254308,-0.001091619894565752,0.0009868394112774177,-0.0032035927361002362,-0.013908614169125779,-0.005790480410824996,-0.0025624098574252648,0.0013165302726133692,0.002423311997578971,-0.0012404340506434847,0.0003471290509160251,-0.009353940709480398,-0.008921805881666873,0.004608780848446301,0.0006859710603619462,-0.0011792271666274988,0.012154491936111449,0.00048078425193640777,0.002861182100434151,-0.005192765564246746,0.017999692261372092,-0.014940621283065086,0.006682374937997308,0.012442646897911056,-0.0005961861816752214,-0.013817031297250853,-0.004298971377736943,-0.004956856175936617,-0.0016450586600819208,0.000824608488133575,-0.002476024256852557,-0.003266981576954271,0.0021942154755923435,-0.000355268066843278,-0.0031384315465025725,0.005281821447185491,0.003099300520115599,-0.011556452694126649,-0.006750147905041519,-0.0012653206585198115,-0.0030333652107892074,-0.003476062794321069,0.009219636837398596,0.0015587192779744617,0.0003705124756080954,-0.0019369685219249304,0.006835877424794682,-0.0031292098306251984,-0.007268383558027463,0.001696376724259257,0.002900603829204231,-0.005147155295925447,0.02649023506357639,0.006160158702986918,-0.00679892639069362,0.01013795556390952,-0.0074894985928697115,-0.005872323170815188,0.005667491120680963,-0.0020370472089647294,0.009010632012241926,-0.020155556806950845,0.009362651217885891,-0.004220636772041496,-0.005434807344294604,-0.01579845736414786,0.00023022424066463453,0.00158614690574944,0.004048094526753782,-0.04728570146881775,-0.04637954540916098,-0.04356888420649556,-0.013056421591411757,0.0013671942132701816,-0.005040472735657275,0.003650476376352559,-0.017984872705743938,-0.002792644878705735,0.005477243363810399,-0.01642532120196349,-0.00575855592956098,0.0069118845518443,-0.010915720767576076,-0.0013327664623317551,-0.010345454345308723,0.0013712307638303462,-0.008634452037404492,0.004640308675516181,-0.00678215073035963,-0.011510585101917577,-0.005060876634672403,-0.001797581802627309,-0.0007780260308860368,0.012562997076844136,0.022931923045691378,-0.005448377155763072,-0.009670499028569365,0.0030560644210089216,-0.006614090192584969,-0.01139092985586252,-0.006200793473732465,-0.0059844948682406165,-0.006800649170382996,-0.022095466233871583,0.006082539081849178,-0.0009102626528841669,-0.02849572649820457,-0.004473593941764143,0.0035717044267700635,-0.0017516602688863012,0.0008258836419495264,-0.0042719664433559035,0.0029717972678424305,0.00435301656198134,0.004849477876837877,0.004001524441434727,-0.005473559038517892,-0.004489528631771378,0.001133771922719512,-0.00406207610883715,-0.006803250674501662,-0.013590678962716774,-0.005330240840185951,-0.0022878323453066132,0.0006983642293106964,-0.0008300630998182865,-0.002841687574851639,-0.011784427047655154,0.0009092016930256766,-0.00037691736253644455,-0.0038237010562733116,0.0014015251888047917,-0.0021436464804185126,-0.003814756330216142,-0.004282506849114026,-0.004215205514957901,-0.009902384895130472,-0.005157444084855384,-0.008229006026948272,-0.00775291362830885,-0.0313834116855486,0.0027508942926079663,-0.0008702554276168655,0.0051299134711388925,0.00019734642676044737,-0.003797746843760946,-0.005352850649441545,-0.008553524883879499,0.0028812403307076095,-0.005594960626795373,-0.0068234068038667255,0.0037695470535783144,-0.00024105230968112423,-0.006587128793941183,0.0020933632980223026,-0.0006327269773432854,0.0013568916888629817,-0.008225655491101368,-0.010294901026502958,-0.005914893158737172,0.0003543778928245205,-0.004595587403570898,0.003367561331733819,-0.005380374838808836,-0.0014382356314857033,-0.004334731487200642,0.0012716684752528066,0.001271801548182141,0.009142087207262842,-0.0008120168323841163,-0.009289821092950913,-0.006478912762426326,-0.0015270910892513938,-0.006278876384655214,-0.009763754676518648,-0.006481243889894245,-0.007811698270049433,-0.005904300841739983,-0.008537965041443807,0.0020879569557617633,-0.005414635275425178,0.0011723293823471433,-0.0002222414567947629,-0.0022703865695478716,-0.0010922073618181755,-0.0015549014596648715,-0.003938325059337665,-0.005856941832084714,-0.006180739550818419,-0.006459761545298326,-0.0066612989313598265,-0.0006725571892117817,-0.01402735918180079,-0.0029463362499098276,-0.00787998766364976,-0.0020026787154661012,-0.005672108885317257,-0.004714474229228626,0.00024306457200325675,-0.0010132342116408429,-0.008936494038679164,-0.0040987584386622975,0.0010409220330006444,-0.003425449597609802,-0.010434742975123977,-0.015919311667288046,0.0004518313978493926,-0.024627735950420306,-0.006435871496451872,0.007425075581746822,0.005605441584738352,0.009790863355612217,0.0002576750613072433,-0.0022407338793280426,-0.007896564380029484,-0.003809881234247456,-0.0031028824376846593,-0.004101349671794954,-0.0035916161317660076,0.03319163612878661,-0.00707972343797403,0.006005949806085766,-0.0019404935831366919,0.0031009590999402006,0.0065424469322462285,-0.019577622991095042,-0.008185505672627349,-0.01215335304914356,0.005041217318036082,0.005061285055562439,0.006218317548660692,-0.006815818874538776,0.002076166604183278,0.16458442017274216,0.015747009663790213,0.009881142447627396,0.011319476729329819,0.0026289950534186288,0.009159922049650826,-0.005296626211555486,0.0006727984573827872,0.0010285981604801267,0.00025451598957208766,0.0016498234161853955,-0.0027909597911258315,-0.0036803822920806564,-0.006961948221134864,0.0005720814589000985,-0.005941348670018638,-0.005801557518857254,0.0008903221229040417,0.002447781932608014,0.002064924471004194,-0.014211413627267095,-0.0028313662617100084,-0.03761596711543664,-0.0027317014497730834,9.179426633588986e-05,-0.0043371260728142106,-0.020386430819465465,-0.01167466264963651,-0.015505879725473813,-0.01865288138650246,0.0015654124552753378,-0.004027560538189264,-0.009512670303271313,-0.01225469202702763,-0.00938295833146653,-0.00366392465707323,-0.004708894594013796,-0.007803121878983751,-0.010548186795637144,-0.007395877736747303,0.0027488937434984348,-0.013447579067517564,-0.007586663038854027,0.0021559729985103633,0.0011254618497279817,-0.0015151316579504852,-0.0034347413240205767,-0.005809190580036801,0.004737651749878889,-0.002464795147453013,-2.1564887313518487e-05,-0.008143359202328275,-0.0037747818758764587,0.005545666246454545,-0.008251821635539272,-0.0020749989403833435,0.00520110587858361,-0.00042806979831529315,-0.0032631374152409438,-0.00013959984462779171,0.0005435518588047354,-0.0005256840381467581,-0.004774078836739485,-0.009109323265327826,-0.0012403049441579576,-0.015921717669140915,-0.004638490261558871,-0.030747937488590782,-0.03133378744587153,0.008080383113467421,-0.0015555319907105414,-0.001811524881497577,-0.011008648634197178,-0.004896665887401423,-0.008821727988986321,-0.002058471744840716,-0.002378726467394652,-0.04036839615089325,-0.009143469061884646,0.0012912907669843387,0.0031638319229183184,-0.007614714910034391,0.006382660557315879,0.000984098693520233,0.0056948739236539975,0.004159940653170693,-0.00595890003543671,-0.038551256844455005,-0.0015554731871420969,-0.004980658327457516,-0.003591929554964104,0.0019794419966809138,0.008640622325638085,-0.006899952839544882,0.0034944201034469353,0.0005519218521433557,-0.005075276894930302,-0.005135255688928576,-0.007819854133767843,-0.00616109901248733,-0.0005167669530816836,-0.002057760683926317,-0.006937266987521561,0.002335020630185405,-0.0134416238433679,-0.015225958815827261,-0.017687038979411505,-0.004139620118307598,-0.020611573517125777,-0.030943931944814644,-0.012265838088535404,-0.01888385431372071,-0.024955098782913028,-0.017765761640049046,-0.005124335456840696,-0.004571400095592887,-0.02896268128904543,-0.0036780462914888365,-0.01661220380317444,0.005725413201544105,-0.005514439058150107,0.0064932182433102715,-0.006107173173089962,-0.0007357329546347318,0.012113035933208402,-0.004111455595735008,0.011667589776997675,0.001752771249582923,-0.007224282154745905,-0.010216117595164421,-0.006796091602906006,-0.0037871604800340827,0.0043945917973142665,0.0013715979997115765,0.008095438009876997,0.0012395219374667702,0.00381710550319708,0.005964242128736962,0.012041684084255853,-0.0015320454159572284,-0.006787385055730603,-0.0012108338126377751,-0.00529713589622938,-0.004282012214865739,-0.007435994707434437,-0.013669748989418503,-0.0005834224415611328,-0.009149518992599031,-0.0001693176435820015,0.003950984437503952,-0.010854657522162072,-0.008204696499801956,-0.00696454950444575,-0.0035114135252394475,-0.014664006553724218,-0.0017458603469695294,-0.031179371904584804,0.006542843264052766,0.0012420286625267564,-1.6808522356466308e-05,0.05255557693872997,-0.001997310515865162,0.0036602356665943387,-0.025968048459882827,-0.018506342805083606,-0.0011753152827335917,0.007185583699094817,-0.000804344310716651,0.0006066680750810227,-0.0033726889882846113,0.001144695521454014,-0.005945624755044427,-0.0030866045295321848,-0.006634374089355155,0.0013255007249917486,0.007181199743077702,-0.00600481691267694,0.0006866578114311431,-0.001556786241674999,0.013982626120256202,0.012553451132179965,-0.0022601804457486954,-0.004776927453178222,0.006505834776482325,-0.012997161830863056,0.0027031528711271625,-0.0016661584712567804,-0.0036192680995044803,-0.012877581308143014,-0.007929299913862316,-0.011158192958041813,0.011388284457225143,-0.002055012784321552,-0.006737399772986387,-0.004397593608541752,-0.009914548528316188,-0.006632835782908224,-0.01691854109273069,-0.00979199856186711,-0.0050210267676818465,-0.006149467692386104,0.000993939374316043,0.004903690567163115,0.004616961765208112,0.012278778327369998,-0.005624297110643132,-0.0030152775054307682,-0.016160907194500033,-0.005254662894524922,0.16805851834319954,0.008461325185451805,0.00045671173903512904,-6.936714024312216e-05,-0.0013559079235721898,-0.00036571749529482246,-0.0022288533915124295,-0.017551854944705084,0.002609763267389411,-0.010043848918708366,-0.005322050471602424,-0.012383329308838214,-0.002796825931379992,0.008130546646263032,-0.013683262719911453,0.010313018257258298,-0.0018300228162214734,-0.002572919012058128,-0.0023490083552838155,0.004267226073837222,-0.018801193860668333,0.0026987703678072314,-0.0022861475104875464,0.004288390158612479,0.0020274206831560034,-0.0038818108658403446,-0.0008344991687259054,-0.002196007779045001,-0.0009489882783701081,-0.009386172503858793,-0.02583094107057471,-0.011550505838859935,0.0077064369414380045,-0.0006561748577094637,-0.003811326159231524,0.0041122355768416375,-0.004536172668004284,0.021347666896852097,-0.02066761662820573,-0.0062977415863877005,0.0021168470909403046,-0.009061737561706267,-0.005194851241447545,-0.005479731304696561,-0.003909541523570584,-0.005367940536644078,-0.00460940678143916,0.0030558057907773156,-0.005599625287646766,-0.011537425502653274,-0.00920687205981231,0.00907209404127741,0.008334134653786011,-0.002837257303315786,0.013646692256489509,-0.005314673279851043,0.03122204237420318,0.05240625503762629,-0.0037464986199911366,-0.003845090414595726,-0.0007993075611070063,-0.0010853237889812282,0.1383275418139093,0.006753209263910238,-0.0015878870094891318,0.0001661092898578593,0.0040772741887018515,-0.004994606885252804,-0.0002631749085427972,0.013306189635910865,0.0022912152194429296,-0.007887726307677173,0.026534334023786008,-0.01256520612229685,0.001312480382984008,-0.004652289971490006,-0.007340397422258493,-0.007705114587765579,0.00288162983173614,-0.0037149985424902105,-0.003962918825034019,-0.012398169315257557,-0.005039782558373541,2.3058787355166185e-05,-0.004893335298317354,0.0018590158824861869,-0.011412848731313558,0.00012852005731031307,-0.022574853213859353,-0.011686514203882281,-0.0055079949685311975,-0.010289339804245776,-0.019619240032798014,-0.01987236167635786,-0.017963649394338203,-0.018194683934853316,-0.007859419802004896,0.009557619360190365,-0.026390645508593828,-0.03779334522225298,-0.018124240239343208,0.005626324814509891,-0.005750895686407448,-0.0047594874980646665,-0.004148890010562992,-0.00514885767463647,-0.0039805085724686235,0.004406242072363364,-0.006705541740217368,-0.00043017751770541604,-0.01059743235657146,-0.00814879815508618,-0.025517290938414525,-0.00733550657887701,0.010241577099158414,-0.0058426850911178245,0.006672787425684723,-0.0008171256075306728,-0.0234591579878183,-0.004964859608313068,-0.003889744390566177,-0.003437438429890603,0.015087228098615882,-0.0025853547997941296,-0.01180989239250751,-0.000742652507775504,-0.007097055042199157,-0.01739575373662805,-0.0032413355786824844,-0.008833191090305186,-0.004092435072947805,-0.005260578168078656,0.006105233097499092,-0.026651588923738614,-0.0013098233207218895,-0.01905921421918842,-0.04682988096518402,0.006780829192732231,0.004462694774916807,-0.0014633893364103024,-0.004183830425384831,-0.014814572662948607,0.011017093567198918,-3.0941303784638084e-05,-0.001156398494245787,0.002302139496950305,0.0012874432992783125,-0.0031319335806313285,0.0026012350670718658,0.006609858769819417,-0.005329247722196186,0.0036691654044067965,-0.003402997077159939,-0.008200154580473998,0.0023023478129541265,-0.02530917987852867,-0.011045890055601158,-0.008370608722658466,-0.01803618152800719,-0.006691547484368932,0.008448241041329404,-0.01702593183759933,-0.025325788849686885,-0.019134099284274352,-0.0018450955533041394,-0.0005507303337309777,-0.0037655163727137145,-0.0012234535589703817,0.001530685885720935,-0.02270345438129855,-0.0018154426658362646,0.0013953798205925542,-0.004074919781130924,-0.010809198080528307,-0.0019691237806546687,-0.0046066103333340025,0.012370055751103596,0.0018351923931425784,-0.017871681858181478,0.012371524047001323,-0.003910947911940605,-0.006616075080605179,0.0006517411250009752,-0.00543795781163877,-0.00608729742873972,0.010923068014777325,-0.014695710855951775,-0.004153857785906847,-0.0030477717668842596,-0.0011332610521210666,-0.002157054554295555,0.0017215765393001528,0.0026566677811248568,-0.005840947850234003,-0.009361833874607033,-0.0027413294151284375,-0.008139455238672056,-0.005225145102289039,-0.008165597763331514,-0.0065036373786148596,-0.01469204484045881,-0.007210467600623401,0.0006552699727646201,0.009706827576744619,-0.012211791529544016,-0.00952348849657243,-0.008220691962310556,-0.002367249769142714,-0.008716820260415037,-0.018843745871958757,0.004885660205383118,-0.004693027261021787,-0.0009578490435318798,-0.00832498300093432,-0.044501564089630935,-0.005013541034511669,-0.00043710704169941004,-0.003494045688980333,-0.00011402670577830903,0.00853234301370141,-0.023126439275882944,-0.00214835012643303,-0.018887016785351922,-0.0016755945366747724,-0.005522869905461177,-0.023684553111084684,-0.011638908337212076,-0.0052063193406219664,0.0021405276760400062,-0.021040716485519563,-0.009648240972103147,0.0014773578838385326,-0.0014498873662417836,-0.012043208066732964,-0.001021088711593031,-0.004328720568040417,-0.006883609407943467,-0.00371937562289037,-0.00699064982489448,-0.00015486204209712515,-0.0050726411733751225,-0.0019545926365805333,-0.02603285872463497,0.0014828851772135745,-0.007329301825138458,-0.010265119914050167,-0.026722260933331417,6.462747711089447e-06,0.01348836113744767,-0.010074351810960091,0.007124118063091682,0.0028373102526809916,0.0006960513627596065,-0.01148054267292423,-0.005663769866699541,-0.00044033207017262946,-0.0013729192057016372,-0.014697543734581292,-0.014235410204784037,-0.013497413308655852,-0.0032317658749574114,-0.002826766842981983,0.0010922106638879226,0.010478100449420363,0.014468906248357533,-0.007646361529860372,-0.03778945872269392,0.008277549316616692,0.0005587289237786618,-0.020065603765296203,-0.002189649978993986,-0.008291692308331692,-0.003841203954905241,-0.023016207536767964,-0.0100906682853717,0.004330776423672946,-0.0138558791059014,0.0002191377711798184,-0.001098704657715899,-0.004148282574559155,-0.011527932827188888,-0.011126141052011342,-0.009423225499419607,0.016964453074284402,0.002572878155846683,-0.0019479733740438575,-0.004213485535776974,0.0023941411327811344,-0.015076836251864604,-0.0003577851185671432,-0.0008720958411084037,0.0275302458913161,0.004364407789104309,0.0015445008277903947,-0.0008886973526724801,0.031956373182483545,-0.009351583025042782,0.013841083149033298,-0.010645700176049619,0.0013852299465876893,-0.021212524387023972,0.0023104548531624855,-0.003931043119147781,-0.011920103697807499,-0.011548086675778325,-0.005098825935042145,-0.004683227442098805,0.0019463584164162175,0.0013277647392370758,-0.02584525382306259,-0.0034691912601775518,-0.008951101786622293,0.0025826188270172824,0.004440774997164692,0.003965577590287621,-0.006869370978842987,-0.016663153307312734,-0.01097472228999934,-0.007996118244565222,-0.008070565923370222,-0.012062013361273029,-0.02811717195738375,-0.005162540254370502,-0.01657842258728185,-0.004603377469689818,0.005076396121833996,0.010604784566337832,0.005172170478170578,-0.0006880626225966809,-0.005250865546665955,0.0069542104194058076,0.00299479423347635,0.0005788951268632324,6.193255496447044e-05,0.0025826039471037463,-0.002964892258047665,0.002210201132677018,-0.00391266054002569,-0.018720244577566277,-0.0102393784514374,-0.0018404379654668572,0.013015424846385985,-0.0019980667282893253,0.023155286663186718,-0.001055080830769163,0.0007664621043726688,-0.008212228797399839,-0.00812523072004027,0.003931990851601646,-0.001775472517002466,0.003904848361360885,0.00021152637546906038,-0.0022322583180549864,-0.01967291584590546,-0.02183333029470501,-0.009818567029884628,0.0303733056383448,-0.0010350882202560278,-0.001593444904459877,-0.004333361907084962,0.0073465830686693856,-0.010219316574053783,-0.004025991913320885,-0.00341058523337368,-0.002063794641152326,-0.0014985592182445522,0.0033441847111153975,0.007096793846871569,-0.0022521227915367746,0.003688800198696684,0.0008789864678066181,0.008020216343662664,0.007150669559216706,0.0003999326301952402,-0.004695719751535346,0.013352179353999197,-0.002219862277954506,0.0029756792883497774,0.02852449922983309,-0.00041406428518810155,-0.005791752949969162,0.004909765296998508,-0.020749827661675803,0.0010805741181370266,-0.01295416750524611,-0.003796638344591969,-0.002697374353434404,0.00012451504618732792,-0.004812427844707226,0.008689610867485997,-0.007046048832007487,0.00894570560679818,0.011514657778147749,0.014589479418085194,0.013282132874822711,4.8316196006940675e-05,-0.01127331162978758,-0.005259318960309623,-0.00796918894735041,-0.007817897337813328,5.764133536802288e-06,0.008689774078253413,0.0012930228941854223,0.011956698208094346,-0.005487681599445605,-0.006351647935889049,-0.008803715683297374,-0.024726547853984492,-0.0016192571787931624,-0.005983773958507994,0.0007774859550589945,0.019752997447662658,0.03318474755989754,-0.0007192025972765965,-0.008818823614257024,-0.006850731795050939,-0.012011430413795283,-0.006820903885819891,0.004965990418771541,-0.004325608733210943,0.007404512669149354,-0.005508922247488532,-0.015023381752341365,0.0019989186914781266,-2.945964090089149e-05,-0.006992121197134,-0.01951775389140844,-0.00608977305880199,-0.003172667760544001,-0.00724392686528964,0.002176082947666032,-0.009424459958203821,-0.0033130348653365805,-0.011422824528389271,-0.004538769905261761,0.004513577284317257,0.004406886403082673,-0.01034389740753859,0.018116937420845997,0.004739961562870559,0.15561551689906264,0.0319902702272734,-0.004943117440869498,0.005388446107382271,-0.0001245643306614235,0.0031606189375392468,0.0003091767950156712,0.00907799322171964,-0.008932133398728836,-0.005469171151897322,0.00029906168707630285,-0.009784990542254452,0.002331804765721774,-0.013176571622856835,-0.004754740308642381,-0.015886415240018086,-0.010672954371050198,-0.007867620327307744,-0.0005477636882762412,-0.0039949448855696665,0.0017789316788013325,-0.0012949068153049474,0.0018243867584733068,0.013293988517776472,0.017647934883241102,-0.0037967721731628824,-0.012301795666495767,-0.047270661015352065,-0.01702272200161481,-1.1825952518829115e-06,-0.005462998331383527,-0.012882700300547285,0.004272886143850504,0.03818741629339865,-0.0020229189112665573,0.0025324101194772763,0.002635255920518669,-0.006787450806932934,-0.007175419695265076,-0.004765352855780301,0.004255624142310663,0.00042501301799390093,-0.02660037078589004,-0.015563868072269253,-0.0027463833118425915,-0.005448038096741445,-0.005054851424107949,-0.0012412061346295858,-0.0034561940192557785,-0.00012453683295484194,0.002381566769623094,-0.00044114924133798085,-0.009378309456542446,-0.010631985919652169,-0.002285844074804684,-0.0072895667698835735,0.004237107743342258,-0.0022562554851310412,0.0008780653687094067,-0.0007104749462195968,0.002572255531942259,-0.006499749820459274,-4.640078528479612e-05,-0.011092623934926845,0.0054145782077896255,0.00013570193292803182,-0.0028086239129392118,-0.004660384013138221,-0.007792398020812046,-0.002665079308100127,-0.008764463181642165,-0.023400393084121028,-0.005124210952190629,-0.01244705952798035,-0.00013905999802987508,-0.0057375513393624475,0.01070770899123111,-0.007205563867257619,-0.016553323154965615,-0.020662533459680003,-0.001454740377819701,-0.009542412564763774,-0.010836780047785832,-0.008851528496927061,0.0014331660856792313,-0.0117423826800689,-0.006791754687088607,-0.006610753770078658,-0.047395615769134036,-0.000874496198410977,-0.010628346035843308,-0.013643999336387814,-0.0026394468600818588,0.0012784625089445581,0.009131131503951404,-0.0013363479706663382,0.004678079890996439,-0.006317258065297283,-0.006061032985941819,-0.01644167287287788,-0.0011692381355499588,-0.0005376015373569835,0.008983229810170924,-0.009120709918403297,-0.010015946677677735,-0.007850681984649431,0.00011319773084257737,0.0010333852234332053,-0.0010499444551777457,-0.006384044106856638,-0.013086912803456122,-0.00423915823140879,0.0020257540810507926,0.0032364451976403027,-0.004698810458657299,-0.009107434157220009,-0.027768375099976077,-0.01579968816285368,-0.00695955342098563,-0.0013738869152098506,0.000517358351909331,0.000769721029014881,-0.015122016552308533,-0.01073396693494345,0.0024850672743041407,-0.002700958106787124,0.0035506029372912753,0.00654884175771901,0.005493262356096453,-0.00812348288546856,-0.02563249883514362,-0.004587440587886599,-0.007314855232935812,-0.0023493027106344564,-0.006809205181687937,0.014608337369644626,0.12491919651783237,0.012966546880931816,0.021718137820492738,-0.006924623787527194,0.0018016585760806277,0.0005079607568884923,-0.0002622099758300764,-0.010800561239084234,0.011244878981421593,-0.0018492213609008295,0.000247634287445855,-0.004115764476808827,-0.0053808864040938344,-0.0024218857928861165,0.00365496351769109,-0.011577095233276173,-0.004762640592480153,0.0067186040061437075,-0.00953507422362208,0.009652956088437066,-0.006697884667563754,-0.003072239305943023,-0.003657800679108229,-0.004123321634930429,-0.0010101323933680703,0.00527312322933007,-0.0024228076267821244,-0.005454761323066006,0.008868636473269027,-0.015520819892741245,-0.011345323098127642,-0.002773828662775483,-0.001962606943777464,-0.008922189444744742,-0.012903003852387187,-0.009200001466021126,-0.003911541495612205,-0.008481315436584992,-0.002706745524012592,-0.0010204747749413198,-0.009441850897090683,-0.010080735578152372,-0.003295488627968035,-0.018098620124536495,-0.0009508630575322904,-0.0073382220742021385,-0.008689116631126387,-0.005045129663780834,0.0037822876464295926,-0.018025312049218013,0.007006795560648175,-0.026448595543432766,-0.0026248604487434128,-0.021811654590840668,0.00876271413283252,-0.010306834465335157,-0.010327476066836289,-0.004788019441213808,-0.032852677766899055,-0.020945249068922124,0.002890310663396471,-0.009947408780230082,-0.006184540258475028,-0.009738981968198598,-0.02202172411246806,-0.00793955149949919,-0.003934146763319042,-0.029214272024440133,-0.007063089691861632,-0.006268076591189684,-0.00863082158788261,-0.004151339202937346,-0.015496457402937735,-0.007663884192816039,-0.02773048072354426,-0.008251536994837215,-0.005737599135539178,-0.007885418144924036,-0.02865999752745901,-0.0012620118988224012,0.0010569518150986333,-0.015473934548094141,-0.009716976198756565,-0.015488639473249842,-0.008013966438232227,-0.00603407732658081,-0.00873251377774847,-0.0063300021492663176,-0.004894004990720243,-0.00036757339505409106,-0.023203512125248422,-0.002702435448357279,0.0067143984196865085,-0.008590560191119218,-0.00878209172997598,-0.0335336987440877,-0.0026931841869622464,-0.003966008862883852,-0.008095844926753039,0.009899403178873058,-0.004054441530644155,0.0007914676364996855,-0.0035559924254636847,-0.0018783830847435338,-0.00217349069602058,-0.01038875921753761,-0.005012150339252668,-0.017330817287022744,0.011630700171366082,0.01754744264681954,0.00020135389082702007,0.007385449959923563,0.0013643118817829396,0.008960653099864487,-0.00824752425005758,-0.0006614726465361026,-0.0024902807178699355,-0.00759112346086803,-0.007044481460599322,0.14802737809257324,-0.02731084829349249,-0.0015130254654139943,-0.003966150744357142,0.004652360946938463,0.010667265279547759,0.005458853048030908,-0.00013871095481023967,0.016127711536735694,0.00024449095813006746,0.0014640034619237763,-0.01036795380808463,0.003978826867459905,0.00393502480035544,0.0015444368331871009,-0.0034277078256635674,-0.010515129710115284,0.00033615714167514624,-0.007255694243094635,-0.0075792237719930254,0.002458986702273568,0.1636719057127776,-0.0007131604324438155,0.07502426569048577,-0.0023843703666857155,-0.0012032195720091186,-0.004904946061013204,-0.010951470021399254,-0.0011244034695977027,-0.0054711569850405374,-0.007101488063725536,-0.013474635418875336,-0.005070928522970171,5.518774114311699e-05,-0.007948038508753833,-0.0029522186706553745,-0.011266267100955725,-0.003937359137636209,0.0014994278142429988,-0.015093330237397014,0.004728745573465587,-0.004714708416485675,-0.005138272631472592,-0.006702691472276168,-0.011287135117677007,-0.009260251896877313,-0.0015751392438080832,-0.004986864787226197,-0.006912391421445876,0.03940472195450724,-0.004007956187081699,0.00039736942282110355,-0.011570698758955696,0.010956512838530262,-0.0070219060124249175,0.006210077542142712,0.010888221278782084,-0.00019615968190162312,0.0011104288948805558,-0.004601065969864022,-0.002484974605468449,-0.003233337685260776,0.0036391745498920223,-0.004473751005250743,-0.001386149352591013,-0.012404964828281708,0.002059894141877962,0.010537893559112207,0.025982795406599875,-0.00197570883906239,0.0008771771474406126,0.014346968697259497,0.001872746435257033,-0.002839320822863238,-0.0014699479188051414,-0.019679884432392714,0.012899305828562191,0.007652772636799075,0.018506662122483204,-0.0201505431140273,0.00029278981429858153,-0.011773812306520545,-0.011033511279819804,-0.0035474843684466613,-0.006317013434263433,-0.0012272931599565016,0.005734800014552433,-0.001134011040926071,-0.0019453597242764997,0.009784733568140622,-0.006076698109808276,-0.007847738039383182,-0.0020255944728426894,0.009083740400539171,-0.0023861798379607433,-0.022678175525598806,-0.031473578805718036,-0.017760255659593226,-0.0019131053492107805,0.006270262646000697,-0.006459596331108662,0.0038031659474862005,0.005106483971851375,-0.0023921921473472056,-0.008730530015292542,-0.0045262798307499595,-0.012304756043167393,-0.0073294498183427625,-0.0009202004398707826,-0.00927074920406931,0.0038487061757504783,-0.005563663987354741,0.002496119327688155,-0.010115291670060839,-0.009166939008129215,0.004602671872315894,0.01016030749336815,-0.000988264299477911,-0.004978127810032669,-0.007642023926260893,-0.008245330476710902,-0.011930849989484451,-0.007463279281422671,0.011545944331782493,-0.0037973067370034737,-0.021224626822001783,-0.011585879651881126,-0.005303575350012332,-0.0064944256062735,-0.0010903045883630443,-0.0024385738397047457,-0.017358949176949558,-0.006011496943618547,-0.0003179936323195853,-0.002201496178980313,-0.024717857105936488,-0.007647894525933732,-0.008571394089825582,-0.001395660048677186,0.0837274362530622,-0.01119311603449749,-0.011827555187292492,-0.014363810418041946,-0.013344661198641415,-0.004028909475976194,0.003100420947274931,-0.009230837734847588,0.03614966893453581,-0.012595964619630048,-0.007302115726760914,0.0016927313813593957,0.0012613102953780973,-0.00362857910165263,-0.0011839972059639698,-0.004585576939763299,-0.006016795271830262,-0.0037438327838218875,-0.01052619201959187,0.0007365921059673031,-0.0070643888582059165,0.017270601470829518,0.002746314599738529,0.001344455020208817,0.005582814040427141,-0.0029053417156436837,-0.01460509877827776,-0.005464350490930526,-0.0013794483240716932,-0.013122603550944445,0.005087388027929008,-0.0027469734295898973,-0.005411651478832023,-0.011171564734352126,-0.0011578112549599587,0.018847202301971944,-0.0011546175389954521,0.0016656430451894827,0.08773173329570277,-0.0004128580666772713,-0.0004063971806364847,0.00951805926207116,0.0003768313789126521,-0.0022272351648609263,-0.0009199378182632295,0.007315042103181472,-0.001993947499877966,-0.004554639983105195,-0.014104231897173396,-0.003935271423884952,0.0010585920970053782,-0.0075749833854314805,-0.0007697448377203727,0.007037943908843948,-0.0076446783078964985,0.014079950888333378,0.002996044622910806,0.0005901242952094796,-0.00566287599595112,0.004530390796381045,0.06036942136687045,0.004194732181713472,-0.026112181589354452,0.0007013841879686911,-0.004137463274673368,0.0014762305673056433,-0.013049316050224453,-0.0023342620347738233,-0.01082271028820398,-0.008881512848281705,5.856320285860341e-05,0.008515232369516254,0.0036358966742289847,-0.0037615662548253917,-0.0020608257147867936,-0.0063437473562910065,-0.012061275830943938,-0.02098354529436775,-0.009206407466413085,-0.013128065553581791,0.10182798647415037,-0.0059168874099219185,-0.0030154585678266645,-0.013351394104456016,0.0022245450784266598,0.0021296421848573943,-0.00025756668074513933,-0.007817135002908112,-0.0014361005629068102,0.0035434488320050745,0.002147083500693481,0.0021010170812523054,-0.005530253162666108,0.015410908979860128,-0.002075788720318179,0.03568732781788899,0.030377178064102492,-0.012081328661440006,-0.006351088282834208,-0.006983875859643947,-0.004692532521815437,-0.022828154901555993,-0.006589199316266822,-0.005900167020563095,-0.0023350950306547866,-0.006137498133684949,-0.012368962432657686,-0.007308733780612074,0.015191545534449005,0.0004618526001125295,-0.0007977369642788582,-0.0018540311952622995,0.005179422883230504,0.007402362632843183,-0.010392704447255855,-0.0008234651224201042,0.0043561186767954365,-0.010158810653246397,-0.012279996825731348,0.0011192479329631237,0.00029420346435167705,-0.0013150209764961048,-0.002686648962695674,-0.024353278526380594,-0.01090519429941258,-0.0193855363657858,-0.002391836216849435,-0.00701333039518738,-0.0028772514401711924,-0.0009999765106030714,-0.006180919685580629,9.439826355427563e-05,-0.0068607994915787585,-0.004473319618800261,-0.010087667523779256,-0.005201233038650726,0.007115686932649916,-0.009071410176853163,-0.004574520510964895,-0.008881039083187691,0.009525668372659403,-0.004550199992656016,-0.008965846420966964,0.0009484297951811831,-0.0020377072323867875,-0.00018931167199496218,-0.025082876355334755,-0.005443612775534657,0.0029885715937163124,0.005915906181520239,-0.01761140914251235,-0.0015722905885527088,-0.006895663554545506,-0.0036016532786977825,-0.010157414400532699,0.0015657958275198717,0.011245528960928246,0.0012071584528421677,-0.01014823781620822,0.04345879299834721,-0.020153856042865747,-0.01873833400361745,-0.02982732352268995,-0.01262801191503815,-0.0022960458059277976,-0.002310830036333158,-0.007998403188189004,-0.04003381752880354,-0.014598984439856015,0.003983183310058795,-0.007059341355429472,0.0011417821776485207,0.005774300215265697,-0.011441356138007014,0.00687460714693628,0.002932039352686186,-0.007076575529346666,-0.0013078458486402503,0.004742332677698781,0.005060542015984087,-0.011461706042593434,-0.0014035333976089358,-0.013530558471011181,-0.0036070106865324844,-0.005646109974971412,-0.009166777964148672,-0.026830688467957393,0.04741780642680049,-0.024947066242541793,-0.005323610615074378,0.008468349326974973,0.007849291025390113,-0.03327392095594305,-0.006332569861780091,-0.015425146848628288,-0.003274841811180621,0.00286162392258559,-0.003121641781428729,0.000764379582024772,-0.01973311951427943,0.000576797270293065,-0.006080482946728952,-0.0024335190536592818,-0.005253687681661719,0.1672882130492194,-0.003583530887617549,-0.0036935295964630748,0.001150349000637792,0.005151945469725243,-0.003064156391985594,0.0012416295730907619,-0.005580127989774561,-2.427664954204425e-05,0.02111162359052769,-0.005028312985318897,-0.005738629812638755,-0.007921635935873486,0.02440026857780489,-0.0038958622629492712,-0.00533543135443536,-0.015358184440367198,-0.0036854792715047533,-0.00823387666072229,-0.004179865257712402,0.00029392653242661844,0.0006513670298989245,-0.0023106884030337027,-0.006595096683462003,0.004563687720103422,-0.018555430014953002,-0.011895052593681841,-0.022248699717141787,-0.002573784337051657,0.1617921218501755,-0.00823542253152796,-0.021133658371282713,-0.017071812836287847,0.00020210123550745785,-0.016174227386615288,-0.0015369363561175168,-0.0056754919360679935,-0.006364700921038311,-0.002260960293129996,-0.00875795961347041,-0.010325951209751322,-0.010650797846412855,-0.007133912821443119,-0.02336540455486047,0.007503718112112968,0.006390182720678211,0.008919893286357113,-0.0035291090295820875,-0.00886687703443512,-0.014263084080094607,-0.009995425852463921,-0.0013603428784429142,0.0057627504261934534,0.0014261892534849774,0.003083667834664484,-0.010699326730232649,0.0012998872052690231,0.0019453923629408234,-0.0045764941563070805,-0.00376439049245302,0.0008805606549397934,-0.002206493873301353,0.0012220821031536798,-0.004902369657969833,-0.01153744940322257,-0.009980036104596907,-0.006712098354088872,-0.004110162023189959,-0.009226717849960538,-0.002578929963475538,0.00378231588319056,-0.010822268637776205,-0.007579521694599527,0.001758034008414203,-0.004098072927993746,0.0006478318165730918,-0.005472756039785609,0.004067931585242611,0.03515766008260837,0.16069761369516042,-0.0003125263027252011,0.0049387159247969836,-0.001666520828844632,0.0005281258728654227,0.0007562422813272086,-0.012243177469563136,-0.010057029759172264,-0.002336831488465255,-0.006570178615999763,-0.010065821521752609,-0.012933879539741218,-0.00248434012071111,0.006270401931431161,-0.004885460137569453,0.00477484104258867,-0.0008487972417597659,0.0013923216366928295,0.00675130254307344,-0.0191633999339046,-0.0032697305113937444,0.0010140682505027471,-0.017016717773065668,-0.013221194213912235,-0.00756170008269996,0.009273545536011975,-0.0018435191433959824,-0.0031901928432143986,-0.003066522104656002,0.004369017509941719,-0.0016390061687094936,-0.006057346683073517,-0.00317055659188025,-0.005634154898434561,0.010146082447635187,0.03129050333784594,0.008516988688255902,-0.020743474516417434,-0.007501919658509922,-0.011845414649524651,-0.007523658451056635,0.0005789146664543147,-0.006170120998396542,0.003405990955949732,0.002552588324436024,0.006471007221064871,-0.0038104930349150408,-0.0025898959171191337,0.0032992463009549697,-0.00027816130556325576,-0.014239368215695316,-0.017382001262934446,-0.006574198779462762,-0.0036860612207060776,-0.023161577566622262,0.003371184074116935,0.002323388384775874,-0.015067747522301406,-0.010826216775271683,-0.014117102713148123,0.0017234790180106023,-0.008914487376239144,-0.010475002621538216,-0.003745464431141224,0.0015920948591806616,3.435906261448724e-05,-0.002543919232757022,-0.0013335492974793654,-0.004306109825480708,-0.0031451209820717325,-0.008570516800334951,-0.007882321704889363,-0.023005849471347515,0.00910224659777817,-0.014256316212897116,0.006537112836905777,-0.0029421551724417576,-0.014587664435308309,-0.015615524241825529,-0.018398522951785755,-0.02164086731682082,0.0055043901985155665,-0.0064080863095358764,-0.00458998379127135,-0.008442547599091512,0.015600464160318633,-0.009045885194373044,0.006184584499374867,-0.004431999950537307,0.16744164217978436,-0.0198216729516435,-0.0024448780434654857,-0.0013058355918196699,0.0010217556223804081,0.0053224857439160556,0.0002837126159404065,0.002471919350929568,-0.02520948519893,0.00034301289321689814,0.0015342795962139282,-0.0031550519291454818,-0.01052194962436077,0.03932356984160124,0.00857538564414906,-0.0038375724638930416,0.00048531751720136423,-0.012632348279616434,0.0049958939019153804,0.022215929523655597,0.0010914772767770895,0.014709429650994246,-0.010368548885754144,0.160534728877733,0.02046893330909432,-0.008616265172644752,0.15489791257208121,0.0007445707550791175,-0.01814352246845497,-0.0023568093589130617,-0.009954204502337742,0.013567232419392998,-0.008847660126777221,-0.0024184643030153935,-0.004176977306137411,-0.01041022430647273,-0.006706802248582833,-0.002196761436687061,0.002526620793216652,-0.00662702897856688,-0.01861950148983534,-0.009821827193859595,-0.018193473472720836,-0.02030876939337792,-0.019733060719706628,-0.0009771487523302029,0.009738414565201442,-0.036335413775040334,-0.008230525338306365,-0.02019996056769887,-0.006426368684953698,-0.0019840120643371192,-0.0025790410042451253,-0.007496171891252217,0.0005207136223777455,0.008359592788979815,-0.007626449030421232,0.007396852596526628,0.0005119006947491993,-0.003159061223953947,-0.005283583556860696,-0.0023800420828434775,-0.012090918885831867,0.00580700089805636,0.006388786775552554,-0.004447501374709275,0.0021076981517540927,-0.0005151920184844765,0.1635810304325587,-0.0079008573732727,-0.0006741385715897804,-0.008417674317561321,0.0018476842463882673,0.007587984273867168,-0.012617201910754364,-0.015618340960170951,-0.006831926534038547,-0.00595077220340439,-0.0012100129197329989,-0.008267666738102048,-0.004729477125769835,-0.016785012053103864,-0.02624899332504215,-0.004363910998935858,0.0024532141215851877,-0.0026543565483401576,-0.0006383302734262445,-0.021068787573950806,-0.00645577935388509,0.006396591561667157,0.014835997063484482,0.00896837339751528,0.03084660289397711,0.005325925305295105,-0.0038863713789178823,-0.007671373418559337,-0.007894423063827705,-0.00251487351000114,0.007164042919553625,0.004808696955726543,-0.006319910443038544,0.0033007840754035673,0.013808510913102152,-0.01146982916930232,-0.006022941008239193,-0.018456758874447924,-0.0018153239318892235,-0.010847181865170571,-0.0006144809510068358,0.04923995856983073,0.027074341527794372,0.009027615615871929,0.03720436773397162,0.041744372519146276,0.016141438043466075,0.007343319319766884,-0.011536775964214001,-0.010199853260664977,-0.016657803062755383,-0.0001455307353646105,-0.014808895392656101,-0.009988108026970274,0.005175444263805433,0.027313977122431343,0.01207698098091259,0.0025731071605910928,-0.016526927581832378,-0.0006100783151884835,-0.014609439295581355,-0.008294560973973549,-0.006304282842264546,-0.010830033219470568,-0.008295931925392644,-0.0012302370638324843,0.002218495646836767,-0.01861159116995686,-0.0010458490865623826,-0.003085760367164708,0.002166368550162592,0.0008348335017634219,-0.004146366527639448,-0.008289951551079831,-0.012012985500232614,0.0017357446195616511,-0.004536724773658552,-0.0033365398050638146,-0.003161785024638205,0.0028862883112112346,0.008577696668710375,-0.0009309943049461186,-0.0025942018622212813,-0.005719457957204024,-0.005688740408096502,-0.013444961049735542,-0.00439147682973984,-0.007410695582182475,-0.007404964672583942,-0.005117242521402656,-0.002673751838280101,-0.00219035361505943,0.008695876688110568,0.005505657186291859,0.008198994019968122,0.0015196356588995869,-0.007518366328082476,-0.005761766892938272,-0.005467142699141859,-0.010211263579934892,0.012000303047490477,-0.002833615072553526,0.014544499328998253,0.007122854208422043,-0.00281607360443337,-0.006718229167692787,-0.018382644767784753,-0.004383969216903761,-0.008557791269465537,-0.005060065062953248,-0.007029865863336309,-0.006087339448196991,-0.00041719359664723677,-0.004568314906665155,-0.004350369761523257,-0.008958402654725913,-0.012400315858802803,-0.0022586302491610514,-0.001172905081125676,-0.0024583399165201783,-0.03700888985807013,-0.014349647863264387,0.16200535507770203,-0.008514831846531179,-0.026920445803130386,0.004606154398912929,0.0067899352870704035,0.004361260511874015,-0.010267166818487874,0.00011164243840465131,0.007604810504993326,-0.007170760899713488,0.009164119531591372,-0.001095683386177861,0.012776171261422112,0.00039091160449484537,0.0007501565564388055,-0.014713519183468905,-0.0022374046982694185,0.0007177800200846798,-0.00043618834608801166,-0.0005982140226804688,3.1185040352958994e-07,0.00021830075155901887,0.005324608908399421,-0.0033903050726639644,0.00920749894498929,0.00446829696108873,-0.0028687433874333324,-0.005084509300553658,0.003148597929204413,-0.011435374150744389,-0.009722107981564454,-0.007073729791000386,0.007323099963323065,-0.008997287945160012,-0.0010275616517374964,0.002382580755983843,-0.017532326771106634,-0.012387317613939276,-0.0012942148874284139,0.006903712329372067,0.005640048680902284,0.0034723914552901147,-0.00886551196293731,-0.0011576687498216515,-0.008837614468810706,-0.007347467430044423,-0.006396499004720891,-0.0020010686492689164,0.00606355568154599,-0.004875627527661975,-0.0005038929122607484,-0.004189755091546324,-0.002672799415005969,-0.005017808666072925,-0.0017311064592081913,-0.004217918897309899,-0.0012110549620825168,0.006374641686021691,-0.017587170655371426,0.0010712054230641221,-0.004918328147080732,0.005774778945851839,-0.01632147008309372,0.003720696770287355,-0.009820493772786636,0.0014138495354995458,-0.008005130980402309,-0.013560261429875837,-0.010503829795898619,-0.000427149323210562,-0.0036557904426188143,-0.0005748238134829991,-0.006178943400961455,-0.008941663723367948,-0.00458205042401103,-0.003275078948345209,-0.004374986793991125,0.007317005303169455,-0.0032429743949102282,0.0044824943756726614,-0.010897100134759209,-0.005224088443962212,0.13496079272121406,0.004289013274403543,-0.009319797260966855,-0.008452802780708125,-0.013919125968582793,-0.008382849484551176,0.005812012448719379,0.03489608029714085,-0.005169379687840748,-0.008603529843688553,-0.004800548411255169,-0.002422999779073125,-0.00818092388030398,-0.004988576825740393,-0.005688675297261947,0.0369103075669515,-0.016228387355527046,-0.024797461536694994,-0.021634526394850934,-0.011030376541682818,0.00012570294824728234,-0.024072213831495114,-0.006084041366732843,-0.01301694182600044,-0.006201311819189513,-0.0017874067003866344,0.04014118508824066,-0.009709882453001827,0.0018572803295230098,-0.00490848721280736,0.019747379706613763,-0.005778763493345967,-0.0023450665591020544,9.675853943565756e-05,0.041087025226791196,-0.005685057643542252,0.0035827854430056545,-0.006698974629102733,-0.0026737039418032443,-0.02197566059709982,-0.010099032057427121,-0.004254878339277109,-0.01570706270401559,0.018148333265417288,-0.002429446733446209,0.003294438003686825,-0.009595770889760711,-0.023291506834763453,0.0011209766900872342,-0.0073185311315331816,-0.010690387873340937,-0.00379283040875858,0.00458319759446237,-0.010477830122854708,-0.0031919680834305696,7.863052594254883e-05,-0.005037419905258847,-0.003517736806125925,0.004469620215457486,-0.0027799918707105903,-0.0012534713048142562,-0.0009973368044835513,-0.009217341211968337,-0.005020295384052717,-0.0005908099846052762,0.0023854272382420956,0.0040584906019006375,0.004299820492070455,-0.012523396526821782,-0.0042974745647541,-0.017888180707180953,-0.0025677982629781202,0.015354892411658116,-0.003567951149656092,0.003069758060386956,0.0027941703115399383,-0.005157295873847173,0.0005493368743910903,-0.006391429495580188,0.0026750364341434703,-0.021567409209735447,-0.009606986004325932,-0.006130814611257947,-0.009554765513466417,-0.01176964371400224,-0.0062866634458908855,0.0003127468428742926,-0.007305621872108212,-0.003262522355049357,-0.0030727600273113644,-0.0015094037134370179,0.007635628017742644,-0.002478753050412192,-0.01488361249927192,-0.027226946140107802,-0.010216659405073861,-0.008558275141078644,-0.004567836407742867,-0.01060084511751731,0.003554050113643415,-0.013015246912176667,-0.0026894154325078357,-0.002373082139207366,-0.04290419971685947,0.023871813404575074,-0.007224086194838391,-0.0008017799641064661,-0.007113839893090598,-0.012239341597434571,0.0024236835919269556,-0.0017396589644437547,-0.010750406867004984,-0.012614329386798778,0.006095635913986433,0.041459378626762064,0.011822523074799371,-0.005175939930633946,-0.011585495131261775,-0.0060051678308355875,-0.01128444360248242,0.00400421043254345,-0.02148225738962449,-0.010981025038620779,0.0042823814451401,0.00975908509806718,-0.015906084146071257,-0.006693030855278127,-0.028120963603001006,-0.0052154802002722135,-0.00669580609468028,-0.02561373892972337,-0.003080274647754121,0.0028277117594010994,-0.003794106358841897,0.002735113362705181,-0.003308254561914884,-0.009312533227718712,-0.013646428964386583,-0.02485538962067695,0.001520007808989438,-0.024211132049096883,-0.0026785791338206676,0.036146272611617375,-0.011658732820092783,-0.026160327632015524,-0.0022381486244377005,-0.0010845807409813628,0.0071513824373323695,0.00025651538861191166,-0.0019549453054089707,0.009767304564870226,-0.003661829530799635,0.002952213733330097,-0.011376769827255474,-0.010709137395606355,-0.004456729196821316,-0.003850510669787849,-0.0057625665795064465,-0.0012822317564183101,-0.002289343595200592,0.009248045216210364,0.006251507645974008,-0.039262705157158725,-0.02772305293306302,0.0016765648134751169,-0.007568632823306948,0.0016472996470658623,0.00403699639586112,-0.0007533072427053692,-0.0026301393081999604,-0.008556993589273339,0.0006087706997944536,-0.007210260608381517,0.0005293488871018007,0.0037405787388310224,-0.00039706469134350445,0.0031851964868742527,-0.007116655926812138,0.004310815544886476,-0.0002682069933691841,-0.0012039062044828142,-0.002255249369427301,-0.004065855371084766,0.0010288636176857444,0.004596039785046696,0.026325528012524246,0.0005021459660820109,-0.02808485615098541,-0.004957134555805656,-0.014036741174269755,-0.001243069729617624,-0.01629315282367346,0.0037527370730531654,-0.014399020406214153,-0.01289946476434843,-0.018406056331238745,-0.0035243728453012726,0.0017885662398874388,-0.00311103294030613,0.004317682878265965,-0.018947574674700766,0.004338295883354618,-0.002503705595177673,0.0009280429412116834,-0.0009978050538749456,0.004597566850782836,-0.006990381869283995,0.004903876180233244,0.06240214840053379,0.15502803864655362,0.15155525285695284,-0.002870766762934483,-0.0015421049375474796,0.03839992931204489,-0.0037888155287818057,0.003115842612584049,-0.022330298965259083,-0.001172749353693346,0.0005624424782350051,0.0008083710229073387,0.00022850970358817633,-0.020918458777039038,0.001515455414786827,-0.0036790148420677913,-0.012848086854214522,-0.007235590694930713,0.005072249942994211,-0.011011461412481284,0.00461296873390594,-0.009970925725526767,0.008694277346457079,-0.023500261218004498,0.006671390250164372,-0.01625323417172311,0.0029364462293923676,0.0037391164848308307,0.03384532738581746,-0.004290689349536647,-0.004408194278632172,-0.010720032506587318,0.004583844014846698,-0.0025342822571104836,-0.012385844164720558,-0.0025815433539802166,-0.010082094150473635,0.001737725059984815,-0.003068386618318526,0.027696808296849715,-0.00767691723607514,-0.0078956874151139,-0.04710546357149684,-0.02379827097284232,0.002888103904933335,-0.01132254163673253,0.012740513745727731,-0.007555874153508286,0.0033775173284997634,-0.01710000850484348,-0.00673107923068391,-0.026173428030029127,-0.0005127216061273997,-0.021031374366306744,-0.013490620529066343,0.0010551602532113088,-0.011046480801336711,-0.0036616571541175837,-0.005174574401366572,-0.006470199129969909,0.1420330758356992,-0.00644591510058923,-0.01500912686071078,-0.011420279803391288,0.0018060056706752472,-0.003950173334181688,0.007585209808720654,-0.008156236267626479,-0.022877220733753617,0.004831108659802404,0.00751753011202224,-0.004803073207870206,-0.0009056619391850189,-0.004809247255699638,-0.002612435225103077,-0.003541666966624627,-0.003767771862250742,-0.00858396586190938,-0.005269014560596134,-0.004002024417118375,8.228432083480859e-05,-0.0036311633170847757,-0.002995507349821408,-0.003075561142042645,-0.011737187609482698,0.008493755942776527,-0.0021640840207271636,-0.0015159808140074971,-0.008398740542404661,0.010798340145296348,-0.019158595540288446,0.0024735048335493516,-0.01360399858666578,-0.005111379345819468,-9.522969183913425e-05,0.010759562838273626,-0.015400612923635721,0.005913149712536909,-0.016974449291402727,-0.021134862032199612,-0.0014697282891858498,-0.003170922547857037,-0.018904347415347956,0.0017797119573831693,-0.012494253053435312,-0.002766667304481278,0.0014611041126839606,-0.01020863846435424,-0.010395503789308707,-0.0049589566965572126,-0.019040828842645484,-0.01653894399614602,-0.01151256599099317,-0.002481226257067177,0.005029057643776474,-0.013147300621300102,0.014722450136194741,0.15244008359505334,0.0038287395650787306,-0.019319898665086092,0.001319740003437163,-0.007270116927025715,-0.004596984439519928,-0.028312461372793724,-0.03321689891419144,0.0021362120135275824,-0.0071359562441576435,0.002784733205019071,-0.011176191778139236,-0.021716885323369857,-0.004350255093597132,-0.0026897651785942754,-0.004549312036968506,-0.004005720005475472,0.012936553450647535,-0.010965432950335209,-0.01722352871900249,-0.01525410623516934,0.0026566385658074476,-0.005888701561225618,-0.013004702122655917,-0.04656997014976877,0.001525133260369089,0.004216514460934668,0.008381785113522652,0.0013302354858218625,-0.004057839111390757,-0.004639905028807411,-0.0046168186047921235,-1.5322444648918996e-05,0.0013059246987919743,0.0012633378202070733,-0.004518520336808719,0.00679942082337578,-0.029161130822104062,-0.019509801731454116,-0.00561308417574267,-0.0028166091624584988,0.002343042238131417,-0.004882996386534523,0.00423227900735332,-0.005280208808736306,-0.006139515487161341,0.0020500190287512012,-0.010287480866794806,0.010773639549879995,0.03921270145378079,-0.0032950461224686587,0.0023556574714342,-0.008383185851871693,-0.024654080216028298,-0.001954937722967713,-0.021200976205268167,0.005654766051171988,-0.005938462195915587,-0.008532124953887353,-0.008289324044985632,-0.009946979919209554,-0.008525425919633354,-0.004854558544211812,-0.0015928897275371368,-0.0034611894309138813,-0.013524236037264324,-0.008695452825638245,0.00027397398534875767,-0.006301065998582216,-0.0006187199438247158,-0.0020401944943413425,0.004091447936362521,-0.004066767095596446,-0.003176658273721806,-0.005662895460649694,0.0011307292561829742,-0.004855654278772724,-0.011044004225107562,0.005295407524994114,-0.007731923493516306,-0.0014041574124695636,-0.009944728023417402,-0.05044638774616521,-0.031971186254066176,-0.0076540467750450545,-0.011130123570426403,0.004242108354800517,-0.00918553954398482,-0.01222209301395434,-0.004596958576178569,0.0016158176774131933,0.007817927027769607,0.005698839618738054,-0.004681209298110889,-0.0068539189266662625,-0.011570916554681532,-0.003126682967431738,-0.003023434090239093,-0.012268149486502828,0.013573299779541064,0.002870017916617159,-0.019841048387865726,-0.009524311609410679,0.005733801724150285,-0.017050509254263112,0.005269368496434144,-0.005494981888181073,-0.0026094139652569834,0.0039155096721413445,-0.002737036419549857,0.0020683878066656415,-0.00537902494910403,-0.004267469904938636,-0.0025848548509243203,-0.0008642528681737978,0.004389219967677341,-0.010207034529544046,0.003770325342529985,-0.00232136367406696,-0.0051496804590988555,-0.003993174040961639,0.00436874696673152,-0.008885654455176004,0.006269443593174387,-0.001911290504459647,-0.007943291595752461,0.005745267473156519,-0.008095591237775474,-0.005606424212221101,0.014104722553443248,0.03857206480636986,0.01250137353208418,-0.02443015664018806,-0.002448471798889486,-0.0016119738035176676,0.03333179986103092,-0.0023456658170266614,0.0010700140765644672,0.00474310800394034,-0.001998939775628768,-0.0003937885587613324,-0.0017086044226135475,-0.005224039128652557,0.003942319529079508,-0.0050893773663238185,-0.005706414957665249,0.003069567805646832,-0.006830354293629821,-0.007255612624554444,0.012196448693473689,0.007049478481187395,-0.0015162913249155508,-0.006490570613746554,0.009998684598802453,-0.018291785473316922,-0.0032099539089885036,0.03178555504779222,0.0449530797393227,-0.002830057159718744,0.00394194878242525,-0.01814185487500166,-0.00800747206178287,-0.0017551395083131671,-0.009291706882241789,-0.0008534495942619168,-0.0018138479078699853,0.007757160774231583,-0.007861539653040721,0.0030428051320614013,0.015248350103095214,-0.036216377730383824,0.037782022957524856,-0.005977223822804364,-0.01691536902589762,0.0010711158639809632,0.006201342529033829,-0.0007821038995921962,-0.0047988801972852465,-0.0024194115797875615,-0.004207230168558645,-0.009111753190970951,-0.006683755860717204,-0.001433476024636756,0.05938171758446125,-0.006621974488453533,0.15343319958929003,-0.005768955878587368,-0.019557840787086098,-0.005182769431407291,-0.0055544234926522,-0.0019790005779081496,0.0023513968034293577,-0.006836693799379142,-0.0030759925909442745,0.00041565363728624286,0.0039025168643551287,0.031718600300713364,-0.01442504844448836,-0.003973145067391645,-0.00358578685745472,-0.0009361408353292787,-0.0014822583339611846,0.00453815314146724,0.005667697059890847,0.0032883584968606073,0.00034218058770129104,-0.0018986044545745101,0.001852588313879057,-0.002503289170334331,-0.008663875678804276,0.002984242176920901,0.003962992180727956,0.0011380467532989419,-0.006941937726479054,-0.014891673471564745,0.0011815753462946991,-0.004386446118548699,-0.0059999510824233614,-0.011429268229836335,-0.012109933470072097,-0.02078022505249592,0.006972294162062222,0.0038109620481500757,-0.00584463551802682,-0.004094223218599969,-0.029521652523622238,-0.004947288708143285,-0.00458293524404883,-0.011459363315321476,-0.005458315542631345,-0.00018374778225741962,-0.016119185018333815,-0.009935817147097492,-0.0023586853943270633,-0.007177160723979721,0.00010766555478959041,-0.0005158625629260068,-0.0098318622325366,0.014578739579901516,0.0014128275683899538,-0.004985163954033772,-0.004886527368935516,0.000968928753599248,-0.009343208315424963,-0.005869088720918823,0.0010915352820467575,0.0062628427218001685,0.0015483111488125507,-0.0037457599803547036,-0.0023465804591709014,-0.00272630970605358,-0.008753479039637382,-0.01921289046019148,-0.020601529233256068,0.0028104589101015692,-0.017346831705310272,0.010639182505579624,-0.0035633357283782726,-0.007606781812154428,-0.0017647982487474425,-0.004074653857488141,0.004238156523296459,-0.0120349489362984,-0.005172645349929477,0.04450902688989361,0.002231275546276531,0.0009906731112893747,0.002989739750295356,-0.006377992667605956,-0.008399022369828361,-0.01982981783962326,0.01328513053762917,0.004258906531906123,-0.0042869518015492495,-0.010266060882298445,-0.012752024356839142,0.06829494990032382,-0.008885841846728162,-0.016185449532184804,-0.0061922558543426745,0.007613730384041434,-0.019246498132260356,-0.0112170244333758,-0.010136707997417848,0.004862147839416911,-0.012260747110927825,-0.007413152850181551,0.010245299655071547,-0.00374328517170379,-0.005149363839306638,0.0021569255224514862,-0.0014659496382466324,-0.0037927560910462326,0.003729706781245796,0.00033935817752271045,0.0020676681680547202,0.0038984682334595637,-0.022205117674365702,-0.015649369285899124,-0.026387363064150886,-0.011238335561861292,-0.0017789325507999501,0.00019047826810854554,-0.00895353006984597,-0.005889414819635003,-0.0019125064734182554,0.0012806953479317603,-0.0014719780915327114,-0.007842251099869527,-0.004525169420984453,-0.008933307609038972,0.002022183618601447,-0.0028582467896861013,0.0015249636511269577,-0.004589542607862834,-0.024136927196227977,-0.012679085793259078,0.027139184403537162,-0.01779843775220547,-0.001435234498445765,-0.027017827458194213,-0.008393768590290129,0.002577366489868445,-0.016996218484565916,-0.016029419337214555,-1.1879878370931431e-05,0.0018637637737644816,-0.007511102714115188,-0.00316534119264497,-0.0030366635285004,0.002160221547619988,-0.00492953540239908,-0.017911090994299935,0.003849817697416836,0.005771400647290883,-0.012603607463453861,-0.014522244704335732,0.003522048355329394,-0.016877622263552883,-0.029887117367672154,-0.01689758692542072,-0.0020062813740724297,0.006012723030715967,-0.021169538274519638,-0.0034737800834923425,-0.0033621061495811254,0.0031144000949561504,0.005522826066469525,-0.013490188988759137,0.013803234031642662,0.00023696815424423457,0.004337614235120472,0.013472735125787312,0.003846539770392294,-0.0038719139111962862,-0.00394985059350972,-0.0005255374737856216,-0.010921881521302435,0.0011333978291002084,-0.019389059520457733,-0.011403247609753928,-0.005607883331584325,-0.004869601872116894,-0.005856696417863624,0.010509553245314865,-0.006209388436304328,0.019814106687709842,0.0021000549544406945,-0.004157682977754532,0.00828837062106875,-0.008823477109063681,-0.006536207721110116,-0.0015327449809434408,-0.003893982050148627,-0.0013945702725672593,-0.0004681776606543753,0.000905386704266672,-0.015261578806299659,-0.01149609592518073,0.13704255878400978,-0.008569824392133303,-0.013340922745889433,-0.01011606263984843,-0.01438796182110043,0.009881721975607716,0.0015257084292905805,0.005389473875611673,-0.006804276756679505,-0.01917856815796248,-0.003184105498551975,-0.005635009698542024,0.002778342320562309,0.028343322139092096,0.00155290726904355,-0.015267891263538957,-0.0094558160094396,-0.0028430307858870324,0.014390807820782543,-0.005332331550994411,0.004159291087100393,-0.0025377268919937676,-0.004170304430856552,0.00426929286302044,-0.005397732720708945,-0.024100613206530026,-0.009984895878607894,0.0008139527655125406,-0.018570075917121304,0.0033628927780664387,-0.0014703869206973196,-0.01565508511311215,-0.0025536833352837914,0.006699123371390461,-0.005378061041287755,-0.0012150541398780275,-0.018239648444933303,-0.011634451285456099,-0.006562711510567164,-0.008211813505292178,-0.024968596861219366,0.15089100252804538,-0.007262600803207347,0.0434264769213214,-0.0026868067914793507,-0.005372646508679822,-0.01666011091736064,0.014306909033984485,-0.0061951898731826965,0.008316910791781028,0.0006951530480733915,0.000896954477177089,0.004437303894215894,-0.012002679605267201,0.007560102271880862,-0.007577939108414373,-0.010419693190503556,0.006133753277148458,-0.003717456035528343,-0.008451300243228063,-0.0029503410825659064,-0.005317858002083279,-0.0112163633585386,-0.00786561180933817,0.0046400846110802255,-0.006910613939819981,-0.005681052030893195,-0.0011643853117861704,0.0018807755355235555,-0.015855622368894165,-0.003985956633587372,-0.0015112674229472065,-0.012795716893036706,-0.0007680068781375851,0.04312771813707081,0.008973434969717134,-0.004052189898018269,-0.009210679906476142,0.0030485770075601745,-0.0038236326414951487,-0.004965999185339509,-0.005443141750328909,-0.009965518597524767,-0.01553065529644963,0.0012999737488424718,0.020669592474493712,0.003837619801569341,-0.006540493334436149,-0.022864366204136045,-0.003886494213311266,-0.0013944804554653864,-0.018483520079720744,-0.011421003788134987,-0.00017888397106558153,-0.00837807932087426,-0.0026130709157883556,0.00013729570279660903,-0.010156019883234365,-0.009803655350875991,0.007106977624695512,-0.0010560038480764116,0.005957834290613142,0.026827168281947512,-0.012600251803783916,-0.01506610656871157,-0.016501069530370838,0.003934860172627236,-0.008469895256599606,0.003842845697156823,0.15432830737413267,-0.0019924980787587635,-0.012476299852895485,0.002257522742769268,-0.011729264446242041,-0.026509241466544462,-0.015017957420801274,0.000195068950641994,0.017490406637490637,-0.012715761816348238,-0.0160467065912852,-0.0007506287282262004,0.003331321650216953,-0.008776349761019911,0.0041240594647241145,-0.021437529604657408,0.013872839889077351,-0.0038751636267849044,0.0015887696065588748,-0.0017370124977431657,-0.009507135456976451,0.0003739229217718401,-0.0008471194277142064,0.005931117798512024,-0.004494342044134665,0.0023859095577399244,-0.006258238370197498,-0.021856233179193354,-0.0008491395228319008,0.014917695643558274,-0.003397922132272148,0.01662656851905017,-0.0054050251733001094,0.0023653467917988877,0.009532315188442494,0.0013233092710012492,0.03355546433531718,0.010624796844972266,-0.01471778610934761,-0.0073525318920306644,-0.01802033710271102,-0.0034515285505689708,-0.031382383592558634,0.01421843791320057,-0.005583306609430659,-0.025112218636886348,-0.0016958554611481412,0.16054369325507137,-0.003651813649266672,-0.019072282021074062,0.007235024123114819,0.00499516354798311,0.0013268043602300407,-0.005780029118477393,-0.01145192849194511,-0.022410832128840007,-0.022176986421009053,0.0027952946723638016,0.0055040352267812735,-0.002624568741019424,-0.04532460098685556,-0.0012198533634466613,-0.010186916618986509,0.006890851164196273,-0.0013697050468750287,-0.0060911632807101775,0.0067668289524918795,-0.00011577450648078734,-0.00036607025580307216,-0.0010483054650763275,-0.009746413133265167,-0.008108134995838892,-0.004594046923838807,0.005553413362430004,-0.006962919734567189,-0.004756299845085513,-0.0013529021322328488,-0.009778226669061937,-0.011180448578255744,-0.00844433575584006,0.004045528013728657,0.00016947262636785512,-0.005939212919351433,-0.002537374885751641,0.019514906869976267,-0.014383413532775082,-0.013767430811282953,-0.0017432382095555706,-0.003752199281823042,-0.004648313750680055,0.006150668303290748,-0.022547609527319535,-0.0005721889980328036,-0.005218074057812451,0.0035085450561140635,0.0017822909516372898,0.002140019777377632,0.0034162567441251056,-0.041969438127793614,-0.010623528778620791,-0.006063868254613118,-0.03855986811179399,-0.01857424267181192,-0.01593536419135361,-0.004122929802083689,-0.0059779873431064666,-0.001834203077885151,-0.0025018555619869126,-0.024578467545208968,0.0009955583819056754,-0.009383549146008502,-0.004827940184013004,0.001301021964334589,-0.015639098749500743,-0.0067496975661622445,0.0010927536924552133,0.001424695264859062,-0.0034758694394425305,-0.0038294711516353667,-0.0009989119107131168,0.0036083970325971903,-0.003383812313817788,-0.00935603698345241,-0.0016354229669477043,-0.0004536484703011017,-0.001653089108653553,-0.0022099559385675305,0.003799721016681273,0.0014170134024858918,0.003653183088702797,-0.0056085432973008355,-0.01416387935868553,-0.0022008494510369846,-0.0015231308400648217,-0.004120590178694053,-0.015244241542039908,-0.009120084005295412,-0.006227347982293572,-0.009452027180161467,-0.009994221654867078,-0.016208506276320714,-0.005650793359627114,-0.006825865111199275,-0.0007402676997505641,0.0009568519902287907,-0.004865559783951599,-0.000975657855674238,-0.005907268148063297,-0.003447071033082861,-0.008047118598679586,-0.013451325143688811,-0.007556357015474016,0.04743860775129359,0.0011796513056781728,-0.006362452614913273,-0.0032009616629319836,0.005691923750504269,-0.04372389515083123,-0.04289579683824555,-0.0222289631919865,-0.0012884466949172238,0.002314136132955129,-0.00680688624739333,-0.007209052163749788,0.004028902484997872,0.0024604049509244067,-0.010095785140469686,-0.005162730631174637,-0.009130522392504134,-0.027878960709956862,-0.00503465175561089,-0.005763031390360786,-0.00862251439510082,0.06304999687466409,-0.003206321162405393,-0.011367410513522812,0.02920547036445656,0.00639628118643446,0.004586184918302118,-0.016205427614354465,-0.0013309445130070677,0.001208939968658947,0.014757548569323035,0.002094079995269566,-0.012711028907170697,-0.017661108424776573,-0.00034594990178846234,-0.016037860796165412,-0.0005408467720298495,0.0003072545542884607,-0.014291529997933462,-0.01994633495169367,-0.005455166447743938,0.0020499843494067183,-0.00706235790790594,0.004235503606551067,0.0028113199791672235,-0.001856664333150454,0.019161859607001272,-0.02645770369092786,0.040089217089099516,0.04432703268684852,0.03644698769615245,-0.008254964091875023,0.0064047916767702336,0.030669514802848026,0.036487271525913086,-0.005319191534017764,0.006224825167437578,0.017333849812883433,0.005927406984349994,0.011807767290776901,0.004992511207362554,-0.0010647870751477671,-0.007679436748572736,0.0006228091475668697,0.012497323014379346,0.001789393131100194,-0.001670431506274821,0.0014762333620738984,0.005729740695230535,-0.029155365155981067,-0.021237477108225728,0.003511520145459088,-0.003781676725802582,-0.016703088848040854,-0.010080065409163333,-0.002221411241939822,0.012493233159002387,0.009097820375270675,0.009150002097187844,0.004357322793065976,-0.005501620044526941,-0.023806124481752435,0.006467410774736244,0.007890237346226191,-2.2797077820910357e-06,-0.006532312975949695,-0.024345945827902508,-0.001872512002672111,-0.016705813987351884,-0.015481542406361086,-0.0015737812478908244,0.0032248338883991315,-0.026302016011195115,0.003243478998114256,-0.010139336334347769,0.029139813370644033,0.015382422678600514,-0.007495368275494801,-0.0036282132948977693,-0.01118484161281445,-0.012913580623241406,0.007959275051124612,0.007423591060247349,-0.017228833137742264,-0.00015312856441907456,-0.005830516678028038,0.007429289900248726,0.00017952761041494704,-0.00042331943107419166,-0.0029547439866927463,0.00815528964863884,0.0022203928521750318,-0.01195239639034446,-0.00521974483954301,0.014035811031328437,-0.0048526603693457545,-0.009508695859068531,-0.007255291307140665,0.005214561210869161,0.00042355601775766227,0.003262385047787021,0.002276541761048126,-0.0038871358959716522,-0.0024938858670548215,-0.004494308087582982,-0.004680474244066329,-0.004484313152475039,-0.020336014862268416,-0.0037909654289580695,-0.002214374096050639,-0.008877567884072669,0.010040517945331152,0.004062524554608795,0.0003082708787836817,-0.004589679952586232,-0.006798577184597511,-0.0075438076130798885,-0.003831757975175692,-0.015644026948810272,-0.011247801452818264,-0.014215568085367355,-0.01658092375950641,0.014127572541408999,0.0036924925190985,0.004496899164895289,0.021393094530185654,-0.001963283131341282,0.00415628781634861,-0.004793465992434424,-0.0004485140357201901,-0.004457320514134001,-0.0039772796301241016,-2.522868876599623e-06,0.008944677816717159,0.00023659376855649566,-0.008583192352314589,-0.006554967895352233,-0.0063773982074656725,-0.00043183039942819193,-0.00461515351887117,-0.0066942292268145015,-0.0032504024592889987,0.009480526222714421,-0.009222650371369247,0.010022845826833262,-0.010307552028789151,-0.006768559345401662,0.00394324875112237,-0.011894397422516164,0.018309218191756252,-0.009760235876320921,-0.00797265404452044,-0.008189582878681727,-0.0025055548309891487,0.004096621394403587,-0.0002512858932692926,0.012306167570093321,0.010237815194120791,-0.0017566798886142153,-0.005770675875864002,0.004907473164602278,-0.012688646673324536,-0.0038429597306901043,-0.00557323936164492,-0.01652961913194459,0.0020575882256593622,0.009614774463759773,-0.008202286538106097,-0.005570518696544932,0.009107993713368573,-0.006468410269910946,-0.008266728420425367,-0.008066291927176932,-0.010093390249062549,-0.003950402203801135,-0.01189486792914843,-0.004156412064108372,0.0014261470520894202,0.00052943108331334,-0.0006572186509437608,0.01030968108979092,-0.01187528694764435,-0.005981756209789415,-0.0062341934329887055,-0.005226185025412726,-0.0015451888895420321,0.003892720543144959,0.004022409651801277,0.0062852077574885165,0.00036763794726660855,-0.0034498194169595175,-0.003048109293425159,0.008659482750237915,0.012697122748430522,-0.010009996168739866,-0.003129734772822051,0.006295648478993495],\"y\":[-0.0010171047081294334,3.131784358015707e-05,0.0008046913959270802,0.006908769491435994,-0.00026680711161428285,-0.002611422109503304,0.01496019800782334,-4.761592012182553e-05,-0.03352258696236505,0.00019445531772127914,-4.0211340740866144e-05,-0.00029368329848290933,0.00462057342725152,0.016564535331441393,0.022469878700461583,-0.014659508955984954,-0.013179121030668426,0.004639616704020751,0.0003660515574061894,0.013374534755621626,0.00014556040075682186,5.5004806367258736e-05,0.0019975404517950292,0.0026969656613338106,0.01537631358476004,0.0008261478108142405,0.0038441908757529146,-0.01269576381039302,-0.01880778260350466,0.017882764630326547,-0.0007608908507061609,-0.001747793742867734,0.000387569999101677,-0.014272800498276547,-0.0010286951622404433,-6.542766364140071e-05,-0.005701742031082545,0.021007716229137573,0.020850789131201135,0.0011640052840077419,-0.005094740905930605,0.0020514077057974932,-0.015916181683326994,0.008252200489574571,0.012126894653015328,-0.0026646381962847736,-0.0037421783007698674,0.02305159737069392,-0.010361851966884961,-0.015607596394886115,0.003542773170266076,-0.010436092089967989,0.023301286393901156,0.019918671326151965,-0.00099691648716519,-0.007865149190305397,-0.011550625726097545,-0.012539308306849429,0.0064791863367946135,-0.0035027530673531113,-0.0085479604363739,0.010576118504452565,0.022701473238720928,0.005610147699505759,-0.0028116012665783748,-0.009988296483198527,-0.010285551399233154,-0.01123420088912927,-0.007364400840915094,0.007808564100674198,-0.0023025465418142514,7.920479921150956e-05,0.004136606441024549,0.003813098901872286,0.005638662547967353,0.022412348950936013,0.0022044288463857332,0.0011832905679871094,-0.01146185328764304,0.007216283232818401,-0.004470083155182548,-0.005318884052742982,0.016623313451298024,-0.023081752645426085,0.003047191182313752,0.005755726985418743,0.010575492397670506,0.0038994894395690542,0.0017757560026754144,-0.0004282476622369649,0.0021803440677718756,0.01620247908626005,0.01519085305053993,0.005741533009133375,0.02043915290366723,0.010202635071272132,0.01524179799601844,0.00414717594403518,-0.0019802343024012577,-0.0023831522356778357,-0.00433227864287996,0.004616506283340435,-0.009165532689972049,0.000794761962390821,0.019408203561119962,0.009650501421534946,0.006203192489897221,-0.0011430552277117982,0.016489783788379793,0.004721943390474448,0.0260686429020235,-0.0001107197310008801,0.014890598173935257,0.005085589309231764,0.0164900293214289,-0.019296953758524735,-0.0016432654234108128,0.014897569688787126,0.0269766156978469,0.016745964024094694,0.00016800268517033046,0.008752758698723164,-0.009654729103774774,-0.021757943436049844,-0.008043317339460333,0.0001737539500769001,-0.016282214424293142,0.014225820416731576,-0.033950649149748414,-0.030737117209759367,-0.006716370924910718,-0.05102672275623548,-0.03399660139770363,-0.032123763763163816,0.012802818343675654,-0.006577065360617748,-0.009324233182276686,-0.010239450556114242,-0.014834664104032554,0.013360567284588074,-0.010282286510459456,0.007382245058169148,-0.013911347965980626,-0.005608476550522894,-0.0016392178633653802,-0.004618216934512653,-0.010674507185597029,0.018700920927730368,0.00816515876968541,0.001186153324430045,-0.010585722851387511,0.007603246859175067,0.012005278005559238,0.009535246644561663,-0.00811907557899929,-0.005009881750369585,0.02154586509302412,0.017108009530164,0.010198134503171568,0.027036650128908053,-0.0023973286149148276,0.03227437978398982,0.016263531580558117,0.03442681886041372,-0.007415636902076947,-0.006062392978073866,-0.02084976958226645,-0.010384143028713844,-0.0029586068213248023,0.008091524735723991,-0.008326934903087509,0.002274564523428714,0.0033257832370250195,0.015734319021017584,0.04325688578070693,-0.002723199722232579,0.02250695744541802,-0.045914033570035435,-0.012481043924357657,-0.004519662796245483,0.004170547678562751,0.03476261958427602,-0.0054241534978397305,0.003148224435523953,0.0149823954351832,0.016477493875607197,0.008984813772341945,0.0029232964278585395,0.03571584122749917,0.01659097930948163,0.0028890935557402356,0.004570691005252568,0.0029834608727124013,0.0012348770308887895,-0.002424334577318817,0.01458682205182823,-0.008628648392070096,-0.008637944542663274,0.0020896790572377697,-0.008512519141326575,-0.008770007444060866,0.0055716063674559595,0.003161210632730102,0.023045335132429106,0.021858141093257077,0.02344779931637962,-0.005089447332218021,0.0016757620821506662,0.014043251603483355,0.019419870716118132,-0.005238559579637757,0.0007047732735961438,-0.0025337504881660826,-0.00014223674787511276,-0.007186426628566127,0.018549327012006844,-1.564342154388028e-05,0.00015606960015948724,0.01139655950647883,0.004100895401113637,0.003577457963170223,-0.004686072908438756,-0.003413519501529954,-0.004261317579505859,-0.010902258408875157,-0.010502820965231875,-0.012584381350383105,-0.00047544613028585597,0.010708988483147216,0.02858356016500948,0.006650523807458222,0.005116179436087665,-0.01226650226266116,-0.006568211839823759,-0.012158717638753229,-0.017508572655341247,-0.010482230244094452,-0.010036075123704797,-6.529316000973304e-06,-0.006264850058869667,-0.008098480135681643,0.01798985527907581,-0.005053913686140416,-0.016648901435203374,0.011041641700123736,-0.010108670071376299,-0.0077163667363568484,5.6309450968116724e-05,-0.0030428023199071124,-0.008846247404887665,-0.0015101666054551579,-0.004530104806448094,-0.011510226994462042,-0.008660486057722457,0.002044629239149374,-0.028260158611187948,-0.020241578908037638,0.002643801272533605,-0.007875573113632664,0.004872554190729855,-0.011727541220768545,-0.02054722985558662,-0.020709282258976117,-0.0022148545627903434,-0.016930328807535814,0.013295955214131053,-0.001692616472164115,-0.02618299187018119,-0.00960267127102989,-0.02048083301835117,0.022320537684878582,-0.0004591276953808019,0.015079638742057259,-0.003680242025355787,0.01615871952472216,0.0022618664266497797,0.010748707998684005,-0.03118353090822504,-0.019686343411389255,0.0030348805916460557,-0.0015575172738776148,-0.015332644396341827,0.0006540375581595461,-0.011491235341841013,-0.007656761716940804,0.014530171749418756,0.001720717692684729,0.020734193143262355,-0.0023568823722254534,-0.01137145141998223,-0.006133891921899457,-0.004743391431696845,0.0012187230727464767,-0.020145650355621606,-0.005703674096811638,0.00043772366420511343,0.00494229560667262,-0.020337596890755014,-0.025398304645774947,0.005061177750732469,-0.0017662741921826753,0.01198034970489936,0.011745592747266666,0.01906320822006382,0.007384959158276316,0.004826456018588243,-0.011617433581643773,-0.004484555907270795,0.006415358179246476,0.014296182706946159,0.0018854457987451387,-0.001389006655484781,0.0043274844527590485,-0.0016136204279606535,0.029760780814809866,0.013115981227762162,0.002806238700025646,0.01090919612912526,-0.0026518923240751017,-0.006044845504154578,0.019815355804987493,-0.005440776866740885,0.0008516290841338618,0.025257228280087952,0.009404592088657735,0.013794685025837404,0.009276784150169005,0.022037467519413344,0.02137328695396964,-0.014911569986516353,0.00708411371865829,-0.0037318521328757732,-0.011651482931174533,-0.012085821675186422,-0.010066704016146868,0.04619588567168131,0.0033533433839382965,-0.006429707700909882,-0.007683577351451421,-0.005668488480020075,-0.0032557945434110317,-0.004450451594298528,-0.003067473714930627,-0.0028288768299681425,-0.0033343959478006587,0.0020476484749826756,0.006157892624730739,-0.0158681080800913,0.025713259101762937,0.002570587398785359,-0.001641015680678543,-0.012947421127623255,0.012358738145074481,-0.010566559349668903,-0.012967945735880964,-0.009388894475409606,-0.013970122040645933,-0.006104131967044053,0.004988377865359809,0.012081035722854266,0.006840289503308782,0.025219969272572727,0.0014669292242923133,0.02459333999581015,0.0058078628186176455,-0.003823841469950498,-0.0034336501902258345,0.011376156156422223,0.02981781238849256,0.019244722156886985,-0.011248605009860468,0.01832055265575076,-0.005784623572571614,-0.01659197869786384,-0.008720618672174886,0.0071370535514211015,0.0059634858047718274,-0.013857919570460522,0.014240820580340582,-0.01456795721244435,0.026128775985829234,-0.01520958894605281,0.035319510906418466,0.037055471106170794,0.02619357309175064,0.03676159349519588,-0.008068975831278758,0.028623606298946124,0.01879622575265859,0.02590124096690154,0.020062206878092192,0.0002020926456619316,0.010990244515025765,-0.004282145514820359,-0.01151387398665173,0.0003675752258493952,-0.001663245753758677,0.003441634280864312,-0.000546409796638708,-0.005074719807376394,-0.0016389659354996407,-0.003297575408265477,-0.006420684542261839,0.0005251280330831359,-0.011343526775600722,0.003585868082148424,0.011501468205477953,0.005746019124840502,-0.011202386637594115,0.012545009019545668,0.004271995963028548,9.914831338265638e-05,0.0091931777742733,0.020031730273200297,0.009984130646619663,-0.0009764258752193206,0.014572416094735884,0.00645823417193091,0.016170198632355363,0.01611276924618214,0.019332381892763328,0.0026117532467320793,-0.0025532591372946787,-0.002235574531356947,0.005285379652255066,0.019822869416521095,-0.011406772833601647,0.005453218591226833,-0.010764512156845903,-0.005570644758259863,0.0015307722484496646,-0.00350324602701145,4.6203353782906e-05,0.004915538248485918,-0.001735515994405256,-0.009953021124956288,0.0065853140725593735,0.004431681368056917,0.006508268864860434,-0.013546372778694473,-0.012713906875484878,0.006041570971972645,0.017095480324724174,-0.00287138562767004,0.0002629687100897819,-0.002025362770363343,0.0035132944823106495,0.0032310026845273126,0.0101401929786839,0.027763144166991244,0.004952267818248573,0.0034476627887399186,0.0127405386275839,-0.007079946255044899,0.01738302395810984,-0.012325816324863126,0.0165936730002669,0.006171616979923371,0.007504426931175635,0.004064074684521073,-0.0010899161301057023,0.00594271845289207,0.0018170490422123058,-0.012441087642888508,0.0013923958278866744,0.008660969182470717,0.004145826675805968,0.02042443837595246,0.006938884219755644,0.0033989682840248913,0.00229521731291284,-0.012187201401256575,-0.047953771055665825,0.024572157731426823,-0.06274302803694055,-0.05296544198338241,-0.0014384390053138589,0.012352918648785955,0.010132802853668089,0.02080686282357433,0.007524428424348101,0.0024009265501887668,0.003501151322034664,0.024395144335451615,0.027076009270601633,0.030523396467600487,0.022477323398521452,0.018119142614041104,0.042365101608123734,0.02179688285261115,0.025187082045955964,0.0003061775385354144,0.005953841664033722,0.004588693022672598,0.01613896742984157,-0.006760695454484322,0.0026995349630100523,-0.015141609939599624,-0.00644260383637381,-0.002583674580795142,0.003655621890632957,0.01825196386993605,-0.00339106781123271,-0.015180342381351285,-0.013394832807800263,-0.012419259885230566,0.0027436736737886194,0.002824130390858618,0.010428504067260957,0.002960432723486794,0.002686350744055658,-0.004416401964077962,0.01978259163145884,0.007973169329620309,-0.011322525033889958,0.007184502752592431,-0.009385952355507094,-0.010999065286075926,0.004886480887898732,0.0068484692781862495,-0.008325368142137092,0.002848429516476991,0.001730180596444981,-0.007505644708692029,0.00037637848014179613,-0.011127266915427751,-0.05404691804041896,-0.013839501193371871,0.010739719954160875,-0.006713840133379271,-0.010040975169566188,-0.061172205555379375,-0.007060641652689932,-0.025284882688726914,-0.0072862558407614,0.0040404598641613386,-0.01310057253815026,-0.020727020284777707,0.005936415272779645,0.008896503088708142,0.011113682915338539,-0.0022978246925497896,0.003902622788017542,-0.007010567609146385,-0.0029413147166433705,0.006526486286930133,0.00022579990063420794,-0.019690993431205565,-0.007482756066202807,-0.011283493192285741,-0.0162305211328171,0.031449039699488424,-0.021726756968768725,0.004511319723380753,-3.064953572388704e-05,-0.006085672215013196,0.0085955369542774,0.01846909216091026,0.007213906116263707,-0.004267700022714259,-0.007989347379607567,-0.006686516016980051,0.01675733818428638,-0.010831590932792916,0.002477373379306568,0.008955491744795754,0.00659441353822113,0.012501367866935658,-0.005377465590229254,-0.0060985060616113055,-0.051710444744231095,0.027523209695422175,-0.0038860606183157404,0.01837680298023628,-0.005303057491426848,0.004333102615441295,-0.014104559954249158,-0.0005448378534097159,-0.005361087809377786,-0.0009209861127711091,0.010158333018452918,0.00850098842910625,0.017559324131479103,-0.007219937630843334,0.030058463731093738,-0.012890199353022805,-0.005893570358411777,-0.005756443331100818,0.0064661019226792205,0.010377132218422394,-0.007199962442179519,0.014832469781286578,0.007158451321966145,0.0024269325771015945,0.0004989290241303677,0.013767319466389902,-0.012971274792751748,0.007077312515833895,0.0016103063267371538,-0.0020430693564758833,0.037375925598832675,0.011273384443669375,0.0032105822495469773,0.021812897121199097,0.006275934822387192,0.01586455103142806,0.017010439148519834,0.00751726238477174,0.004495085755276539,0.02176470461787315,0.002632481255080856,0.006610588758714123,0.009768073553735298,0.020541447657215012,0.00021694629254632707,0.007144625957630815,-0.0020040765051188374,0.01064175412277448,0.007288141851879665,-0.0002522083171351436,0.003777755999877477,0.0029832286360899594,0.0034509561522291774,0.00013957406997982462,0.0033966566336550924,0.0013296404410040106,0.0018510319138127676,0.008006265688615816,0.006644206418687754,-0.003762498708216409,0.009853473509250067,0.008090612680703336,0.00562483662923915,0.009482078557249052,0.0013894421075514465,0.0006871874131788306,0.009413612873229173,0.009029985143909913,0.0024310279131085754,0.019581392853399073,0.015499959556663013,0.015180590375179564,0.01714059915578619,0.02205567887762298,0.01745279518163791,0.014108764494543758,0.006434391627268099,-0.0052645834201331555,0.009758161496490211,-0.005565060279018986,0.016965017435603708,-0.006520447934034176,0.014240243344833587,0.013134285094053724,0.01454462003659174,0.019600648220029184,0.020584689001217366,0.008583599617212752,-0.019354943511685076,0.023928992174383577,0.013868324896471164,0.015594237140915849,-0.01034235319846938,-0.01633859223218765,0.020356292283655167,-0.00265760021020529,-0.007222564145993363,-0.003001831068543069,0.022906760446852716,0.004298896618942462,-0.014276546566310543,0.015755487001826038,-0.01331957871436484,0.003514647296997256,0.004487078899858592,0.013114068275756887,-0.015130175628479478,0.006690034049789352,0.022356382351691406,0.015213823101375116,0.012624341465977927,0.01860230115151621,0.02032255192117881,0.01135264079760585,0.022987088464240038,0.017311771678256652,-0.00503646775003722,0.007827158326336448,0.007677321459470975,-0.004753726416565577,0.005255744928362628,-0.0168292334756017,-0.012287105033824922,0.0006039820902822671,0.00467805753478633,-0.0040991616906092725,0.03339466330644806,0.02892424701918986,0.015698420196706142,-0.011667079949873848,-0.008134180014893596,-0.009823661412827506,-0.007050425904180857,-0.004946387657135,0.006246495035842172,-0.01086138135192548,-0.0035240941237481157,-0.017556847238099558,-0.005719797860729248,0.005870387350380336,0.00044638437608279503,0.0009786024706193073,-0.014848271555878893,0.0021532396715515474,-0.042985573029860814,-0.0037157647838839338,-0.0010989649597498376,-0.01799397772395425,0.0016520629804419853,0.0113124640836958,-0.003615737433945107,0.003799878352398476,0.021631867802934114,0.0009508040453513675,-0.00048771952960779497,-0.0001046173041178615,0.016041420880158863,-0.001945388622385921,-0.0007677447318048992,0.003858139024453909,0.0017018755586684236,0.005718823726785445,0.01374640903351232,0.0006905614195046483,-0.003887234753982399,0.0030085469584940658,-0.0008411199633137621,0.013367110981260328,0.03834091962275621,-0.001663758136258893,0.008960888251175315,-0.0015798730735474384,-0.0031289173224433612,0.01329164372539248,0.016618664609378175,0.009229283633927785,0.008213540133262113,0.00756093234603268,0.006850938196909902,-0.0026953487441811865,0.003704939592278618,0.0001511695824169106,-0.0004328750123496456,-0.016228298550816714,0.008124533954913242,0.005283766610996752,0.003919096554041841,-0.0033422431119533415,0.03176878816068108,0.029836166066877418,0.024868102867059143,0.01394944911233724,0.02038917967006087,0.024875060599493726,-0.00532069170155676,0.004611839223369752,0.03249633669114301,0.025767276329939283,0.010799126391076408,0.014767193016498092,-0.008899055500234305,0.0024066411453071584,0.021474326029088883,-0.005517034299343882,0.008605855042977058,0.004499841777894379,0.0007302922271093014,0.005165533812854358,0.004908559950067236,0.008114914986046209,-0.012273538876662222,0.007878160785490036,0.003096684210759256,0.0006081372799455064,0.009251158693848382,0.016059559037947962,-0.012102313110405513,-0.007711511292213392,0.000862993897596125,0.014518010551167767,-0.01687664846448562,-0.0243142842260682,-0.006909563848369816,-0.0002111643494223246,0.009526801013374867,0.005324957924426575,-0.005234934256658009,-0.003715986008806039,0.0017861983584181761,-0.006105394454449232,0.000511604123284842,0.002225062657136254,-0.0002794949788418313,-0.020686381031429384,0.004598232994102933,-0.00307020639555865,0.0014077046725769235,-0.00392987193945369,0.011311711545867291,0.005969826437042533,-0.013729582348853943,-0.004820126895751856,0.0008999121076047745,-0.009659602582779082,0.007972533325669176,0.015550154269140241,0.00894982779089655,-0.009363295957915982,-0.010092398897056466,-0.0007511481652084474,-0.0004481767129901428,-0.0001373095554331451,0.0020810814741277096,0.005489563237172788,-0.007469042541731702,0.002141859579705454,0.0008843220627884226,0.006183578503478542,0.0011809419053138933,0.01729016674645505,-0.0040072855171500235,-0.021734930444485007,-0.0021107249111904083,-0.00564204015289914,-0.00273037520723257,0.0029530127960699683,0.015664468611915172,0.0033196089126104264,-0.015018455955278918,0.012659018749630184,0.03018436517628425,0.009062959765025204,0.02377342428388459,0.03781694503900426,-0.0023436562135413196,0.016570846358173907,-0.01483897640188141,0.0017640292020101574,0.01643343314840935,0.005600713672742163,0.027371595120656567,0.009373225528418355,-0.006498136085089737,-0.019874173239012378,0.007126380473272525,-0.004847350505782657,-0.009379064020031037,-0.03813830452831513,-0.001541755673207518,-0.007405830652944681,0.022174205929446578,0.01832742888705544,0.008192025503447059,0.0016944565204536366,0.010859981653352665,-0.00033872736772680776,-0.00615755849173914,-0.001466886183833326,-0.009297394614888805,0.0357489471447387,0.00025098611132075673,0.012884581770750943,0.003794294666850496,-0.015823352139896288,-0.010528074873791107,-0.0017791097384383544,0.0007022326103108808,0.025681055003149503,0.009164861915106537,0.036002387453998926,0.010179409004878882,0.032593780175714536,-0.004060261307702335,0.03659735979740745,0.017971908696915288,0.000930163465540913,-0.002958193676856627,0.016586537355783148,0.007079493375600915,-0.009255164954093753,-0.012984697986889827,0.025737279055953317,0.010797406390063791,-0.001062580782043553,0.024596740269061754,0.0010770192945664403,0.008618207814942293,-0.0008173933606053877,-0.004752882649533207,0.01491501241209832,0.007619050867570658,-0.00013469927316973684,-0.01776484479136114,0.02020447360081878,0.006931118637709024,-0.01333454667536441,0.019260382816275724,0.010004411337764139,0.025793338501081314,-0.004182479046217611,0.03994565200605488,0.00429038275560263,0.008799271794485001,-0.021544884179244005,0.014077908306330695,0.01486010040371559,-0.0004946430426841681,0.014681975861081891,0.008040229282173463,0.00613623706369456,-0.012470872161295232,0.005660976742194848,0.00031002901558304535,-0.00600965523467182,-0.010014276388027944,-0.017995253860337273,-0.014642154804761439,-0.004396705150545142,0.0014557677610308802,-0.016813313789431628,-0.02023940425308176,-0.013190098845803624,0.0007086514510678515,0.001790824430922953,-0.009582199911442392,-0.008670360156693546,-0.005463600872360874,-0.012915069436087315,-0.005665736951282048,0.010875910689510992,0.0024976830510122336,0.010416216399243934,-0.00545567811767496,0.0018513362457210562,0.005265258630863885,0.006523661364115999,0.005763601941491154,0.03520725625042571,0.017807816781782004,-0.011003874317768413,0.007649248095005315,0.016223556226413065,-0.0002313284275391572,-0.002591050060956911,0.009936900211242413,-0.0008630554582651618,0.001513470323534941,0.009276812835227619,-0.0031624827243700478,-0.004977417966378809,-0.00012097517495452809,0.023896666988678646,0.023348641862455458,0.0187146411051278,0.017073629069274964,0.015353018364305788,0.03029696196672451,0.00859282618166602,-0.008732774008346666,0.02101298923635962,-0.0034533104444863295,-0.006527430367239181,-0.005658478101445995,-0.021592158965363865,-0.003772141018986622,0.00675421624486287,0.001679983741491267,0.01008749441596806,0.007387592083970904,0.0028524987460640874,0.011384861788234812,0.0029386839374036613,-0.001841111784880834,0.0020283012937812764,-0.004476036431552248,0.015951907021368367,0.002623222305067539,-0.0030667295665615492,0.027596519858631097,-0.0017800079677383696,-0.015292259804545702,0.0035652280060436423,-0.023787411622086516,-0.01591710126552783,-0.003959168315718183,-0.017730877727034584,-0.0047789216032742155,-0.00916081758499359,0.0021902170488575295,-0.0021651402237171245,-0.013275650658887786,-0.005220018421450526,-0.001966321912630825,-0.009514903897071615,-0.0014890832721567125,-0.008617911540187246,-0.017802629937497965,-0.017876323804224513,-0.006793635141678986,0.029412262470510115,-0.001774423647610226,-0.009957004893991029,-0.007425265605114767,-0.010973904473558928,0.0006938924435486325,0.0025825821724906124,-0.01677863865441863,0.030936272303657662,0.007035434032555839,-0.005955282957170906,0.031501161165756096,0.016983607722267875,0.005395884124208302,0.0141151307931184,-0.0174179784200662,-0.00576456010153401,0.0013891515813169082,-0.0036848346595926957,-0.002016862341223946,-0.023467813550759015,-0.0038054390112770026,0.005054932260842518,-0.007168825295867452,0.003002843583500777,-0.009328129708406047,0.01267725258772323,0.007488257356206701,0.019737758951253986,-0.0008492287457249826,-0.005227870953208752,-0.0010096387894332373,-0.0003175642418740149,0.010602004849284441,-0.006473146533573308,-0.002583551954014004,0.005777431350662718,0.0010589405699534212,-0.007473944235757286,0.018246886053335895,-0.013788913247838028,0.010231047479226305,0.0014196524454742042,-0.01613935093779364,0.0144291441609105,0.0027528341761268076,-0.01887520906392174,-0.0024200681797591915,-0.012980185680702519,-0.004988975422752311,-0.0032904331498515306,0.0073762884397170865,-0.004171525398347572,-0.02549481449883814,-0.006356732570046349,0.0014545677159681458,-0.005368124108540911,-0.020859764661828317,-0.06032247871349667,-0.013677377046185312,-0.00873879002979893,0.0016338274848379667,-0.002733491495507017,0.008306017192642387,-0.011496157404996557,0.000522882976389417,-0.011028712578006581,-0.014755014282405669,0.010813005294994264,-0.003405477924523767,0.0077175443156295015,0.03619514389576528,0.02604812962774363,-0.015187023807123357,-0.0028681925692385216,-0.00244175208376466,0.023618448667049166,0.0063708342205205555,0.003979287414873619,0.011872812037707637,0.014595540969666877,-0.0019902917038158684,0.010343964293577864,0.003710821413145314,0.04022581791102047,0.012962047948669774,0.0008487117402869107,-0.011577457494496188,0.017815906936503,-0.002757713782339022,0.008913418684310066,0.013100396644843183,-0.0036911467458639927,-0.01568501795148247,-0.01133227637178732,0.0040170900214575745,0.009288389022753078,0.0011917252027187435,-0.0002521995863003326,0.004068740714215808,-0.007463256519895038,-0.005488648229084611,0.008688215411379123,0.0077318358493225076,0.0015386738605116686,-0.012528591459973207,-0.006883233968453774,0.002239456877374364,-0.0058277323382668125,-0.01139408259616974,-0.017738094736807753,0.0017516642772927532,-0.0017618879746683837,-0.0018835029609323571,0.000986108780423593,-0.012137877145058528,0.0020503103548755374,0.0032314354500702523,-0.010879398073789692,-0.004476140123199989,0.0027217898480166197,0.001277855559631915,-0.001779587271191551,0.0138887703440363,0.017163246490003222,0.022822195663238093,-0.001906192468488273,0.022487143100137243,-0.010962269124801307,0.01306492803043315,0.01917975286735104,0.012939047446185436,0.01279716016148295,-0.014768672214875213,0.008556706761890541,0.009038267809045262,0.013589133740756012,0.003048198928151577,0.004520507268272906,0.0041610922771345175,0.0013230580820421556,0.008160079094291764,0.02074790708777129,-0.012524025602528072,-0.054755637823610426,0.014864896633803963,-0.007028175706610918,-0.015024632092733395,-0.049531318236116006,-0.056719219503910755,-0.022988320889477495,-0.0011013336909078898,-0.0014163398762215339,0.007825505704336941,0.01731065322629083,0.0120840982265779,-0.0039809192334106566,0.02192007851402443,-0.005335518217899634,0.004323017571563383,-0.007215982924430454,-0.012651004222809806,0.003032342452076082,-0.010468854328283131,-0.0004607434917744108,0.0022448197782753893,-0.011564022301995523,-0.007512725674423859,0.004882458196028609,-0.0003509149772373608,-0.006851368460413054,0.007198406913702638,-0.006585922490864574,0.012809556626276659,0.008155739973838214,-0.020939068283613815,0.0047893541264883545,0.0004648856168731545,-0.008341575281557339,-0.01496748715439003,0.006532171979733615,-0.002160388581675364,-0.0011375705450482657,0.027262142914731013,0.002973940027849971,0.02049383733368387,-0.0005906894898036428,0.0026003833292816054,0.005630308859418573,-0.01720233766195292,-0.010129571170470121,0.015458557578220502,0.005716206134145369,0.01677777513039339,-0.007517937893219146,0.016860603129023266,0.007853601241362505,-0.0024034752917051734,-0.007197989931612772,-0.003229196804721065,-0.007487525779301409,0.02934801539971736,-0.014353333037399718,0.020243575494049336,-0.004580691640924547,0.007830498825043629,0.021989828259979104,0.029855243343674072,0.011791893288354293,-0.003484069089293702,0.005494476119095813,0.01988198848731112,-0.0001222102570607811,0.016970906561923377,-0.0066557284764691554,-0.014324728293037436,0.000293868269985192,-0.005876269355757635,-0.014066134456397372,-0.0008159370757352418,-0.014525201008087114,0.0025280299366462196,-0.0008231828535851332,-0.0002067919804026354,-0.005026112789627359,0.007794907099517651,0.0008932014720246734,0.007648974436989454,-0.012346278199916622,-0.014072824159539764,-0.007135973496809818,-0.004482163102774078,-0.0065133478666922545,0.02064267516486196,0.0020273111296501174,0.020023184476939335,0.005193811658101455,0.041885879569907296,-0.004151848104103352,0.0010630801281887399,0.014769389310681032,-0.010717741320604825,-0.0035975435563933263,-0.010248687913109934,0.0032368946945761073,0.011221709449236606,-0.0053626557782408945,0.00873326591282552,0.0007107088885420945,0.007988076116857545,-0.007153323670438299,0.017866778280368395,-0.015480724687826315,0.019220611565203015,-0.0318462517766691,-0.004273857650151278,0.0018606314768099992,0.0010841682855706274,0.006041746804847178,-0.012701690339829335,0.009301703649782136,-0.002953514699232349,0.0036890363008904117,0.006582466862991162,0.007213490729125158,0.007122733071790083,0.003286641838227613,0.013438300239155255,-0.01338178813741356,-0.0021801794703798765,-0.0033615026339995605,0.0022311771898820792,-0.016651528294898427,-0.026085935638541856,0.010422779174919678,0.044367697014308906,0.013392823019047621,-0.008300278757994184,-0.00824874956232016,-0.0008218807124219216,0.0029261755401987365,0.0033307060531946255,0.002002520400331343,0.0005155037843221493,-0.016806516352658268,-0.0059618566803642924,-0.011118305387335029,-0.0015664860218601005,-0.012133693255057691,0.00665307181086182,0.009206855173473697,-0.047334556845989764,0.0073381040447834615,-0.006919842982064256,0.0001123241474121409,-0.016267720024708898,0.005123179505867423,0.00416751405265546,0.0018108344658850349,-0.01351822982603055,-0.012364616879071833,0.00804739662404404,-0.0011294832631530203,0.011570629737138304,0.015318270612693462,0.014453655048578744,0.0013849072808351174,-0.007465122411391728,0.04832349929542187,0.042063932290619166,-0.0004417307251953313,0.024864602681217648,0.00886215182898182,0.003117548977904714,0.0013920622047555679,-0.007990764734743232,0.004063175747184625,-0.0046200892299063726,0.001160002516320579,-0.002979594096705772,0.0032133919103586816,-0.0011609044204042844,0.009031402491132967,-0.013728456351012762,-0.005898106496802804,0.0015724987196814148,0.010004393152665042,0.009532930620189443,0.007621205408654918,0.0063327890922949635,-0.003133383996009194,-0.0018441148854613438,-0.002746776418396368,0.01025008997043761,-0.016131270332081588,-0.008837181787038271,0.004490805773978702,-0.013058907695577578,-0.018955183605050805,-0.022856459695163252,0.011641664915982704,0.017701572137025102,-0.012886186600571992,-0.005633837503759263,0.008725752451689418,0.0053303010567877914,0.0065094335757334134,0.01086435764649037,0.02931523837532002,0.0029082526819797358,0.007178847615509257,0.01955541385783593,-0.0006385945424952702,0.006486705641920806,0.02569015103752969,-0.004352729801016998,0.015842402586235524,-0.024253792318958238,0.0115465982151844,-0.007856060325537133,-0.0038737194450744524,0.004336281740538137,0.01414087106454537,0.030261099425557172,-0.008333030564078163,0.014566577979610109,-0.01778148742294858,-0.03866981164918935,0.009428955615452681,-0.007619152129745605,-0.0020700604689904076,-0.0011937038116647024,-0.011946161963687633,-0.014423223345067593,-0.015956965578807596,0.004541607748807111,0.003282531610736211,0.0069990577084965335,-0.0017474799931657791,-0.00228463205983004,-0.014488682948916589,0.007697018742875118,-0.005522700034338805,-0.0008992645066947604,-0.002167386266081101,0.002743221343377517,0.004057053883695456,-0.010315555808876636,0.002329408400472151,0.0020949913733441755,0.008752908777950322,5.939731644914359e-05,-0.005965501074537576,-0.013890201173554368,-0.009759050712439602,-0.015422479119296143,0.010422784767146932,-0.006155073322348594,0.006539950996435099,0.003193340239827154,-0.01165832368475725,-0.019162524737980947,-0.009994706605956357,0.003286242018828962,0.023186807123141924,0.03701665765614682,-0.042261916033574126,-0.0357357055324211,-0.0054465775576252205,0.017543050058077162,0.008301204106926524,0.0073813880857803976,0.0031798434321778915,0.0028693618783221055,-0.0005129261901457253,0.03686825946089133,0.022583264821682852,0.009691720990504433,-0.01219455231230233,-0.002820065149050834,-0.009057447981644418,-0.0056720232092606435,-0.014630892468761593,0.01859705945898165,-0.021759055215872482,-0.0019878076840328077,-0.0033465818526006554,0.0077452440928847946,0.005850780159949326,0.03969584118487074,0.018851317125797504,0.003902304241003927,-0.004560409859652296,-0.01055151742289942,-0.010579303745908627,-0.0015896802514185535,0.01495790587958433,-0.003020137636728139,-0.008478682821522487,0.011816289705170827,0.00698871412279748,0.021374810704742803,0.02158521229488514,-0.007438214543203809,0.0007191956938493418,0.018716747997334145,0.02170829438576322,0.020132960352011568,0.006993583180992006,-0.015068695723610864,-0.010221955313092498,-0.009165069401916246,-0.0003917198551784905,-0.011690489272387727,0.005235318594038033,0.009935396993642733,-0.01678857890496605,0.0032396903967352115,0.00647512250669257,-0.0004276658403070446,0.003917041806077598,0.03333759201805965,0.0036644164789086955,-0.01478837717033674,0.0005626067762076629,-0.005715229023470152,-0.0059983244968449916,-0.020329976379293,-0.0030950576616175173,-0.003401397332317798,0.026631290103939505,-0.01271031326928009,0.011829713760772029,0.007608327143006194,0.006937976290978322,0.009631263298928409,0.005338277562859616,-0.0011338460716622902,-0.006868746529374273,0.03352760426784704,0.01353171359632038,0.004957139345808007,0.0014126272707025676,0.025228429521542015,0.04121905293713449,0.006299655697228862,0.01989095595151204,-0.015109556791971493,-0.008278431486040478,-0.005377601831124916,-0.0022498213746153296,-0.0023977634877806065,-0.004166940771174261,-0.005650794012566445,0.0003103138728963617,-0.04000109147556454,0.010019312630438036,0.01412606551995381,-0.004944121401854242,-0.0020299847405227407,0.005552676520065345,-0.00035375205534964336,-0.0172861568865383,0.005491008010602886,-0.003915388196392589,0.01006003719200229,0.001971165828574652,-0.0034966201293282896,0.018223473551299243,-0.00036769062723313533,0.007473649680271828,0.009072002238780453,-0.009803081321125456,0.01557926231888923,-0.013438500717556182,0.0020054256072828676,-0.011351076243411497,0.020229960262498882,-0.012779386150054866,0.0006912268750803795,-0.0019268033432566145,0.010274042366978285,0.010336944586380646,-0.00405094636112599,0.0030690852287034256,-0.007722540807754609,-0.00983311812035808,0.03280538306756704,0.0025357812510769556,0.017126948421826695,0.0064733026390090005,-0.0020343328523741637,-0.007772318321524593,0.0017068815578088982,0.013233825727776937,0.0015859617102490047,-0.028820100891017695,-0.002548598782889907,-0.026741134929605087,0.00961085263083627,-0.004345418940402593,0.009843814099323486,0.014831565920899077,-0.0043458743626610796,-0.01956336414629595,0.004042705594266861,0.019620921153880682,0.02377046583809212,-0.001768464708330689,-0.02504038750302116,-0.008683540041077931,0.01358517984650757,-0.023949616769916908,-0.026428479748978117,0.007498576773877436,0.00224588288799108,-0.0015708241493678833,0.028932331522341034,0.012859438275454965,0.012275027462987113,-0.007189955677505824,0.018360314245037024,-0.005175018292272758,-0.0031435392791926923,-0.009681534824121712,0.007433549208401884,0.008425907010828616,0.003770930684501483,0.014716979035569977,0.018710045647171325,0.005325844681474175,0.0012766163848420987,0.009017104585827376,-0.0037859329514022943,0.039951251857521096,0.01035854665055803,-0.0005400675687490719,-0.006186641059978452,0.01256483043093484,0.0030173977547321563,0.0045230359172986545,0.014379354336777273,0.01726096541733734,-0.012334205661431936,0.006508798503131539,-0.006007636165629461,-0.0027695643353076015,-0.008702106233094956,-0.016923565082613886,-0.008820438722429307,0.0017199026740277459,0.001307353084938171,-0.02219121486850893,0.031950512247250026,0.018360442889206255,-0.005861833758187243,0.0026987083045084746,-0.007353759952635391,-0.0010689585670777182,-0.00139024698434904,-0.0001171058928584296,-0.008053140501247674,-0.01822573112589815,0.015378471960440548,-0.015102818308136728,-0.004878896461877715,0.020670785030704405,0.013638510581752163,0.006887593599941333,-0.002058447281586821,-0.01524550501091294,0.010994630105319456,-0.018557095000261238,-0.0005388715875304101,-0.0013178557240245132,0.01247819281445808,0.0027159035803588894,0.02458980082758414,0.017729534576965855,0.005998454667918884,0.01871108500821399,-0.002265591568986916,0.013168458262655334,-0.004099036421556491,-0.023708160813244963,-0.02299483867671212,-0.00411082077843573,-0.004036494922796753,0.004902089412972372,-0.025418111899169118,-0.018805465468999555,-0.0069927255439240586,0.008298025097427391,0.0008597013260459701,-0.002204778725508661,0.002999375738319794,0.014708705709492164,-0.002643937567163496,-0.016571720555937034,0.0035358545714624565,0.0077033373506396035,0.018727232434335075,-0.01313827630824914,0.005964070200695644,0.014165707946121939,-0.004410491363937806,0.005697229696685885,0.02146147327076763,0.0008082937631398101,-0.004583284598773789,-0.013576796893892764,0.016416725522643987,0.022912424044022297,0.00010724542931954567,-0.012479593935081816,0.004984845249140538,-0.011775950438426218,-0.017157826405412472,-0.010444931942432763,-0.01141142966896861,-0.016813794015393284,0.005460067895029233,-0.00013662719186352158,-0.012091148517973058,0.0001242763374536652,0.008209596037924817,-0.011645907921746452,-0.002914402173337174,-0.0007838457406204392,0.0012100423235961457,-0.0007354011660572243,-0.010353248448938004,-0.001963631924425588,0.009527105454068173,0.01283168202165396,0.0432999120497394,0.009427120812152398,-0.038536926443840866,0.0008552361918631593,0.017153194590054762,-0.0009634103932042286,0.02910634535752961,0.019094715853083307,0.024419752096573842,0.027925428830028416,0.01662106941588574,0.00395819829735634,0.007645003674045392,0.022954415351938075,-0.0026418224808941186,0.014810160635010445,-0.012412314186363979,0.014654810132389062,-0.019981336861483533,0.010153230091166511,0.00636417545648637,-0.00779207196363099,-0.011222532031081868,0.005688672008207153,-0.007939902146459005,0.0017535172295200165,-0.002451584602078657,0.018030624312306308,-0.00035806266765746255,0.01210331674902763,0.02715367955485975,-0.023279355830262544,-0.018749265708003594,0.009964776850580987,0.007583533121403974,0.047774992011340785,0.0009649099883206586,0.00324987870472159,0.011644750112344024,0.002227104755590506,0.004939719498222145,-0.006455275149307377,0.004546756669234615,0.010474775160715944,0.007803561479670898,0.007518433152754078,0.008110321064557474,0.006678962455194784,0.006168200726036395,0.0041960493994022815,0.010801670244527453,0.002090223820538162,0.004973683606102549,0.005053465423773568,-0.005393312843691625,-0.007260425469552921,-0.011807965000145042,-0.018539180839600145,0.013367585735314588,-0.003348548998559756,-0.003132202005583296,-0.05072350793366342,0.015756597642757702,0.0016351897242382486,0.010141946880105914,-0.013234086358915357,-0.0018674556182992881,-0.013378759353619115,-0.015061739488285111,-0.0024479286512531077,-0.005785199213521894,0.010846068189414476,0.0072576545971352316,-0.004566014106086432,-0.014919139279369375,-0.00739053564152031,0.01394662622869938,-0.01428859195251582,0.01649503307495203,0.004851553039359238,-0.04588707690886651,-0.017045395072338425,-0.008079523942893994,-0.0011204715573975657,-0.0051306126404627,0.02183020397353033,0.0021993819998919677,0.0033594286827358395,0.003593909125790458,0.01022498387067196,0.011304068998807835,-0.0026433871053380747,0.004289117266662547,-0.011511930969745166,-0.001721836488313548,-0.02719352425514363,0.011784294217017405,0.004205219106498598,0.009288042643735785,0.013011999238323255,-0.014028256021310095,0.011421945745395004,0.013924779648775722,-0.012554607893741505,-0.00737247327476962,-0.009712634612013481,0.00369024997533031,0.014652775377426359,0.005012852001795493,-0.0020921206956363045,0.006197941777608077,0.016139392056137052,0.0009144253823863693,-0.02020514954862313,-0.0076292910418903495,0.02155527142852733,-0.000949249928257343,0.010360530969847888,-0.0029940631609245397,-0.008097053369074422,0.0036256150584672697,-0.0015252266210706575,-0.0024254402367206,0.03641731607958737,-0.009376613504860742,-0.02397240430199459,-0.01190151769969749,0.01592894064243595,-0.007638352775012714,-0.015668581314926402,-0.02304658184552616,-0.014151466319877555,-0.005797553788690991,-0.04319538891917008,-0.0007558512692235002,0.0200935876369991,0.0008094124706690116,-0.009819038508334169,0.0009638977162589968,-0.01919740737593772,0.00028584910782078,0.009295585652820754,0.038253093800945055,0.00027696991704017124,0.02854125417823268,0.0022374646715287365,0.024081837735624303,0.021889995314597326,0.018475792400870123,-0.0032257687735086213,0.0017421140965450553,-0.0051884326342034725,0.005625396397686171,0.0008846135230052398,-0.010289884470606886,0.0038010953666075017,-0.01852731830290078,-0.011739850338371442,-0.013192232582093002,-0.01402021769316609,0.0030082582116956894,0.0026351550933842167,-0.012622108501157183,0.0011326439772386275,-0.011860904461412454,0.019177924181031814,0.012715357439639119,0.016877767399234696,0.00824830505784293,0.0006453874033148059,-0.00823034529857965,-0.0038043067664655945,0.03218804089892452,0.0029976927835995504,-0.0012160178928842717,-0.0010080097585082805,0.015496488629020883,-0.008155100491460418,0.0052506049151656254,0.017192542379573364,-0.009287469805582616,-0.009028654306956704,0.008697384504221977,0.005945047032932256,0.0013236976061430487,0.010231507502709793,0.030874754672212727,0.014575999212769355,0.012260126297629625,0.014426873234195975,0.008287467853966338,-0.005199095256843682,0.005263520288238285,0.00034605207521425525,-0.008029890303473215,0.0220296320526644,-0.0053386103595445735,7.486485087243251e-05,0.0038068298947146746,-0.01598688666104039,0.017629774431572202,0.010022043007382853,0.0028932325234085434,0.010625572774613406,-0.022580016579631587,-0.038446172044861025,-0.013030914083014463,0.020824796175543402,0.020268548759991536,0.006971873998759578,0.017198372048957196,-0.001023720409520067,-0.022385132267218392,-0.0061532528573419384,0.0014085618459459832,0.01513541704065746,-0.017675444752286603,0.005889338485564359,0.00334045393426522,-0.003571653837796341,-0.002604601841089916,0.005313846561144539,0.003947199100660664,0.016334699241396952,0.01127814366816749,-0.00673171580739362,0.006662950559146549,0.0071707752020396705,0.029884817734063443,0.007730192859456528,0.02809379338036145,-0.0013110496790642325,0.024612120610223262,0.0013707791219105727,0.02256982675175569,0.015894857884184526,0.010808700540373709,0.02298944786593352,0.002471406159128307,0.0017604002088546437,0.024263305545393927,0.002174783492442766,0.010063220467633117,0.009074508159426722,0.002413344138736208,-0.006275788778303683,-0.006535935170908032,-0.006613202429806933,0.002496846928870671,-0.0024692595715685773,0.006565847053541241,0.010982160973154036,0.0023117441743516812,-0.026247639067842235,0.003023900643310827,-0.005813150328416302,-0.0033161805413158044,-0.012909599610007195,-0.006449088200355901,-0.0164841651831928,0.0033187914567769476,0.008710414468806695,0.001061853766605906,0.05068437723623099,0.03225423914357749,0.014448563036219466,0.04482606083812177,0.03467514990953234,0.031813848355304444,-0.01232690813700849,0.016272576093145672,-0.00021241832058535248,0.010253105451389653,0.004550718059503639,2.058318166502898e-05,0.0036971732489148043,0.011245882426934053,0.011852652719943776,0.004568338601671224,-0.000840379399602689,0.0009444763552254004,0.010472540855725384,-0.003353257693185217,0.008776546525502818,-0.03659106777042466,-0.034219691455092974,-0.0012053177125107323,-0.0006228986012605668,-0.014193270894163562,-0.010296537248640731,-0.0029447953086660906,0.007414204013695672,0.016736325079813142,0.0030796050163705824,0.0006214827079649781,-0.016779981124633313,-0.011651949875996276,0.0069400843702453075,0.008806808809422122,0.005050598867389766,0.019468659470479224,0.0020562404136991695,0.028262061131735176,-0.003227198046232721,-0.009123164281505598,-0.009790558973686535,0.022462276546881387,-0.0045618908630077285,0.003630301587604603,-0.001397379470434218,-0.0011168709453370893,-0.02413390750338387,-0.006498197056271159,0.007443263165378452,-0.026869582151747548,-0.03738560869917906,0.001489239408751032,0.01944015600377068,0.003725832244028789,-0.002466288522046469,-0.019584926161620345,0.04519672550391947,-0.029261213311874014,0.004071229177949424,-0.000886205285438188,-0.03734102024366284,-0.005435500431688002,0.002059457120771124,-0.002052775567334639,-0.011484882232985296,-0.007354077605675246,0.014735434738887805,0.006918960474243299,0.0061578961383929555,-0.001150832071962945,-0.015083694940304945,-0.0037054840925909898,0.015168951553538682,0.014892705672384368,-0.010998824346788482,-0.026752786999783406,0.0061087548774526055,0.009993394283812435,-0.010054749128504539,-0.007378999047731727,0.029570772663914013,0.011376112598290484,0.029763944422793332,0.011585593310429253,-0.00889312192964573,-0.0018789241429511946,-0.012408543756710641,0.0035374453130006056,0.0015918396748839762,0.0035685305540718096,0.0007867989844266327,0.025860218485054935,-0.006899096263099272,-0.016632043715620232,0.02879240548442142,-0.014309289636201768,0.013183709902881379,0.01008081030603961,0.004099918034168657,0.021369001411868312,0.012007981415996625,0.005353270881864092,-0.01316131516595871,-0.02144626029691782,-0.0012482766242450471,0.027567900086996416,0.03542504267629263,-0.027317139978420633,-0.012001082253618907,0.001142383767112452,0.00993400610350731,0.004004618121522573,-0.005398321253512713,0.007702566803672791,0.02568730796577224,0.02423296254565098,0.0201408733148824,-0.004436780107214686,-0.013876903141917701,0.011465594964050696,-0.018171615783266114,-0.0004442079371602153,-0.01579550600781498,-0.0007887086090381452,-0.015167902540727973,-0.012899070182624718,-0.0012285939216391023,0.0011553570394377195,0.002829601765410362,-0.04890567966049548,0.001850083682950108,0.009825663416075322,0.009018530832019865,0.009679482489754504,-0.007583881408339842,-0.008683448172720688,-0.016119422698260267,-0.009969701047286134,-0.013162649048246272,-0.009951494453435157,0.007973492218310257,-0.009507286279798653,0.015445514154748293,0.014169142145265969,-0.014748095944597693,0.012423963296147523,-0.0011564005705089581,-0.005403599549610549,-0.011241552512122877,-0.012606505807404446,0.015102887266753191,-0.009738281463083101,0.00832775288150615,0.02272296072302002,0.03637279387120993,-0.005146168681761956,0.012450248471513777,0.009557810704515012,0.014192742679241675,-0.022494993390895883,-0.008904375703200573,0.0007853584527372565,-0.005814662403785706,0.030358793727119242,0.011695991269452163,-0.004823094659436983,0.008789176910948989,0.004234670094973833,0.0024267267152821514,-0.016050882762483582,-0.02569357164064295,0.005432412527409045,-0.0015629338063466558,-0.0085908714290104,-0.0010385184129225215,0.027619087002995257,0.0036686172577765418,-0.004827955669158517,0.0004759509715428593,0.005036311617147931,0.011909425013551318,-0.04204359472871993,-0.03997310892715195,0.0024214409909429804,0.0020493570345436083,-0.008727482498160393,-0.0011881294230127043,-0.009394707698476713,-0.009139576303382352,-0.001730438773599437,8.251013940119008e-05,-0.00929156325542632,0.007192868688050546,0.00799205809044069,0.0004816503254662547,0.020374089947997616,-0.0012100483150640458,0.008192205605063082,0.01617518454094373,0.01590462728977957,0.0025074454066823966,-0.005362943828272948,-0.012810712207511408,0.01129111422511673,-0.011600384980286422,-0.010639536986098487,-0.014154079751087631,-0.02530876461386718,-0.0065530083915373875,0.014347553589918417,-8.918211056971236e-05,-0.008316991692804239,-0.05523647048838419,0.021109711389276014,-0.009675314383174195,-0.01850833643584153,0.01201582089871075,0.0011302575118564346,-0.012646233490158056,-0.008725585479276826,-0.03966023512045012,-0.01624082789429905,0.006885147949747589,0.0018282188303824912,0.0021597070287066858,-0.03449644212709341,-0.0045867364629622095,-0.006177465850837817,0.014697162984428809,0.009865073168217667,0.0011648808225844251,-0.0056163927374336415,-0.006917336082472211,0.006037846641941524,0.03127930367770898,0.02564218004664614,0.001204963659147142,0.009757485824738838,-0.0024745517780423868,0.0018858866915101493,0.001396444262285629,0.010760774393633621,0.00010728079820865751,0.005648630530549662,0.02049065255104475,0.0012832777002164705,-0.0016641545450199015,-0.012899950316175744,0.007138482069652312,0.0033286338923499558,-0.004105640696191069,0.003755051840442119,-0.009018248958208954,-0.0037761566936706688,-0.01401267433105339,-0.00425977133523447,-0.003317271466449944,-0.0126301437228515,0.008067598716165749,-0.019614770302940582,-0.009070749649606018,-0.004013032448191564,0.005377525504668706,0.006797271036488598,-0.0012583282168699503,-0.020657411807980693,-0.0064244774785715,-0.020182533957882887,-0.004957227308224972,0.006740448954229536,-0.04816418987254399,0.00677472527539433,0.006115435866353286,-0.0018200040504502682,-0.008307263809587793,-0.014193046515818361,-0.01245267004782749,-0.003682042322677539,-0.010053967570590554,-0.0020039926611559204,-0.008831124608132363,0.015211904882881142,0.004015773002590307,-0.005463967879716082,0.010639773614391498,-0.0026657076133896444,0.009981855140891376,-0.004654092244472889,0.05132594432567828,0.004056369841431297,0.013985921647890167,-0.018125901259579698,-0.00936328546677264,-0.02970828960415563,-0.013116850713953168,-0.01976931404748564,-0.010170153311871896,0.016575918161001024,-0.0029840273406410572,0.0024198802984132343,-0.00914575395376995,-0.012424195612423824,-0.031627213910946625,0.0282418070765138,0.02380555023648278,0.004873656171408498,-0.00507782857520502,-0.01020352840761143,-0.0004631112234926199,0.0068661325197721685,-0.0065195492781387,-0.0036845916186674676,0.013087560282574738,0.008277775230574838,0.003400507240295421,0.0045922880048599075,-0.012334947656727116,-0.007071830292141721,0.012496619106622133,0.0113673154385047,0.011786811938865393,0.02082827850282526,-0.023427474616972446,-0.017789912594629552,-0.005551377861482976,0.001056653123513836,-0.010093189703251525,-0.014751371103508016,-0.012105981595000424,-0.005218728629217509,-0.008585125679661803,-0.008708013543050572,0.023177614982300174,0.013578479532333942,-0.015024918494908819,-0.021030407715630292,0.010473791958291494,-0.01415265757691214,-0.0064582961429595085,0.03015147745746809,-0.002037984141111832,0.008603085253412843,-0.008446459265319476,0.0018537164236463502,0.01150948833730474,0.022483563773585048,0.01571300867975396,0.01453180455429026,-0.023881491506305353,0.005533506170203224,-0.012275897924706358,-0.002493775712382425,0.00883643544018429,-0.0036710704068679116,-0.01821188073470846,-0.026589138640118214,0.00556892977247631,0.004328615721954211,0.00382262881465565,-0.006503780166631287,0.003473326586147991,0.02841231470492347,0.013372170536789697,-0.01620690893095267,-0.02065810953191955,0.034969922173542584,0.011837182020564389,-0.0015766386790467073,-0.017446769069582195,0.011041636012818299,0.02326034572155645,-0.01802339810263364,9.01746762252575e-05,-0.004338561960103457,-0.010250099028472253,0.031676090671037216,0.004601066208869751,0.01641107970684549,0.01026744329229934,0.025262298078428464,0.019135130142390676,0.0117181641042232,0.007168500798755186,-0.01655464175356915,-0.020427198560098347,-0.01584695537152743,-0.016044988116629143,0.008092756730517642,-0.022147014826890937,0.0037519373894216823,0.01760875452669582,-0.02527276511410397,-0.022744111152186025,-0.0024880863078767333,0.012441349599758714,0.0045269290716506965,0.013418636726774232,-0.0014472810339236756,-0.0009946534859679012,-0.0004304601138445918,0.010869563597465473,0.0026423981182803367,0.005956653649167886,-0.01507955530053099,-0.009614083317051873,-0.007025567209649222,-0.0015939464812601875,-0.02015513105430448,0.017121536040115386,0.011545834230585092,0.01432705672489182,-0.012867271221798059,0.0006908186022324299,-0.01689486723116216,-0.0026960325974090546,0.01346687454050412,0.020570213363803328,-0.007417053029089405,-0.012848719144126922,0.006620857726822666,-0.0015691487471504078,-0.008611811892689317,-0.0051574626034533695,0.016882651927889666,0.010452298161349538,-0.010277288937099432,-0.0070777758010751295,0.023240091198134544,-0.016474387488281644,0.01565923986062888,0.006615045614890759,-0.008129545276197052,-0.011754263357320481,-0.013906631234347615,-0.012988266741200738,0.006124166704405802,0.029182319268001054,0.0168798148897704,-0.041652705722599034,0.03163484719175895,0.014180459272213128,0.013762865155217196,0.0013057403386879142,0.006959085683706569,0.003619489924488809,0.0019708309791972045,-0.0085604466766749,0.025630885294436162,0.026313161192407928,0.005774162652873104,0.0031116238266403968,-0.013073302427460963,-0.008410530952369905,-0.005638744644870071,0.007870451808855377,0.00032992068232927016,-0.015622772223999737,-0.004465098911963036,0.01932005769358391,0.0076340319465107165,0.011851457402146522,-0.012362821245366477,0.013241026984926227,-0.006008969411946627,-0.003812522300493173,-0.018382707784778983,-0.011095679902556981,0.012670624180446023,-0.04815079413896387,0.024360496902794238,0.01926776197854049,-0.008216340494057554,-0.016311274155720423,0.019097264079510706,-0.013073307504708127,-0.0013595057963299102,-0.0017395371409630327,0.005719235683605349,0.013151358233207315,-0.0008879043081577394,-0.00900869252164688,-0.0029375051726462146,0.00318012329807072,-0.0011284245100459224,0.005059296357168918,0.00012278796577975103,0.00035555484866608316,0.0019371596926119228,0.011586806310995545,-0.006996485635078425,-0.0016262563889800892,6.940216039830142e-05,-0.011027641842233829,0.0064638929313532816,0.005933484747097321,0.00482699553147191,0.012270172798585995,0.00862166534472651,0.001591533585605143,0.0054556785157567,-0.011926300894670897,-0.01539171083292458,-0.014650003615672274,0.025229056763188575,0.024689762480650176,0.02330597917010006,-0.019403121464613773,0.010531452153583405,-0.04026214798351311,-0.003988539875384415,0.011080266593782263,-0.0063722928312938305,0.02116587289248887,0.002189269271020196,0.00044340507319390484,0.009377876773297468,0.04532281374281536,-0.00955043420924767,-0.01019446788771534,0.018022534408767155,-0.0034108403192871224,-0.010953799713868433,-0.009201873317423429,0.0051944498829655525,-0.009588954629135931,-0.0015867715291035145,-0.01678106101174152,0.028988714870732426,-0.008544864480267728,-0.009585176287811715,-0.013918710585631973,0.005663877925403466,-0.004726102455185009,0.008272806172128548,0.023878254071303028,0.018822240630666797,-0.028580489550574465,-0.016803868131465005,-0.00309657991999912,-0.0060877597970548465,0.002725360238626939,0.01501267550814645,-0.0036104185320724644,-0.004374751299393289,0.032930725820114616,0.006660088808049343,0.01187607391397847,0.0006011311708908877,-0.006829988418072018,0.0065115032733406965,-0.006388072498450472,-0.0038200717031568274,0.010180725944327455,0.00946899000626837,0.009106489990089912,0.012125621882648376,-0.007520526552113508,-0.006801884944384622,0.005696346839068572,0.012430331931267982,0.006020721594630654,0.0039022844591638027,-0.0011484764026046376,0.00411109664112795,-0.015921135438337373,0.002458307137629408,-1.6502190576194913e-05,-0.004660050239857284,0.002040792940203573,0.001319535247662697,0.017580052812964667,-0.019884285840968543,-0.009047821739548373,0.01244530302293408,-0.0036010524753514986,-0.0006048432569359746,-0.0063550088676182555,0.002223286033883173,0.006209684359078832,0.008536839845861543,0.027202236336018183,-0.0034672498488008863,-0.0006095641493358158,-0.004285198771738534,0.0003772070076153238,-0.011170151948141251,-0.006915909730140216,-0.006187928971427302,0.004307838994842673,0.00036487064204406954,-0.01898788943644552,0.009100904366147237,-0.009691056064948862,-0.0026415541963650305,-0.021441561357749495,-0.0026129547810297077,-0.0012762122895752929,-0.0030036341722992667,-0.0027097924102395723,0.018986680805453585,0.001711681766590819,-0.02639726767138613,0.006812073132651048,0.019910999364493358,0.019640033515044293,0.0011905250866136913,0.019040016456823072,0.018213717066812653,0.0038388235212776993,0.007355969084932764,0.004888293191303453,0.033164356170256384,-0.011809274217231897,-0.0077243326048684795,-0.009289650911271284,-0.004082387853036045,-0.014050105642156611,0.01027586620082006,-0.018927857664614404,5.103415728736656e-05,-0.01812395452565061,-0.002695028886056942,-0.0037038552963250693,0.00800730156484816,-0.007983612053325186,0.01148083822961172,0.002940034712223482,-0.01118499642613664,0.0008120670039576595,-0.0018749118146616825,0.004332710363416019,-0.004541943147575632,0.007048268885994961,0.0028815516038657014,0.009492917435210147,-0.010584109058367182,-0.007677925205708965,-8.273616135010517e-05,0.011637034172539532,0.0025084277163598583,-0.01823720541629705,0.013364180174466323,-0.008800676734240032,0.012013603192208337,0.04462063208108666,0.012986790463767802,0.006470253225792218,0.004420851194972688,0.006527027645617963,0.0036995198883409616,0.020566927952072215,0.006173253741105416,-0.0005192244662302693,0.01421344714627762,0.0067797391919470675,0.009103237740117476,0.010212171212818956,-0.011957518352690343,0.04318080288061659,0.03174385181555105,0.022668163090741492,0.016371366436782275,0.02960477657989481,0.014166289004502309,-0.013678953967751817,0.00015676861452834997,-0.003169964882208103,0.0027221714897937587,-0.02281796443133746,-0.005575996524957033,-0.010367320154879827,0.0010166097278635814,-0.022510795826627898,-0.021526346204234718,-0.006369857035630535,-0.0062891394269350715,-0.0053676826174164916,0.004231800375290821,-0.02134126689090916,0.014075066359117736,-0.007066141097544697,-0.00032632621177519763,-0.023092077400629983,0.0009104766461873797,0.004641905130988024,-0.004904264395861502,-0.0022771456965099426,0.006185092235952591,-0.03580649936432417,0.014265327629448878,0.04855290372135418,-0.006756249783920167,-0.002196065862159549,0.027040829047730464,0.00206870590870065,-0.007637553407936186,-0.005788331679308703,0.0023473823558780088,0.018804684686180753,-0.00982871881214832,0.013937726505982427,0.008707692801933705,0.011378527355615953,-0.005917156213598589,0.02284349255589775,-0.01523538923291675,-0.000548634077485985,-0.011908129495711229,0.01002993374190909,0.0038015542488832156,0.0031213469103520595,-0.05592563303618142,0.024624681801451873,0.015612549911935602,-0.0002890932906323717,0.01210795458786462,0.045558862018118505,-0.008442534859644793,-0.006269937165147377,0.0012085851998236644,-0.0019639795056277352,-0.00779164619598056,0.005083326499277476,0.005668750896312608,-0.0025043267652558737,-0.007487031150630334,-0.004724519898297339,-0.007640264073423731,-0.0021469405805614426,0.0032221710767075897,-0.025873351848846503,0.0040198159636365745,-0.04936859965197301,0.007796688321696543,0.004002040644202312,0.00018783555286841443,-0.009882043353607112,0.0030009828642719068,-0.019606703255560465,0.018263688333473468,0.024153678683647546,-0.0022703932845638316,0.00409908230926458,-0.016611873580494232,-0.01691887812834246,0.0023218848940357237,-0.014990017061221519,-0.0010813748492473295,-0.009802504334865524,0.004696709578548766,-0.01238621468001677,0.01288797872817824,0.013523030907861848,0.046237730449553156,0.05128285210622882,0.04759408570928062,0.006623661270551387,0.015517448249148963,0.026581316263962422,-0.003991699295951471,0.005804983238427183,0.02254756813493655,0.018669007635950367,-0.010111536388217972,0.00896612083621919,0.001925735235572856,-0.005779631281381339,-0.0013409934828966122,-0.001640128784587769,0.022442674390626433,0.005704187757274877,-0.007835291298459965,0.005917599115893125,-0.023286374964752245,0.011956597102677855,0.0004269229890012693,-0.001807490746911728,-0.01979923706595317,0.005203360926278966,-0.0172370732416593,-0.00927756972844468,0.018409659009680213,0.0033760339458098454,0.0014010328524930431,-0.003803309531400543,0.009231320876687377,-0.016734699849221754,0.012315836475724583,0.013056402260274134,0.004574109468402663,-0.0016807343143178206,-0.002903070499907774,0.00642319077293416,-0.006196882883011525,0.00768026102540887,-0.009392438699527987,0.002055866119005569,0.013991774431804261,0.019957895307042284,0.006708723262723508,0.0274589828922099,-0.0017152291646310611,0.004597635035346106,-0.04726296416580341,0.018394281922067695,-0.0025113222487986976,0.00946307911655489,0.020737774280175175,0.007211776555276399,-0.03594050141789846,-0.006307952440100757,-0.02223416538569264,-0.002904531194992917,-0.010793598285819989,0.00681683638324272,0.011691508341798685,0.004230887957483145,0.0033743256732733577,0.0032629300434068886,-2.3436082787428152e-05,-0.004471442524633306,0.013975621838022853,-0.019795744376994894,0.026037055913413935,-0.007464571825953229,-0.006137334991363725,-0.005442463619000979,-0.014978587711196143,-0.00312870392124859,0.0014769224771499067,-0.0128602311990175,0.00903357060460118,0.0005145650680190502,-0.022327364202352765,-0.03772513241074709,0.003220003671464328,-0.016811058842445062,-0.006874593373680133,-0.016081741782000437,-0.002502493678178345,-0.00031254117713379385,-0.005946183994387633,0.023466693203138628,0.0029814116034345612,-0.002946337639738599,-0.011605561419246268,0.001960360795907108,-0.01225719344710952,-0.003910747040395801,-0.012142282693487336,-0.003880686273480863,0.013249315275610627,0.008886562373999492,-0.00848451305633982,0.004399659618329856,0.0013406110520091837,0.013182283538279185,0.006465694238180731,0.006815994644806177,0.008464996575953568,0.0027176003094003145,0.009484460583063629,-0.012168880003986532,-0.0028105930747722376,-0.006378122336040445,-0.009268185374380419,0.01538539924354321,-0.01934841308887198,-0.009027436254483275,-0.01866574757350921,0.005229718680835683,0.02113383424825235,-0.0018671375706686146,0.006218661826119897,0.021897313083560542,0.020627594786362707,-0.01561746254515927,-0.012537890364335268,-0.005779376464915488,0.00041948726959589445,-0.0025068349681414254,0.005553365415142021,-0.0027201101705047878,-0.021214120880629815,-0.0005733696403673958,-0.0038657436698077917,-0.0034069777954716133,0.001598546601911744,0.01925050811457568,0.015205118156161894,-0.013533361212132885,-0.014171753416381251,-0.014229660130997855,0.0067627477714059395,0.009760869990090158,-0.008203819404488501,0.032647487366255355,0.0003668959078861053,0.03537777465363683,0.010744478161195848,0.008517234657128173,-0.003280780493564061,-0.0006203119317756757,-0.0033230150984225383,-0.006916126770352682,-0.007095995013770785,0.023045089476475194,-0.00712468018305444,-0.017890097325822054,-0.026053328470770985,0.00012896646950244368,0.04437575042670533,0.005269589478734809,-0.003760451150716951,-0.0026202883288797183,0.010988951247076542,-0.023227777963390837,-0.005697575052503203,0.003732126172054236,-0.009246938517493794,0.014664846407912855,-0.007202287491230764,0.010131433545883604,0.0061333354867867855,0.01287406969115316,0.004378328778691998,0.007852545860469701,-0.028193851514925167,0.002964013890523847,-0.003874125905294527,-0.007453451389381515,0.0087511188950498,-0.0019409411636167858,-0.011808761025504596,-0.0008875781971945622,0.0060874659115436255,-0.0002071622564652089,0.006573173509166676,0.005301079154626952,-0.0002575264081653428,0.03241263269611045,0.00958711310291287,-0.008119995325334936,0.007015491681823217,-0.015932226480567222,0.012083055336167426,0.024295033811543628,-0.022612257645267753,-0.0018566693147100295,0.030621206512599544,-0.01843181978163871,-0.023126238230924568,-0.01580227278134945,-0.0206519728867795,0.02749710622221962,-0.004377189503631053,-0.009749137976658792,0.01500211919660153,-0.0013595906866261782,0.029423518825754,-0.007434622910189415,-0.014263301302919773,-0.007627308251850281,0.014608107482031315,0.018249522930192753,0.005020039152371508,-0.0006824858003278904,0.0006032679383841273,-0.004953347845614111,0.039778370856601096,-0.010355848316178265,0.006553224929450863,0.008455308131724307,-0.004205901679952171,-0.025666632965803026,0.0079903196713903,0.007128973175060657,-0.010384693963214363,-0.005420702481725286,0.0010813111512664225,-0.014723957308333757,0.014284635560430085,0.0403097836205,-0.010354071813458756,-0.012116696732959361,0.003309274590190758,-0.01239012301709717,0.004404986242700689,-0.00023251334030383654,0.009525390261736722,0.0018299305228518623,0.0025575219246640893,0.0027664382666731458,0.010062009256182329,0.008405223128174344,0.03977268686373379,0.0012104647685211242,0.0031617354623251805,0.01537095305355618,-0.003524472601199609,0.016882913545166696,-0.005406359894623784,0.04989975192203276,0.004649900644915301,0.0077562654608404145,-0.00400446838118282,0.03845399207356269,-0.002274209418853106,0.013001905235182885,0.00030829519266519173,0.0018353863601560457,0.01108814226128706,0.0013821538973250883,0.006068140780306634,-0.0091513257517797,0.024794431936058233,0.002461337878240129,0.00050201186261834,0.004000804265707587,0.001924909181569618,0.009200430887710272,0.04815815149768294,-0.004920080424823683,-0.013613801872693374,0.003211756870701574,0.008576694162383129,0.0001579793144549008,-0.018573784943556788,0.021489797215582484,0.02084825873467718,-0.015963779143482355,-0.0026092665803952825,-0.007987490490841161,0.0071669067510066265,0.02593554829693434,-0.007047958234723387,0.007891291702427666,-0.0013828075125305445,0.009025028285815183,0.010078867335260108,0.0007218268717892239,0.01873509896057554,0.012524621215044305,-0.01877289387967651,0.04913737528973179,0.030165104935493157,-0.013476974305824887,-0.020809591168894605,0.006791323590868435,-0.012439965752296602,-0.001727839301707746,0.0006721515613093393,0.003662459013943517,0.0073380709330232155,0.012638296550611649,0.005729075446265159,0.01663823094913624,-0.01930098691511686,0.00013935590377719284,0.018855520459876915,0.04738355234318247,-0.03453701657023418,-0.005238250591057471,-0.011031537295839281,0.001311782667243714,-0.002100779752073706,-0.015523269459050162,0.002109869374370007,-0.005716102948028004,-0.003796138269859772,-0.002202886888526315,0.006849813116313589,0.03779198871817329,0.007037298189548686,-0.010816450761513007,-0.0515745461759778,0.015368892507246644,0.004883620203454416,0.004765680047703401,-0.012348911316272393,0.02557063149289218,-0.018728690443267082,0.00155773964471021,0.010508881080893762,-0.01163862773366206,0.0032432313794174624,-0.01171294737606119,-0.006403005501564729,0.006433403078798881,-0.005806691472350611,0.004596935186427275,0.0007115652895729248,0.004739892354387304,-0.0020315955967897875,-0.0008326852792335152,0.025552181160025132,0.0020915650089382487,0.021245082907005542,-0.007883332536170056,-0.007429495730700079,-0.01907841888845767,-0.011084123338474064,0.013541120882721393,-4.1256041387897544e-05,-0.008026290146043186,0.0005256843506120472,0.04893206838594197,0.0026435656577832698,-0.012104548621957902,-0.0009697718585970471,0.0008758268259912777,-0.006059472388917903,0.0010823820404952614,0.0027299955668435394,0.0034279552076008253,0.006415450919129304,-0.012683851687666437,-0.0035033516600112987,0.01166341574031493,-0.0027812858361630417,0.002042656595490985,0.00830510964054382,0.006407180384459681,0.0018328838538788064,0.009048822421070813,-0.0040796902240041,-0.011529801965862889,0.0011044479782921497,-0.002485459464466724,-0.00035936059445357374,0.03434166697548756,-0.00476693678827366,0.015810761452270023,-0.02812298988355338,-0.015132311758885799,0.01104183162959448,0.004945463440090579,-0.0012221551314280377,-0.005593542912525572,0.008837302566178666,-0.0008499743411098262,-0.0023929177291579537,-0.007266415333043063,-0.008721478335525843,-0.025071289626361362,0.01317747799123953,0.004808532120666224,0.015738593284634145,0.01739486348799677,-0.0020445564046232315,0.006715577015196976,0.0030615640094763725,0.015617000763101829,0.020402996151592672,0.0010190764214515105,-0.008525320212021261,0.0348174508178613,-0.008614180594641956,0.0027471487038189676,-0.009173440180104952,-0.023594974797803835,-0.016996274373422018,-0.02397244877344616,-0.011951753431030632,0.002726199714764376,0.0027670433406841895,0.0006636871446380816,0.0014675117291302227,0.042028388417823956,0.00471847793971998,0.045474511671217216,0.0023045247468469034,0.013996126761567534,0.0037478601091083556,-0.0016731024799559171,-0.002779313576176545,-0.018871986440701247,-0.021849429762240052,0.005745427929266249,-0.002421411107577071,0.00322097535152955,0.006000599462644421,-0.005789522701886742,-0.007352965647981623,-0.006664453549667102,-0.008027003903858854,-0.004410954043050289,0.0046054700833297576,0.008850878983184509,0.004596371604406636,0.017712203962718557,-0.001093976474895636,-0.0032102429015609542,-0.012270619261030463,-0.008473728051768908,-0.005016396931802683,0.004624707291582993,-0.008887679199725001,-0.02547127562592525,0.0011884244830010825,-0.007915943554333253,0.0025264818798393664,0.0010345767820117643,0.0020053456941946093,0.010872585416039086,-0.006828565503896191,-0.00025126553220662363,0.006960399074950683,0.01577844953026357,-0.016536844648622057,0.021202479029844252,-0.009289229085698953,-0.002494981291894884,-0.006535953938906545,0.007532536807151237,0.007785554863909413,0.0019966592761516567,-0.012989574084584659,-0.0003249036756193388,0.0011385466298384894,-0.014275000452546156,0.012484383488247005,-0.00181222038183698,-0.005062002366805037,-0.00283029599057361,0.0041148995702750945,0.015027870062528991,0.010161934069445497,0.004872811536265143,0.007482537281273839,0.01220999571684094,-0.009574071970380354,0.002822856616562139,-0.002100267608740093,0.004836877739380021,0.0067769361951716635,0.0027422971360749364,-0.02016331094141942,0.033437130043879465,0.009530830581151863,-0.008977741352738683,-0.00183327305050299,0.020772372891581074,-0.007334795040838928,0.002609297027763547,-0.005062127185717479,-0.01259541675448824,-0.007721015061489507,0.0056495809766744995,0.011103272325003832,-0.024163357852470403,0.014942994035099365,-0.004304677555729684,-0.005291345730660304,-0.005673052757667398,-0.017683084277668158,0.04184975362091948,-4.7829318076677585e-05,-0.012261514642767155,-0.020491206025853526,-0.0033020664198518935,-0.004087534020368997,0.011287026621201311,0.0002879813686595013,-0.029682731186056414,-0.0010043211919440061,-0.011577797004360686,0.004258765258625633,-0.011155621467646492,-0.003129946854400965,0.002877402915965425,-0.003201532173885625,-0.01338217769157418,0.0005014395314107777,0.017661288180771076,0.0017718491522981782,0.015599605127394953,0.009380779525406592,0.00010829675533640908,-0.007375201406974901,0.00019804956704728977,0.004858070586773755,0.002768739886587896,0.03793509332647309,0.0022276830622595524,0.0007082746039450243,0.0006246323958068715,-0.00360939048329832,0.009866547968401258,-0.01318640998476305,-0.01138923332400737,-0.0005786608255301394,0.022094221917111613,-0.007182860976189207,-0.004965118007657116,-0.03093370273167142,-0.0076443010938763,-0.008913362029444368,-0.022106534752851157,-0.00048739306127308554,-0.0009932473685604032,0.009011165118549831,0.0006829922001405551,0.0008330169331400492,0.0005381901771228787,0.003490516458990025,0.006417143981834965,0.002920540294411853,0.01467511747655169,0.0024738589168297755,-0.006917964912729484,-0.00044497287504176097,-0.0006132714675911153,0.003303170178475611,-0.0026214950231225292,-0.007816135923660279,0.005685157398377016,-0.005595801751305292,-0.005105521393668276,0.027946273501079092,-0.0012286750951194365,0.0075183024487147695,0.000988087427740283,0.013030471867606504,-0.01750479113318084,-0.009939418000174541,-0.0003764600991583095,-0.0048136280412776344,-0.008655278758408326,-0.003414036985856308,-0.006391900426387915,0.0018857796642372069,0.004940134329916035,0.0011565244736171153,-0.006024218854607649,-0.000821865882277177,-0.00079707102810234,-0.010990660168142761,-0.014450396574747499,-0.015413902190560715,0.0008293806123979341,-0.013215487114468386,-0.010200619672710923,0.008780068646043929,-0.019891986818930295,-0.01150009305628067,-0.009825058275299323,0.019652765593390246,-0.006254532738397789,-0.018635170649087304,-0.022489944215096463,0.00541039596251306,-0.015380344152579906,-0.022258462392776516,-0.031808937117155586,0.003851005310891944,-0.0017174843400267256,-0.004016106891495774,-0.012886278980055682,-0.006113308591722738,0.010884453803271955,0.002802486032898361,-0.0006332242675541304,0.00967952459958638,0.0225599046124892,0.0016660085342679288,-0.014267871496022357,0.009027985845843642,0.01961475337549105,-0.01625991827867305,-0.0009735208367559039,-0.015049975002524706,0.007936080618882393,-0.01105171765729772,0.019328210981520176,-0.020845127383249413,0.014010491603524492,-0.009624442906469187,0.006774778733924378,-0.011400207753265966,-0.006795031764922763,-0.0034880997703322244,-0.0010947674359193607,0.012849680524574714,0.008835578105208117,0.003413130421551488,-0.006715026821934422,-0.007359036345421927,0.005492217070356034,-0.007294881838939791,-0.008963333354391973,0.006054364456922506,-0.008053073406573184,-0.009944717540674313,-0.018674267596981018,-0.0014808462435459443,0.016556993491695097,0.017226982673603963,0.007811183332442358,0.0061076021739469265,-0.013036338923844641,0.0017437374583884045,-0.006059215681171286,-0.003736123367680627,0.009027301828630851,0.0018272991265645094,0.017597078735356837,0.026240949035935764,-0.006270026238060896,0.02005572734373162,0.004233192103303471,-0.005788877634822303,-0.01413826378111921,-0.014739471449047756,0.013432574960499646,-0.008772845440113045,-0.0032569854895683013,0.0012158638511984023,-0.010636752682129519,-0.011765325773432124,-0.008017835221526534,-0.01370985294461463,0.013292394175865927,0.0033422721810357505,0.01717596385205252,0.0079690110644236,-0.00036819898878452694,-0.003650213867578792,0.002135477961034335,-0.007241764647722896,0.01952232622193219,0.013939697919384765,0.0037076070945589188,-0.0010042071542214872,-0.012957497151895933,-0.01623298620799152,-0.008148730884992999,-0.007417271612396614,0.004807826982776909,-0.004871256975463881,0.003642856074902751,0.010905239667622418,0.02230225859831499,0.0030311343351224224,0.003300656890681375,0.00529111502678157,-0.010660981711872235,0.01762386919741259,0.02042257151502793,0.01766284272186895,-0.010796135313206197,0.003537937602974652,-0.0029372642108524845,0.009552005273346589,-0.01654210246482851,-0.0025701784290634486,0.008624311262064364,0.010169998158344866,-0.0005307144212342401,0.0007309010044250847,-0.00872183569567293,-0.010981879396051147,-0.0018709130686263187,0.011692407766415273,0.007381018176984026,-0.006172361854053395,-0.002064719362564593,0.005109503367203109,0.014413722209937623,0.031095512379844512,-3.8250271122074865e-05,0.006007852040391234,-0.013467404537568513,-0.006982627988065088,-0.010124510600199981,0.007316671025362019,0.0003348459260052538,-0.017398203720922486,0.004641097939963947,-0.000517690409294474,0.011417445054785728,0.0017522187570306064,-0.004057152045967928,-0.005968867237376045,-0.009680566899593068,0.004203051594002391,-0.010220493100226765,0.004994412302471108,-0.004846895598599688,-0.00892102273885626,-0.010450709275628578,-0.004801873821064388,-0.009194938383781036,0.0014730294106659809,0.015761901100227137,0.0037398586257159938,-0.012800995520494731,0.003477223533796567,-0.0038108163331369935,-0.0011193363612856187,-0.0014656958305944866,0.006439386354892891,0.000924864755408774,0.017245065229680206,-0.002254732794822081,0.018949781155260772,0.029336524291915567,-0.0023625433445437698,-0.001078997894632062,-0.0012936068057961276,0.022203913517875058,0.02215130461796759,0.009386178602313652,-0.005522679391508525,-0.0005421366268354539,0.00968706882892312,-0.004318407163298338,-0.019686221415317732,-0.0017497487945663638,-0.008248856144509516,0.015274084225881963,-0.005838884529745069,-0.0025808654221421198,-0.0114378012150753,-0.0003542209331277911,0.019557729900866395,-0.0015462685034580092,0.02290383147011966,0.024926933301005233,0.009506966275506025,0.03760726958086317,0.008619370915946917,-0.001262877278335233,0.024284310249955823,-0.00460268490142004,0.0037266041555637304,-0.006293615443995286,-0.014362198891262822,-0.0027003494043234062,0.0063124909665925755,0.008923065659557014,-0.011840598020731086,-0.0015277264459420607,0.005346292669059028,-0.009765143482488817,-0.004363881923910827,0.019965011722375168,-0.006844235934916645,-0.001956235101082903,-0.0063319685266595965,-0.06409890925028293,-0.014086581192367028,-0.009881979405514473,0.0011050586106399235,-0.02410272028201421,-0.012967789136078012,-0.013294376551894607,-0.010991136355802183,-0.013765118178540675,-0.009760623676061314,-0.02565892286886672,-0.025801793137896052,0.0013785628394634498,-0.004515988563562198,-0.002597652791488952,0.02987185976118992,-0.00902187217115183,-0.03829719536245085,0.022728945533796747,-0.0021109636654040014,-0.0010698490507033357,0.004633704975784081,0.0018500182646421968,-0.02097272878591909,0.019587528807123396,0.023273110044952604,0.01564983742805976,-0.003982708822053239,0.004562088867115074,0.004093631910966433,-0.002024130075589528,-0.006707813025092846,0.007698573585413914,-0.008722694635046494,-0.015042182583697853,-0.004073101710711565,-0.003787429093907073,-0.0041277624643887,0.022709185999926645,-0.006956526593854895,0.002835892017741995,0.017935816300466683,-0.001592252397810322,-0.005903495340234388,0.022153694747902977,-0.009644541683361452,0.017775935560474986,-0.004387098143941561,0.011683666962315733,0.004315711787583471,0.007715990296476497,0.01567510430020861,-0.007431251218675411,-0.015374489815509792,-0.020089664535836608,-0.02770608145167481,0.023489323178856294,-0.017204014727076465,-0.024758926981803694,0.005262904210922704,-0.005552278128114472,-0.013107535014095112,0.009386977294948461,-0.0025739290445106673,-0.010045293018985794,0.02437618280280993,-0.005845625618454829,0.016029846569105444,0.018205454146320545,-0.006515043188729646,-0.008118863102885043,-0.007020599619373521,-0.00885027904441066,-0.008101537123326369,-0.010341503736870296,0.016573907747241517,0.006784702676482027,-0.007089347396870576,-0.013543352567521968,-0.009668849710846217,0.003761803531251467,-0.02300335213121379,0.004963733870411021,-0.011918234309802964,-0.01707665045610335,0.009155569548073129,-0.0036215917027022154,-0.0012235591583293604,0.002420692335548678,0.015979100662536376,-0.014155015011622413,-0.011291831309848692,-0.010381026015053885,-0.005228510979774159,0.005557958813171113,0.03459205713614842,-0.003685165970303599,-0.0046753962789827545,0.010674366947459582,0.005621027917250902,-0.02440569670185399,-0.0018153829859058053,0.0024007367552757535,0.0055979677193182305,-0.00646092709357156,-0.006459161921181045,0.0033015067161206416,-0.005709853657845311,-0.0042977591708499106,0.019658396691487716,-0.018595492411201016,-0.008185101034012153,-0.030997771276062066,0.007789834177519847,-0.005538284004944735,-0.007480656792571979,-0.02110650659557689,0.01863456021147204,-0.0007371911216560738,-0.004023329865501433,-0.012223355303016147,0.0029956158063101763,-0.0014403790507439274,0.008212314964455581,-0.0036287929058108756,-0.0057347037788161885,-0.011468978241900324,0.01583117393096626,-0.02844113984781559,-0.013638939856355893,-0.0007209726554216707,-0.007909848279693064,-0.0001734100126625488,-0.014032681834540693,-0.02282572982236062,0.008143595497679243,-0.009716374614407693,0.007216723605488538,0.01398894807637646,-0.011916200569465683,0.007413799071809839,-0.012656653582421776,-0.009881675620950945,-0.0015948612492328834,0.009725944295962984,-0.01948878873944348,-0.008042127897855326,0.014101052871290654,-0.0006204208469496569,0.003660708215211288,0.001399541750313335,0.012976978304005567,0.006791237547403326,-0.015782021945277527,-0.006154439064205079,-0.0010864926817577235,0.014658780377872287,0.002272325671692659,0.002955253426293719,0.015867075624945794,0.007900211988901487,-0.004902818468145787,0.02905092859414291,-0.015591152589634031,0.007092776043540602,-0.000723265889029041,0.00927713395136581,-0.01369247920203191,0.007933620621110827,-0.0004147110061187662,0.004352504820747,0.0018715602553643158,-0.009613930747351146,0.01438158414468228,0.005093412183064576,0.006305402168415772,0.0006812151010507531,-0.00424228603238663,0.008632234508535409,0.005271856463974475,0.00564432401693796,-0.002309484867811544,0.0007041262342419796,-0.01253151493043365,-0.03250056248309362,-0.00413410139479124,0.001630798477107782,-0.009437627515534031,0.006291246024630866]}},\"id\":\"061fd3f7-7d83-4ede-9732-6bfb6eff4dc1\",\"type\":\"ColumnDataSource\"},{\"attributes\":{\"plot\":null,\"text\":\"Subreddit Map by Interesting Dimensions\"},\"id\":\"6d4d9eb1-c339-429e-adf3-248e586865b0\",\"type\":\"Title\"},{\"attributes\":{\"active_drag\":\"auto\",\"active_scroll\":\"auto\",\"active_tap\":\"auto\",\"tools\":[{\"id\":\"0f8a13e8-194f-4359-be10-140189f1e8d8\",\"type\":\"HoverTool\"},{\"id\":\"169f7e03-dab5-42c8-b091-071ad61cfc67\",\"type\":\"PanTool\"},{\"id\":\"3cff2944-8dc5-4ee2-a75a-0d26588d89e7\",\"type\":\"WheelZoomTool\"},{\"id\":\"974e7739-61c2-4495-926d-19815978115f\",\"type\":\"BoxZoomTool\"},{\"id\":\"f1c91306-0fff-44a9-b2cf-0f7cf687f209\",\"type\":\"ResetTool\"},{\"id\":\"5b60f0dd-7ed4-4947-adda-40f89b4cb24b\",\"type\":\"SaveTool\"}]},\"id\":\"4a663d8f-e947-4928-8689-a303206c5e51\",\"type\":\"Toolbar\"},{\"attributes\":{},\"id\":\"5023ab07-48ef-484b-ba35-704500ae45bc\",\"type\":\"ToolEvents\"},{\"attributes\":{\"plot\":{\"id\":\"f084ba2b-651b-4118-bf5e-94c6dd022608\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"f1c91306-0fff-44a9-b2cf-0f7cf687f209\",\"type\":\"ResetTool\"},{\"attributes\":{\"below\":[{\"id\":\"4f923895-ca09-4946-b65a-08f719b8b6c2\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"66ff4024-141f-471d-92cb-ed10729ba378\",\"type\":\"LinearAxis\"}],\"min_border\":1,\"plot_height\":700,\"plot_width\":900,\"renderers\":[{\"id\":\"4f923895-ca09-4946-b65a-08f719b8b6c2\",\"type\":\"LinearAxis\"},{\"id\":\"2877b05b-2548-419f-ad21-6460564edff1\",\"type\":\"Grid\"},{\"id\":\"66ff4024-141f-471d-92cb-ed10729ba378\",\"type\":\"LinearAxis\"},{\"id\":\"80f775c8-eb84-4685-a7b4-3e35830f3586\",\"type\":\"Grid\"},{\"id\":\"da4d6e07-e5b2-4600-97e6-dab951f72f85\",\"type\":\"BoxAnnotation\"},{\"id\":\"e32fad95-7747-44d5-8bfe-5869d6ac8e4e\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"6d4d9eb1-c339-429e-adf3-248e586865b0\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"5023ab07-48ef-484b-ba35-704500ae45bc\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"4a663d8f-e947-4928-8689-a303206c5e51\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"c326dedf-c17a-412f-aadb-3b569e68af9e\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"1973cc67-4d9f-4a78-8258-d33c61a87a70\",\"type\":\"DataRange1d\"}},\"id\":\"f084ba2b-651b-4118-bf5e-94c6dd022608\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"fill_color\":{\"value\":\"#1f77b4\"},\"line_color\":{\"value\":\"#1f77b4\"},\"radius\":{\"field\":\"radius\",\"units\":\"data\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"3244bf7c-cf1c-495d-9155-8b952e9c2e44\",\"type\":\"Circle\"},{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"radius\":{\"field\":\"radius\",\"units\":\"data\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"02eec541-e56d-43b0-8c11-aca3c114d88c\",\"type\":\"Circle\"},{\"attributes\":{},\"id\":\"5f7c9b11-9682-46c7-aa16-a08759e62ff4\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{},\"id\":\"fe98ca41-bf08-45c2-b2b1-61af8faf06e7\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"plot\":{\"id\":\"f084ba2b-651b-4118-bf5e-94c6dd022608\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"169f7e03-dab5-42c8-b091-071ad61cfc67\",\"type\":\"PanTool\"},{\"attributes\":{\"data_source\":{\"id\":\"061fd3f7-7d83-4ede-9732-6bfb6eff4dc1\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"3244bf7c-cf1c-495d-9155-8b952e9c2e44\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"02eec541-e56d-43b0-8c11-aca3c114d88c\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"e32fad95-7747-44d5-8bfe-5869d6ac8e4e\",\"type\":\"GlyphRenderer\"},{\"attributes\":{},\"id\":\"2cbe611d-16b8-4168-932c-2a4202429483\",\"type\":\"BasicTicker\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"da4d6e07-e5b2-4600-97e6-dab951f72f85\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"plot\":{\"id\":\"f084ba2b-651b-4118-bf5e-94c6dd022608\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"64505b2a-503d-42c7-89b0-d5cec02093aa\",\"type\":\"BasicTicker\"}},\"id\":\"2877b05b-2548-419f-ad21-6460564edff1\",\"type\":\"Grid\"},{\"attributes\":{\"callback\":null},\"id\":\"c326dedf-c17a-412f-aadb-3b569e68af9e\",\"type\":\"DataRange1d\"},{\"attributes\":{\"plot\":{\"id\":\"f084ba2b-651b-4118-bf5e-94c6dd022608\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"5b60f0dd-7ed4-4947-adda-40f89b4cb24b\",\"type\":\"SaveTool\"},{\"attributes\":{\"axis_label\":\"Food <\\u2013> Programming (Dimension 51)\",\"formatter\":{\"id\":\"5f7c9b11-9682-46c7-aa16-a08759e62ff4\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"f084ba2b-651b-4118-bf5e-94c6dd022608\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"2cbe611d-16b8-4168-932c-2a4202429483\",\"type\":\"BasicTicker\"}},\"id\":\"66ff4024-141f-471d-92cb-ed10729ba378\",\"type\":\"LinearAxis\"}],\"root_ids\":[\"f084ba2b-651b-4118-bf5e-94c6dd022608\"]},\"title\":\"Bokeh Application\",\"version\":\"0.12.2\"}};\n", | |
" var render_items = [{\"docid\":\"de353b66-b426-44f3-8fa4-dbf208f7e6d6\",\"elementid\":\"defc1ab6-e899-4010-bc58-27b00579b76f\",\"modelid\":\"f084ba2b-651b-4118-bf5e-94c6dd022608\"}];\n", | |
" \n", | |
" Bokeh.embed.embed_items(docs_json, render_items);\n", | |
" });\n", | |
" },\n", | |
" function(Bokeh) {\n", | |
" }\n", | |
" ];\n", | |
" \n", | |
" function run_inline_js() {\n", | |
" \n", | |
" if ((window.Bokeh !== undefined) || (force === \"1\")) {\n", | |
" for (var i = 0; i < inline_js.length; i++) {\n", | |
" inline_js[i](window.Bokeh);\n", | |
" }if (force === \"1\") {\n", | |
" display_loaded();\n", | |
" }} else if (Date.now() < window._bokeh_timeout) {\n", | |
" setTimeout(run_inline_js, 100);\n", | |
" } else if (!window._bokeh_failed_load) {\n", | |
" console.log(\"Bokeh: BokehJS failed to load within specified timeout.\");\n", | |
" window._bokeh_failed_load = true;\n", | |
" } else if (!force) {\n", | |
" var cell = $(\"#defc1ab6-e899-4010-bc58-27b00579b76f\").parents('.cell').data().cell;\n", | |
" cell.output_area.append_execute_result(NB_LOAD_WARNING)\n", | |
" }\n", | |
" \n", | |
" }\n", | |
" \n", | |
" if (window._bokeh_is_loading === 0) {\n", | |
" console.log(\"Bokeh: BokehJS loaded, going straight to plotting\");\n", | |
" run_inline_js();\n", | |
" } else {\n", | |
" load_libs(js_urls, function() {\n", | |
" console.log(\"Bokeh: BokehJS plotting callback run at\", now());\n", | |
" run_inline_js();\n", | |
" });\n", | |
" }\n", | |
" }(this));\n", | |
"</script>" | |
] | |
}, | |
"metadata": {}, | |
"output_type": "display_data" | |
} | |
], | |
"source": [ | |
"hover = HoverTool(\n", | |
" tooltips=[\n", | |
" (\"index\", \"$index\"),\n", | |
" (\"(x,y)\", \"($x, $y)\"),\n", | |
" (\"Topic\", \"@subreddit\"),\n", | |
" ]\n", | |
" )\n", | |
"\n", | |
"plt1 = bp.figure(plot_width=900, plot_height=700, title=\"Subreddit Map by Interesting Dimensions\",\n", | |
" x_axis_label = \"Guns <–> Soccer (Dimension 44)\",\n", | |
" y_axis_label = \"Food <–> Programming (Dimension 51)\",\n", | |
" tools=[hover, \"pan,wheel_zoom,box_zoom,reset,previewsave\"],\n", | |
" min_border=1)\n", | |
"plt1.scatter(\n", | |
" x = embedded_coords[:,44][row_selector],\n", | |
" y = embedded_coords[:,51][row_selector],\n", | |
" radius= np.log2(users_per_subreddit[row_selector])/6000, \n", | |
" source=bp.ColumnDataSource({\"subreddit\": subreddits[row_selector]})\n", | |
")\n", | |
"show(plt1)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 13, | |
"metadata": { | |
"collapsed": false | |
}, | |
"outputs": [], | |
"source": [ | |
"\n", | |
"# bp.figure(plot_width=900, plot_height=700, title=\"Subreddit Map by Interesting Dimensions\",\n", | |
"# x_axis_label = \"Guns <–> Soccer (Dimension 44)\",\n", | |
"# y_axis_label = \"Food <–> Programming (Dimension 51)\",\n", | |
"# tools=\"pan,wheel_zoom,box_zoom,reset,hover,previewsave\",\n", | |
"# min_border=1)\n", | |
"# bp.scatter(\n", | |
"# x = embedded_coords[:,44][row_selector],\n", | |
"# y = embedded_coords[:,51][row_selector],\n", | |
"# radius= np.log2(users_per_subreddit[row_selector])/6000, \n", | |
"# source=bp.ColumnDataSource({\"subreddit\": subreddits[row_selector]})\n", | |
"# ).select(dict(type=HoverTool)).tooltips = {\"/r/\":\"@subreddit\"}\n", | |
"# bp.show()" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"slideshow": { | |
"slide_type": "slide" | |
} | |
}, | |
"source": [ | |
"# Can we add some colour?\n", | |
"\n", | |
"* Would be nice to colour-code these dots by overall topic\n", | |
"* 20 colours is probably on the upper end of what we can perceive effectively in a single plot\n", | |
"\n", | |
"## Clustering\n", | |
"\n", | |
"* Family of algorithms for grouping items into buckets\n", | |
"* `scikit-learn` has a [clustering package](http://scikit-learn.org/stable/modules/clustering.html)\n", | |
"\n", | |
"<img src=\"clustering.png\">" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"slideshow": { | |
"slide_type": "slide" | |
} | |
}, | |
"source": [ | |
"# We'll use `KMeans`\n", | |
"\n", | |
"* [KMeans](http://scikit-learn.org/stable/modules/generated/sklearn.cluster.KMeans.html) from `scikit-learn`\n", | |
"* Take K points and try to distribute them in the space so that they sit in the middle of clusters, i.e. close to the mean" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 14, | |
"metadata": { | |
"collapsed": false | |
}, | |
"outputs": [ | |
{ | |
"name": "stdout", | |
"output_type": "stream", | |
"text": [ | |
"Wall time: 17.7 s\n" | |
] | |
} | |
], | |
"source": [ | |
"%%time\n", | |
"\n", | |
"from scipy.stats import rankdata\n", | |
"embedded_ranks = np.array([rankdata(c) for c in embedded_coords.T]).T\n", | |
"\n", | |
"from sklearn.cluster import KMeans\n", | |
"n_clusters = 20\n", | |
"km = KMeans(n_clusters)\n", | |
"clusters = km.fit_predict(embedded_ranks)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 15, | |
"metadata": { | |
"collapsed": false | |
}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"<div>\n", | |
"<table border=\"1\" class=\"dataframe\">\n", | |
" <thead>\n", | |
" <tr style=\"text-align: right;\">\n", | |
" <th></th>\n", | |
" <th>0</th>\n", | |
" <th>1</th>\n", | |
" <th>2</th>\n", | |
" <th>3</th>\n", | |
" <th>4</th>\n", | |
" <th>5</th>\n", | |
" </tr>\n", | |
" </thead>\n", | |
" <tbody>\n", | |
" <tr>\n", | |
" <th>0</th>\n", | |
" <td>guns</td>\n", | |
" <td>Military</td>\n", | |
" <td>knives</td>\n", | |
" <td>EDC</td>\n", | |
" <td>airsoft</td>\n", | |
" <td>MilitaryPorn</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>1</th>\n", | |
" <td>Libertarian</td>\n", | |
" <td>conspiracy</td>\n", | |
" <td>MensRights</td>\n", | |
" <td>philosophy</td>\n", | |
" <td>Economics</td>\n", | |
" <td>PoliticalDiscussion</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>2</th>\n", | |
" <td>offbeat</td>\n", | |
" <td>photography</td>\n", | |
" <td>travel</td>\n", | |
" <td>space</td>\n", | |
" <td>itookapicture</td>\n", | |
" <td>entertainment</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>3</th>\n", | |
" <td>Games</td>\n", | |
" <td>starcraft</td>\n", | |
" <td>Diablo</td>\n", | |
" <td>wow</td>\n", | |
" <td>battlefield3</td>\n", | |
" <td>DotA2</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>4</th>\n", | |
" <td>fffffffuuuuuuuuuuuu</td>\n", | |
" <td>Minecraft</td>\n", | |
" <td>gifs</td>\n", | |
" <td>pokemon</td>\n", | |
" <td>skyrim</td>\n", | |
" <td>buildapc</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>5</th>\n", | |
" <td>reddit.com</td>\n", | |
" <td>technology</td>\n", | |
" <td>science</td>\n", | |
" <td>askscience</td>\n", | |
" <td>news</td>\n", | |
" <td>sex</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>6</th>\n", | |
" <td>lgbt</td>\n", | |
" <td>ladybonersgw</td>\n", | |
" <td>gaybros</td>\n", | |
" <td>gaymers</td>\n", | |
" <td>ainbow</td>\n", | |
" <td>actuallesbians</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>7</th>\n", | |
" <td>AskReddit</td>\n", | |
" <td>funny</td>\n", | |
" <td>pics</td>\n", | |
" <td>WTF</td>\n", | |
" <td>gaming</td>\n", | |
" <td>AdviceAnimals</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>8</th>\n", | |
" <td>nfl</td>\n", | |
" <td>soccer</td>\n", | |
" <td>nba</td>\n", | |
" <td>hockey</td>\n", | |
" <td>fantasyfootball</td>\n", | |
" <td>baseball</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>9</th>\n", | |
" <td>TwoXChromosomes</td>\n", | |
" <td>relationships</td>\n", | |
" <td>AskWomen</td>\n", | |
" <td>tattoos</td>\n", | |
" <td>cats</td>\n", | |
" <td>LadyBoners</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>10</th>\n", | |
" <td>programming</td>\n", | |
" <td>geek</td>\n", | |
" <td>linux</td>\n", | |
" <td>talesfromtechsupport</td>\n", | |
" <td>learnprogramming</td>\n", | |
" <td>sysadmin</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>11</th>\n", | |
" <td>cars</td>\n", | |
" <td>motorcycles</td>\n", | |
" <td>battlestations</td>\n", | |
" <td>Autos</td>\n", | |
" <td>formula1</td>\n", | |
" <td>aviation</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>12</th>\n", | |
" <td>gonewild</td>\n", | |
" <td>gentlemanboners</td>\n", | |
" <td>nsfw</td>\n", | |
" <td>RealGirls</td>\n", | |
" <td>gonewildcurvy</td>\n", | |
" <td>NSFW_GIF</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>13</th>\n", | |
" <td>doctorwho</td>\n", | |
" <td>thewalkingdead</td>\n", | |
" <td>anime</td>\n", | |
" <td>magicTCG</td>\n", | |
" <td>comics</td>\n", | |
" <td>halo</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>14</th>\n", | |
" <td>DIY</td>\n", | |
" <td>bicycling</td>\n", | |
" <td>beer</td>\n", | |
" <td>running</td>\n", | |
" <td>Parenting</td>\n", | |
" <td>Homebrewing</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>15</th>\n", | |
" <td>cringepics</td>\n", | |
" <td>cringe</td>\n", | |
" <td>mildlyinteresting</td>\n", | |
" <td>4chan</td>\n", | |
" <td>JusticePorn</td>\n", | |
" <td>reactiongifs</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>16</th>\n", | |
" <td>Guitar</td>\n", | |
" <td>listentothis</td>\n", | |
" <td>WeAreTheMusicMakers</td>\n", | |
" <td>Metal</td>\n", | |
" <td>electronicmusic</td>\n", | |
" <td>dubstep</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>17</th>\n", | |
" <td>mylittlepony</td>\n", | |
" <td>gamegrumps</td>\n", | |
" <td>MLPLounge</td>\n", | |
" <td>homestuck</td>\n", | |
" <td>furry</td>\n", | |
" <td>ClopClop</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>18</th>\n", | |
" <td>bestof</td>\n", | |
" <td>Christianity</td>\n", | |
" <td>TrueReddit</td>\n", | |
" <td>OkCupid</td>\n", | |
" <td>AskHistorians</td>\n", | |
" <td>SubredditDrama</td>\n", | |
" </tr>\n", | |
" <tr>\n", | |
" <th>19</th>\n", | |
" <td>Drugs</td>\n", | |
" <td>hiphopheads</td>\n", | |
" <td>woahdude</td>\n", | |
" <td>drunk</td>\n", | |
" <td>longboarding</td>\n", | |
" <td>LucidDreaming</td>\n", | |
" </tr>\n", | |
" </tbody>\n", | |
"</table>\n", | |
"</div>" | |
], | |
"text/plain": [ | |
" 0 1 2 \\\n", | |
"0 guns Military knives \n", | |
"1 Libertarian conspiracy MensRights \n", | |
"2 offbeat photography travel \n", | |
"3 Games starcraft Diablo \n", | |
"4 fffffffuuuuuuuuuuuu Minecraft gifs \n", | |
"5 reddit.com technology science \n", | |
"6 lgbt ladybonersgw gaybros \n", | |
"7 AskReddit funny pics \n", | |
"8 nfl soccer nba \n", | |
"9 TwoXChromosomes relationships AskWomen \n", | |
"10 programming geek linux \n", | |
"11 cars motorcycles battlestations \n", | |
"12 gonewild gentlemanboners nsfw \n", | |
"13 doctorwho thewalkingdead anime \n", | |
"14 DIY bicycling beer \n", | |
"15 cringepics cringe mildlyinteresting \n", | |
"16 Guitar listentothis WeAreTheMusicMakers \n", | |
"17 mylittlepony gamegrumps MLPLounge \n", | |
"18 bestof Christianity TrueReddit \n", | |
"19 Drugs hiphopheads woahdude \n", | |
"\n", | |
" 3 4 5 \n", | |
"0 EDC airsoft MilitaryPorn \n", | |
"1 philosophy Economics PoliticalDiscussion \n", | |
"2 space itookapicture entertainment \n", | |
"3 wow battlefield3 DotA2 \n", | |
"4 pokemon skyrim buildapc \n", | |
"5 askscience news sex \n", | |
"6 gaymers ainbow actuallesbians \n", | |
"7 WTF gaming AdviceAnimals \n", | |
"8 hockey fantasyfootball baseball \n", | |
"9 tattoos cats LadyBoners \n", | |
"10 talesfromtechsupport learnprogramming sysadmin \n", | |
"11 Autos formula1 aviation \n", | |
"12 RealGirls gonewildcurvy NSFW_GIF \n", | |
"13 magicTCG comics halo \n", | |
"14 running Parenting Homebrewing \n", | |
"15 4chan JusticePorn reactiongifs \n", | |
"16 Metal electronicmusic dubstep \n", | |
"17 homestuck furry ClopClop \n", | |
"18 OkCupid AskHistorians SubredditDrama \n", | |
"19 drunk longboarding LucidDreaming " | |
] | |
}, | |
"execution_count": 15, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"pd.DataFrame( [subreddits[clusters == i][users_per_subreddit[clusters == i].argsort()[-6:][::-1]] for i in range(n_clusters)] )" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"slideshow": { | |
"slide_type": "slide" | |
} | |
}, | |
"source": [ | |
"# Visualization in Technicolour\n", | |
"\n", | |
"* This time we'll colour-code each dot by cluster" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 16, | |
"metadata": { | |
"collapsed": false | |
}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/html": [ | |
"\n", | |
"\n", | |
" <div class=\"bk-root\">\n", | |
" <div class=\"plotdiv\" id=\"7aaf947f-bb7a-49e4-a0f5-dfe9634e1f2b\"></div>\n", | |
" </div>\n", | |
"<script type=\"text/javascript\">\n", | |
" \n", | |
" (function(global) {\n", | |
" function now() {\n", | |
" return new Date();\n", | |
" }\n", | |
" \n", | |
" var force = \"\";\n", | |
" \n", | |
" if (typeof (window._bokeh_onload_callbacks) === \"undefined\" || force !== \"\") {\n", | |
" window._bokeh_onload_callbacks = [];\n", | |
" window._bokeh_is_loading = undefined;\n", | |
" }\n", | |
" \n", | |
" \n", | |
" \n", | |
" if (typeof (window._bokeh_timeout) === \"undefined\" || force !== \"\") {\n", | |
" window._bokeh_timeout = Date.now() + 0;\n", | |
" window._bokeh_failed_load = false;\n", | |
" }\n", | |
" \n", | |
" var NB_LOAD_WARNING = {'data': {'text/html':\n", | |
" \"<div style='background-color: #fdd'>\\n\"+\n", | |
" \"<p>\\n\"+\n", | |
" \"BokehJS does not appear to have successfully loaded. If loading BokehJS from CDN, this \\n\"+\n", | |
" \"may be due to a slow or bad network connection. Possible fixes:\\n\"+\n", | |
" \"</p>\\n\"+\n", | |
" \"<ul>\\n\"+\n", | |
" \"<li>re-rerun `output_notebook()` to attempt to load from CDN again, or</li>\\n\"+\n", | |
" \"<li>use INLINE resources instead, as so:</li>\\n\"+\n", | |
" \"</ul>\\n\"+\n", | |
" \"<code>\\n\"+\n", | |
" \"from bokeh.resources import INLINE\\n\"+\n", | |
" \"output_notebook(resources=INLINE)\\n\"+\n", | |
" \"</code>\\n\"+\n", | |
" \"</div>\"}};\n", | |
" \n", | |
" function display_loaded() {\n", | |
" if (window.Bokeh !== undefined) {\n", | |
" Bokeh.$(\"#7aaf947f-bb7a-49e4-a0f5-dfe9634e1f2b\").text(\"BokehJS successfully loaded.\");\n", | |
" } else if (Date.now() < window._bokeh_timeout) {\n", | |
" setTimeout(display_loaded, 100)\n", | |
" }\n", | |
" }\n", | |
" \n", | |
" function run_callbacks() {\n", | |
" window._bokeh_onload_callbacks.forEach(function(callback) { callback() });\n", | |
" delete window._bokeh_onload_callbacks\n", | |
" console.info(\"Bokeh: all callbacks have finished\");\n", | |
" }\n", | |
" \n", | |
" function load_libs(js_urls, callback) {\n", | |
" window._bokeh_onload_callbacks.push(callback);\n", | |
" if (window._bokeh_is_loading > 0) {\n", | |
" console.log(\"Bokeh: BokehJS is being loaded, scheduling callback at\", now());\n", | |
" return null;\n", | |
" }\n", | |
" if (js_urls == null || js_urls.length === 0) {\n", | |
" run_callbacks();\n", | |
" return null;\n", | |
" }\n", | |
" console.log(\"Bokeh: BokehJS not loaded, scheduling load and callback at\", now());\n", | |
" window._bokeh_is_loading = js_urls.length;\n", | |
" for (var i = 0; i < js_urls.length; i++) {\n", | |
" var url = js_urls[i];\n", | |
" var s = document.createElement('script');\n", | |
" s.src = url;\n", | |
" s.async = false;\n", | |
" s.onreadystatechange = s.onload = function() {\n", | |
" window._bokeh_is_loading--;\n", | |
" if (window._bokeh_is_loading === 0) {\n", | |
" console.log(\"Bokeh: all BokehJS libraries loaded\");\n", | |
" run_callbacks()\n", | |
" }\n", | |
" };\n", | |
" s.onerror = function() {\n", | |
" console.warn(\"failed to load library \" + url);\n", | |
" };\n", | |
" console.log(\"Bokeh: injecting script tag for BokehJS library: \", url);\n", | |
" document.getElementsByTagName(\"head\")[0].appendChild(s);\n", | |
" }\n", | |
" };var element = document.getElementById(\"7aaf947f-bb7a-49e4-a0f5-dfe9634e1f2b\");\n", | |
" if (element == null) {\n", | |
" console.log(\"Bokeh: ERROR: autoload.js configured with elementid '7aaf947f-bb7a-49e4-a0f5-dfe9634e1f2b' but no matching script tag was found. \")\n", | |
" return false;\n", | |
" }\n", | |
" \n", | |
" var js_urls = [];\n", | |
" \n", | |
" var inline_js = [\n", | |
" function(Bokeh) {\n", | |
" Bokeh.$(function() {\n", | |
" var docs_json = {\"8a621233-17a9-4c4b-8356-d0e10afb63fb\":{\"roots\":{\"references\":[{\"attributes\":{\"fill_alpha\":{\"value\":0.1},\"fill_color\":{\"value\":\"#1f77b4\"},\"line_alpha\":{\"value\":0.1},\"line_color\":{\"value\":\"#1f77b4\"},\"radius\":{\"field\":\"radius\",\"units\":\"data\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"7257d1f5-715c-4d83-b8bc-878b939c365b\",\"type\":\"Circle\"},{\"attributes\":{\"bottom_units\":\"screen\",\"fill_alpha\":{\"value\":0.5},\"fill_color\":{\"value\":\"lightgrey\"},\"left_units\":\"screen\",\"level\":\"overlay\",\"line_alpha\":{\"value\":1.0},\"line_color\":{\"value\":\"black\"},\"line_dash\":[4,4],\"line_width\":{\"value\":2},\"plot\":null,\"render_mode\":\"css\",\"right_units\":\"screen\",\"top_units\":\"screen\"},\"id\":\"92667f0c-6793-494e-a4f5-9ae0ed88425c\",\"type\":\"BoxAnnotation\"},{\"attributes\":{\"axis_label\":\"Guns <\\u2013> Soccer (Dimension 44)\",\"formatter\":{\"id\":\"df615244-39c6-4bda-bee8-0e8a4bfe90a0\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"a5294f31-e763-4576-97d5-6fac64e5aa20\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"0ccb70df-2a88-4065-bea8-2169f3c76f1f\",\"type\":\"BasicTicker\"}},\"id\":\"edfd79c0-6f41-4fec-ae62-44425f9187f0\",\"type\":\"LinearAxis\"},{\"attributes\":{},\"id\":\"4486a2a9-8e5b-4084-973a-e991112be64c\",\"type\":\"BasicTicker\"},{\"attributes\":{\"below\":[{\"id\":\"edfd79c0-6f41-4fec-ae62-44425f9187f0\",\"type\":\"LinearAxis\"}],\"left\":[{\"id\":\"940599f1-e60f-4f89-9206-ed4d67ffadb9\",\"type\":\"LinearAxis\"}],\"min_border\":1,\"plot_height\":700,\"plot_width\":900,\"renderers\":[{\"id\":\"edfd79c0-6f41-4fec-ae62-44425f9187f0\",\"type\":\"LinearAxis\"},{\"id\":\"704cf22f-ba6b-4a17-a2bd-6604338cc88e\",\"type\":\"Grid\"},{\"id\":\"940599f1-e60f-4f89-9206-ed4d67ffadb9\",\"type\":\"LinearAxis\"},{\"id\":\"f08ef7db-967e-4a03-83ef-b231c2d30959\",\"type\":\"Grid\"},{\"id\":\"92667f0c-6793-494e-a4f5-9ae0ed88425c\",\"type\":\"BoxAnnotation\"},{\"id\":\"da7c0588-8e2e-4fb7-89cf-b208798c6990\",\"type\":\"GlyphRenderer\"}],\"title\":{\"id\":\"5a656650-2b49-48e3-8a71-d7584cc6ef58\",\"type\":\"Title\"},\"tool_events\":{\"id\":\"390aa2a1-34d4-402a-a297-7f714a94a690\",\"type\":\"ToolEvents\"},\"toolbar\":{\"id\":\"fee7afc9-93e9-4b1e-a67f-a2e354b1ea63\",\"type\":\"Toolbar\"},\"x_range\":{\"id\":\"0f2a1908-0842-4fa3-9f5e-55139d1ccf5e\",\"type\":\"DataRange1d\"},\"y_range\":{\"id\":\"e216ddcd-cc9b-4259-86a0-2131aea17cb7\",\"type\":\"DataRange1d\"}},\"id\":\"a5294f31-e763-4576-97d5-6fac64e5aa20\",\"subtype\":\"Figure\",\"type\":\"Plot\"},{\"attributes\":{\"plot\":{\"id\":\"a5294f31-e763-4576-97d5-6fac64e5aa20\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"daf3bb94-5a96-409f-9148-c5575d39a916\",\"type\":\"ResetTool\"},{\"attributes\":{\"axis_label\":\"Food <\\u2013> Programming (Dimension 51)\",\"formatter\":{\"id\":\"65437191-1cd2-4f42-8cf6-00dab35ab1e7\",\"type\":\"BasicTickFormatter\"},\"plot\":{\"id\":\"a5294f31-e763-4576-97d5-6fac64e5aa20\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"4486a2a9-8e5b-4084-973a-e991112be64c\",\"type\":\"BasicTicker\"}},\"id\":\"940599f1-e60f-4f89-9206-ed4d67ffadb9\",\"type\":\"LinearAxis\"},{\"attributes\":{\"plot\":{\"id\":\"a5294f31-e763-4576-97d5-6fac64e5aa20\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"99ec44b6-3515-4d08-9a17-dc0b7b6eba84\",\"type\":\"PanTool\"},{\"attributes\":{\"plot\":{\"id\":\"a5294f31-e763-4576-97d5-6fac64e5aa20\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"d5ed1f38-1f7c-4643-b754-9f42f6e63089\",\"type\":\"SaveTool\"},{\"attributes\":{\"overlay\":{\"id\":\"92667f0c-6793-494e-a4f5-9ae0ed88425c\",\"type\":\"BoxAnnotation\"},\"plot\":{\"id\":\"a5294f31-e763-4576-97d5-6fac64e5aa20\",\"subtype\":\"Figure\",\"type\":\"Plot\"}},\"id\":\"0f58f701-89ef-46be-8ac7-72ff30f8a732\",\"type\":\"BoxZoomTool\"},{\"attributes\":{\"callback\":null,\"plot\":{\"id\":\"a5294f31-e763-4576-97d5-6fac64e5aa20\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"tooltips\":[[\"index\",\"$index\"],[\"(x,y)\",\"($x, $y)\"],[\"Topic\",\"@subreddit\"]]},\"id\":\"8ed48142-73f8-4ff6-b449-e5ee48e7267a\",\"type\":\"HoverTool\"},{\"attributes\":{\"fill_color\":{\"field\":\"fill_color\"},\"line_color\":{\"field\":\"line_color\"},\"radius\":{\"field\":\"radius\",\"units\":\"data\"},\"x\":{\"field\":\"x\"},\"y\":{\"field\":\"y\"}},\"id\":\"e7fb33c5-fcb4-40a1-a4cb-330011ded33d\",\"type\":\"Circle\"},{\"attributes\":{\"data_source\":{\"id\":\"f85b0842-c573-4fa2-b812-44e8fa0cb232\",\"type\":\"ColumnDataSource\"},\"glyph\":{\"id\":\"e7fb33c5-fcb4-40a1-a4cb-330011ded33d\",\"type\":\"Circle\"},\"hover_glyph\":null,\"nonselection_glyph\":{\"id\":\"7257d1f5-715c-4d83-b8bc-878b939c365b\",\"type\":\"Circle\"},\"selection_glyph\":null},\"id\":\"da7c0588-8e2e-4fb7-89cf-b208798c6990\",\"type\":\"GlyphRenderer\"},{\"attributes\":{\"plot\":null,\"text\":\"Subreddit Map by Interesting Dimensions\"},\"id\":\"5a656650-2b49-48e3-8a71-d7584cc6ef58\",\"type\":\"Title\"},{\"attributes\":{},\"id\":\"df615244-39c6-4bda-bee8-0e8a4bfe90a0\",\"type\":\"BasicTickFormatter\"},{\"attributes\":{\"plot\":{\"id\":\"a5294f31-e763-4576-97d5-6fac64e5aa20\",\"subtype\":\"Figure\",\"type\":\"Plot\"},\"ticker\":{\"id\":\"0ccb70df-2a88-4065-bea8-2169f3c76f1f\",\"type\":\"BasicTicker\"}},\"id\":\"704cf22f-ba6b-4a17-a2bd-6604338cc88e\",\"type\":\"Grid\"},{\"attributes\":{},\"id\":\"0ccb70df-2a88-4065-bea8-2169f3c76f1f\",\"type\":\"BasicTicker\"},{\"attributes\":{\"callback\":null,\"column_names\":[\"subreddit\",\"y\",\"x\",\"radius\",\"line_color\",\"fill_color\"],\"data\":{\"fill_color\":[\"#ff9896\",\"#ff9896\",\"#ff9896\",\"#bcbd22\",\"#ff9896\",\"#c5b0d5\",\"#ffbb78\",\"#ff9896\",\"#7f7f7f\",\"#ff9896\",\"#ff9896\",\"#98df8a\",\"#2ca02c\",\"#ffbb78\",\"#98df8a\",\"#ff7f0e\",\"#98df8a\",\"#98df8a\",\"#2ca02c\",\"#98df8a\",\"#ff9896\",\"#ff9896\",\"#ff9896\",\"#7f7f7f\",\"#aec7e8\",\"#ff9896\",\"#98df8a\",\"#7f7f7f\",\"#98df8a\",\"#c5b0d5\",\"#ff9896\",\"#c49c94\",\"#ff9896\",\"#7f7f7f\",\"#98df8a\",\"#ff9896\",\"#c5b0d5\",\"#17becf\",\"#17becf\",\"#2ca02c\",\"#98df8a\",\"#ff9896\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#c49c94\",\"#c49c94\",\"#1f77b4\",\"#c5b0d5\",\"#c49c94\",\"#ff7f0e\",\"#c49c94\",\"#aec7e8\",\"#aec7e8\",\"#c49c94\",\"#c49c94\",\"#c49c94\",\"#c49c94\",\"#98df8a\",\"#c49c94\",\"#c49c94\",\"#ff7f0e\",\"#aec7e8\",\"#ffbb78\",\"#ff9896\",\"#c49c94\",\"#c49c94\",\"#c49c94\",\"#f7b6d2\",\"#7f7f7f\",\"#c7c7c7\",\"#2ca02c\",\"#ffbb78\",\"#c7c7c7\",\"#ffbb78\",\"#ffbb78\",\"#e377c2\",\"#ffbb78\",\"#ffbb78\",\"#bcbd22\",\"#2ca02c\",\"#98df8a\",\"#ffbb78\",\"#ffbb78\",\"#c7c7c7\",\"#ffbb78\",\"#98df8a\",\"#9467bd\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#ffbb78\",\"#8c564b\",\"#f7b6d2\",\"#8c564b\",\"#c7c7c7\",\"#ffbb78\",\"#ff7f0e\",\"#98df8a\",\"#ffbb78\",\"#ffbb78\",\"#2ca02c\",\"#bcbd22\",\"#9edae5\",\"#17becf\",\"#c7c7c7\",\"#9edae5\",\"#c7c7c7\",\"#ff9896\",\"#9edae5\",\"#c7c7c7\",\"#bcbd22\",\"#c7c7c7\",\"#17becf\",\"#ff9896\",\"#98df8a\",\"#9467bd\",\"#ff7f0e\",\"#98df8a\",\"#17becf\",\"#f7b6d2\",\"#c7c7c7\",\"#2ca02c\",\"#98df8a\",\"#c5b0d5\",\"#98df8a\",\"#98df8a\",\"#bcbd22\",\"#7f7f7f\",\"#7f7f7f\",\"#f7b6d2\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#aec7e8\",\"#7f7f7f\",\"#7f7f7f\",\"#c5b0d5\",\"#98df8a\",\"#c5b0d5\",\"#c5b0d5\",\"#9467bd\",\"#98df8a\",\"#c5b0d5\",\"#c5b0d5\",\"#98df8a\",\"#9467bd\",\"#aec7e8\",\"#c7c7c7\",\"#f7b6d2\",\"#9467bd\",\"#c7c7c7\",\"#17becf\",\"#f7b6d2\",\"#9467bd\",\"#f7b6d2\",\"#aec7e8\",\"#ff9896\",\"#98df8a\",\"#1f77b4\",\"#f7b6d2\",\"#c5b0d5\",\"#17becf\",\"#aec7e8\",\"#f7b6d2\",\"#98df8a\",\"#98df8a\",\"#7f7f7f\",\"#98df8a\",\"#c7c7c7\",\"#98df8a\",\"#c5b0d5\",\"#f7b6d2\",\"#17becf\",\"#8c564b\",\"#7f7f7f\",\"#f7b6d2\",\"#f7b6d2\",\"#98df8a\",\"#f7b6d2\",\"#d62728\",\"#ff9896\",\"#dbdb8d\",\"#f7b6d2\",\"#17becf\",\"#98df8a\",\"#f7b6d2\",\"#2ca02c\",\"#17becf\",\"#17becf\",\"#c7c7c7\",\"#2ca02c\",\"#98df8a\",\"#ffbb78\",\"#f7b6d2\",\"#ffbb78\",\"#98df8a\",\"#f7b6d2\",\"#98df8a\",\"#c5b0d5\",\"#c5b0d5\",\"#f7b6d2\",\"#f7b6d2\",\"#1f77b4\",\"#1f77b4\",\"#1f77b4\",\"#e377c2\",\"#e377c2\",\"#17becf\",\"#17becf\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#17becf\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#c5b0d5\",\"#f7b6d2\",\"#c5b0d5\",\"#ff9896\",\"#c5b0d5\",\"#c5b0d5\",\"#aec7e8\",\"#ff7f0e\",\"#98df8a\",\"#98df8a\",\"#bcbd22\",\"#7f7f7f\",\"#ff7f0e\",\"#ff7f0e\",\"#98df8a\",\"#ff7f0e\",\"#7f7f7f\",\"#bcbd22\",\"#ff7f0e\",\"#ff7f0e\",\"#17becf\",\"#9467bd\",\"#9467bd\",\"#ff7f0e\",\"#98df8a\",\"#9467bd\",\"#7f7f7f\",\"#9467bd\",\"#9467bd\",\"#9467bd\",\"#9467bd\",\"#ff7f0e\",\"#9467bd\",\"#c49c94\",\"#98df8a\",\"#98df8a\",\"#98df8a\",\"#7f7f7f\",\"#c7c7c7\",\"#bcbd22\",\"#c7c7c7\",\"#7f7f7f\",\"#17becf\",\"#7f7f7f\",\"#98df8a\",\"#c7c7c7\",\"#ff9896\",\"#f7b6d2\",\"#98df8a\",\"#8c564b\",\"#f7b6d2\",\"#8c564b\",\"#c5b0d5\",\"#ffbb78\",\"#f7b6d2\",\"#ffbb78\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#ffbb78\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#7f7f7f\",\"#f7b6d2\",\"#9467bd\",\"#9467bd\",\"#98df8a\",\"#98df8a\",\"#ffbb78\",\"#2ca02c\",\"#98df8a\",\"#c5b0d5\",\"#9467bd\",\"#bcbd22\",\"#17becf\",\"#98df8a\",\"#ff9896\",\"#9467bd\",\"#c7c7c7\",\"#7f7f7f\",\"#9467bd\",\"#c7c7c7\",\"#17becf\",\"#9467bd\",\"#9467bd\",\"#2ca02c\",\"#c7c7c7\",\"#17becf\",\"#ff9896\",\"#c5b0d5\",\"#9edae5\",\"#98df8a\",\"#7f7f7f\",\"#17becf\",\"#98df8a\",\"#7f7f7f\",\"#17becf\",\"#9edae5\",\"#ff7f0e\",\"#aec7e8\",\"#98df8a\",\"#17becf\",\"#98df8a\",\"#9467bd\",\"#c5b0d5\",\"#98df8a\",\"#c49c94\",\"#7f7f7f\",\"#8c564b\",\"#c7c7c7\",\"#dbdb8d\",\"#dbdb8d\",\"#dbdb8d\",\"#dbdb8d\",\"#dbdb8d\",\"#dbdb8d\",\"#ff9896\",\"#dbdb8d\",\"#17becf\",\"#d62728\",\"#c5b0d5\",\"#9edae5\",\"#aec7e8\",\"#d62728\",\"#7f7f7f\",\"#17becf\",\"#7f7f7f\",\"#ff7f0e\",\"#7f7f7f\",\"#c5b0d5\",\"#7f7f7f\",\"#17becf\",\"#ff7f0e\",\"#98df8a\",\"#17becf\",\"#e377c2\",\"#17becf\",\"#f7b6d2\",\"#98df8a\",\"#ffbb78\",\"#c7c7c7\",\"#17becf\",\"#17becf\",\"#ff7f0e\",\"#17becf\",\"#c7c7c7\",\"#98df8a\",\"#98df8a\",\"#17becf\",\"#bcbd22\",\"#f7b6d2\",\"#aec7e8\",\"#7f7f7f\",\"#aec7e8\",\"#bcbd22\",\"#8c564b\",\"#8c564b\",\"#8c564b\",\"#8c564b\",\"#9edae5\",\"#8c564b\",\"#f7b6d2\",\"#8c564b\",\"#ff7f0e\",\"#9467bd\",\"#aec7e8\",\"#9467bd\",\"#ff7f0e\",\"#c7c7c7\",\"#9467bd\",\"#d62728\",\"#c7c7c7\",\"#c7c7c7\",\"#c7c7c7\",\"#ffbb78\",\"#c7c7c7\",\"#c7c7c7\",\"#7f7f7f\",\"#c7c7c7\",\"#8c564b\",\"#2ca02c\",\"#dbdb8d\",\"#17becf\",\"#2ca02c\",\"#d62728\",\"#17becf\",\"#9edae5\",\"#98df8a\",\"#d62728\",\"#c7c7c7\",\"#c7c7c7\",\"#d62728\",\"#f7b6d2\",\"#c5b0d5\",\"#c7c7c7\",\"#d62728\",\"#9467bd\",\"#98df8a\",\"#17becf\",\"#f7b6d2\",\"#f7b6d2\",\"#7f7f7f\",\"#9467bd\",\"#e377c2\",\"#c7c7c7\",\"#9edae5\",\"#9edae5\",\"#9edae5\",\"#f7b6d2\",\"#c7c7c7\",\"#9467bd\",\"#ff7f0e\",\"#7f7f7f\",\"#7f7f7f\",\"#bcbd22\",\"#aec7e8\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#ffbb78\",\"#9467bd\",\"#ff7f0e\",\"#bcbd22\",\"#9467bd\",\"#c7c7c7\",\"#9467bd\",\"#8c564b\",\"#7f7f7f\",\"#ff7f0e\",\"#98df8a\",\"#98df8a\",\"#9edae5\",\"#ffbb78\",\"#7f7f7f\",\"#9467bd\",\"#f7b6d2\",\"#2ca02c\",\"#2ca02c\",\"#d62728\",\"#ff7f0e\",\"#98df8a\",\"#d62728\",\"#d62728\",\"#98df8a\",\"#98df8a\",\"#c5b0d5\",\"#98df8a\",\"#7f7f7f\",\"#98df8a\",\"#c5b0d5\",\"#f7b6d2\",\"#ffbb78\",\"#9467bd\",\"#c7c7c7\",\"#ffbb78\",\"#17becf\",\"#17becf\",\"#17becf\",\"#17becf\",\"#aec7e8\",\"#8c564b\",\"#17becf\",\"#17becf\",\"#9edae5\",\"#c7c7c7\",\"#9467bd\",\"#1f77b4\",\"#c7c7c7\",\"#c7c7c7\",\"#f7b6d2\",\"#f7b6d2\",\"#ffbb78\",\"#ffbb78\",\"#aec7e8\",\"#f7b6d2\",\"#f7b6d2\",\"#2ca02c\",\"#7f7f7f\",\"#c5b0d5\",\"#9467bd\",\"#ffbb78\",\"#9467bd\",\"#c7c7c7\",\"#f7b6d2\",\"#ffbb78\",\"#c5b0d5\",\"#7f7f7f\",\"#9edae5\",\"#f7b6d2\",\"#7f7f7f\",\"#98df8a\",\"#9467bd\",\"#ff7f0e\",\"#ffbb78\",\"#bcbd22\",\"#7f7f7f\",\"#bcbd22\",\"#ff7f0e\",\"#98df8a\",\"#f7b6d2\",\"#c7c7c7\",\"#c5b0d5\",\"#f7b6d2\",\"#98df8a\",\"#ffbb78\",\"#7f7f7f\",\"#f7b6d2\",\"#c7c7c7\",\"#f7b6d2\",\"#98df8a\",\"#bcbd22\",\"#8c564b\",\"#17becf\",\"#ff9896\",\"#c7c7c7\",\"#ff9896\",\"#ff9896\",\"#c7c7c7\",\"#c5b0d5\",\"#c49c94\",\"#9467bd\",\"#c7c7c7\",\"#7f7f7f\",\"#17becf\",\"#c7c7c7\",\"#aec7e8\",\"#c5b0d5\",\"#ff7f0e\",\"#aec7e8\",\"#ff9896\",\"#c7c7c7\",\"#7f7f7f\",\"#c49c94\",\"#7f7f7f\",\"#f7b6d2\",\"#98df8a\",\"#9467bd\",\"#9467bd\",\"#98df8a\",\"#c7c7c7\",\"#c7c7c7\",\"#9edae5\",\"#7f7f7f\",\"#17becf\",\"#7f7f7f\",\"#c5b0d5\",\"#7f7f7f\",\"#ff7f0e\",\"#ff7f0e\",\"#c5b0d5\",\"#ff7f0e\",\"#c5b0d5\",\"#8c564b\",\"#c49c94\",\"#8c564b\",\"#7f7f7f\",\"#aec7e8\",\"#7f7f7f\",\"#7f7f7f\",\"#9467bd\",\"#bcbd22\",\"#aec7e8\",\"#7f7f7f\",\"#aec7e8\",\"#c5b0d5\",\"#d62728\",\"#e377c2\",\"#c7c7c7\",\"#d62728\",\"#9467bd\",\"#ffbb78\",\"#ffbb78\",\"#8c564b\",\"#17becf\",\"#c7c7c7\",\"#17becf\",\"#c7c7c7\",\"#17becf\",\"#c7c7c7\",\"#7f7f7f\",\"#ff7f0e\",\"#98df8a\",\"#f7b6d2\",\"#7f7f7f\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#e377c2\",\"#e377c2\",\"#98df8a\",\"#c7c7c7\",\"#e377c2\",\"#c7c7c7\",\"#e377c2\",\"#c7c7c7\",\"#e377c2\",\"#c7c7c7\",\"#e377c2\",\"#e377c2\",\"#c7c7c7\",\"#e377c2\",\"#e377c2\",\"#9edae5\",\"#9edae5\",\"#bcbd22\",\"#bcbd22\",\"#f7b6d2\",\"#ffbb78\",\"#ffbb78\",\"#f7b6d2\",\"#9edae5\",\"#17becf\",\"#aec7e8\",\"#17becf\",\"#17becf\",\"#aec7e8\",\"#17becf\",\"#17becf\",\"#bcbd22\",\"#7f7f7f\",\"#17becf\",\"#ffbb78\",\"#aec7e8\",\"#7f7f7f\",\"#aec7e8\",\"#c7c7c7\",\"#17becf\",\"#1f77b4\",\"#1f77b4\",\"#1f77b4\",\"#bcbd22\",\"#17becf\",\"#c7c7c7\",\"#17becf\",\"#7f7f7f\",\"#c5b0d5\",\"#17becf\",\"#7f7f7f\",\"#98df8a\",\"#2ca02c\",\"#aec7e8\",\"#ffbb78\",\"#7f7f7f\",\"#17becf\",\"#7f7f7f\",\"#98df8a\",\"#c7c7c7\",\"#ffbb78\",\"#7f7f7f\",\"#c7c7c7\",\"#17becf\",\"#17becf\",\"#ff7f0e\",\"#98df8a\",\"#17becf\",\"#ffbb78\",\"#c5b0d5\",\"#ffbb78\",\"#bcbd22\",\"#bcbd22\",\"#1f77b4\",\"#c5b0d5\",\"#9467bd\",\"#9467bd\",\"#7f7f7f\",\"#9edae5\",\"#9edae5\",\"#f7b6d2\",\"#17becf\",\"#17becf\",\"#98df8a\",\"#98df8a\",\"#7f7f7f\",\"#98df8a\",\"#f7b6d2\",\"#dbdb8d\",\"#2ca02c\",\"#dbdb8d\",\"#dbdb8d\",\"#f7b6d2\",\"#dbdb8d\",\"#f7b6d2\",\"#f7b6d2\",\"#ffbb78\",\"#98df8a\",\"#8c564b\",\"#c5b0d5\",\"#ffbb78\",\"#ff7f0e\",\"#f7b6d2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#1f77b4\",\"#c7c7c7\",\"#e377c2\",\"#ff7f0e\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#c49c94\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#8c564b\",\"#c5b0d5\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#c5b0d5\",\"#c7c7c7\",\"#e377c2\",\"#ff7f0e\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#7f7f7f\",\"#c7c7c7\",\"#c7c7c7\",\"#bcbd22\",\"#f7b6d2\",\"#aec7e8\",\"#aec7e8\",\"#aec7e8\",\"#17becf\",\"#aec7e8\",\"#aec7e8\",\"#f7b6d2\",\"#bcbd22\",\"#17becf\",\"#17becf\",\"#17becf\",\"#c7c7c7\",\"#ff7f0e\",\"#ff7f0e\",\"#bcbd22\",\"#c5b0d5\",\"#c7c7c7\",\"#c7c7c7\",\"#c7c7c7\",\"#c7c7c7\",\"#c7c7c7\",\"#bcbd22\",\"#7f7f7f\",\"#c7c7c7\",\"#c7c7c7\",\"#17becf\",\"#9edae5\",\"#9edae5\",\"#c5b0d5\",\"#c5b0d5\",\"#9edae5\",\"#c5b0d5\",\"#7f7f7f\",\"#7f7f7f\",\"#ff7f0e\",\"#9467bd\",\"#98df8a\",\"#2ca02c\",\"#ffbb78\",\"#2ca02c\",\"#ffbb78\",\"#98df8a\",\"#8c564b\",\"#c7c7c7\",\"#c5b0d5\",\"#c5b0d5\",\"#f7b6d2\",\"#ff7f0e\",\"#bcbd22\",\"#98df8a\",\"#17becf\",\"#17becf\",\"#17becf\",\"#c49c94\",\"#7f7f7f\",\"#9467bd\",\"#ffbb78\",\"#ffbb78\",\"#ffbb78\",\"#7f7f7f\",\"#7f7f7f\",\"#9467bd\",\"#2ca02c\",\"#2ca02c\",\"#2ca02c\",\"#2ca02c\",\"#2ca02c\",\"#9edae5\",\"#9edae5\",\"#9edae5\",\"#9edae5\",\"#17becf\",\"#d62728\",\"#7f7f7f\",\"#d62728\",\"#98df8a\",\"#d62728\",\"#d62728\",\"#c7c7c7\",\"#c7c7c7\",\"#f7b6d2\",\"#98df8a\",\"#8c564b\",\"#1f77b4\",\"#8c564b\",\"#8c564b\",\"#c5b0d5\",\"#ffbb78\",\"#7f7f7f\",\"#ffbb78\",\"#ffbb78\",\"#2ca02c\",\"#98df8a\",\"#ffbb78\",\"#c5b0d5\",\"#c5b0d5\",\"#c7c7c7\",\"#c7c7c7\",\"#c7c7c7\",\"#c5b0d5\",\"#f7b6d2\",\"#f7b6d2\",\"#ffbb78\",\"#aec7e8\",\"#8c564b\",\"#2ca02c\",\"#ff7f0e\",\"#8c564b\",\"#7f7f7f\",\"#ffbb78\",\"#f7b6d2\",\"#8c564b\",\"#98df8a\",\"#c7c7c7\",\"#ffbb78\",\"#c5b0d5\",\"#c5b0d5\",\"#2ca02c\",\"#2ca02c\",\"#aec7e8\",\"#c5b0d5\",\"#aec7e8\",\"#aec7e8\",\"#8c564b\",\"#17becf\",\"#8c564b\",\"#aec7e8\",\"#7f7f7f\",\"#c49c94\",\"#1f77b4\",\"#ffbb78\",\"#f7b6d2\",\"#f7b6d2\",\"#aec7e8\",\"#aec7e8\",\"#c5b0d5\",\"#17becf\",\"#c7c7c7\",\"#1f77b4\",\"#f7b6d2\",\"#c7c7c7\",\"#8c564b\",\"#bcbd22\",\"#ff7f0e\",\"#f7b6d2\",\"#98df8a\",\"#ffbb78\",\"#f7b6d2\",\"#1f77b4\",\"#c7c7c7\",\"#8c564b\",\"#f7b6d2\",\"#8c564b\",\"#ffbb78\",\"#ffbb78\",\"#98df8a\",\"#17becf\",\"#17becf\",\"#ff7f0e\",\"#17becf\",\"#bcbd22\",\"#bcbd22\",\"#7f7f7f\",\"#2ca02c\",\"#17becf\",\"#9467bd\",\"#9467bd\",\"#7f7f7f\",\"#7f7f7f\",\"#1f77b4\",\"#9467bd\",\"#c49c94\",\"#7f7f7f\",\"#c49c94\",\"#c49c94\",\"#98df8a\",\"#9467bd\",\"#c49c94\",\"#9467bd\",\"#7f7f7f\",\"#c5b0d5\",\"#ffbb78\",\"#2ca02c\",\"#ffbb78\",\"#dbdb8d\",\"#2ca02c\",\"#2ca02c\",\"#17becf\",\"#98df8a\",\"#17becf\",\"#ffbb78\",\"#c5b0d5\",\"#c5b0d5\",\"#9edae5\",\"#2ca02c\",\"#2ca02c\",\"#ffbb78\",\"#c7c7c7\",\"#2ca02c\",\"#9edae5\",\"#9edae5\",\"#7f7f7f\",\"#9edae5\",\"#aec7e8\",\"#9edae5\",\"#aec7e8\",\"#aec7e8\",\"#aec7e8\",\"#aec7e8\",\"#aec7e8\",\"#98df8a\",\"#aec7e8\",\"#c5b0d5\",\"#d62728\",\"#9467bd\",\"#bcbd22\",\"#c7c7c7\",\"#7f7f7f\",\"#c7c7c7\",\"#9edae5\",\"#c7c7c7\",\"#9467bd\",\"#f7b6d2\",\"#9467bd\",\"#7f7f7f\",\"#c49c94\",\"#ff7f0e\",\"#c7c7c7\",\"#c7c7c7\",\"#c7c7c7\",\"#8c564b\",\"#ff7f0e\",\"#7f7f7f\",\"#ff7f0e\",\"#7f7f7f\",\"#7f7f7f\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#c5b0d5\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#c5b0d5\",\"#7f7f7f\",\"#c5b0d5\",\"#c5b0d5\",\"#17becf\",\"#ff7f0e\",\"#ff7f0e\",\"#bcbd22\",\"#c5b0d5\",\"#c5b0d5\",\"#bcbd22\",\"#7f7f7f\",\"#aec7e8\",\"#c7c7c7\",\"#d62728\",\"#17becf\",\"#c5b0d5\",\"#9467bd\",\"#98df8a\",\"#98df8a\",\"#dbdb8d\",\"#98df8a\",\"#98df8a\",\"#9467bd\",\"#ffbb78\",\"#ffbb78\",\"#9edae5\",\"#2ca02c\",\"#bcbd22\",\"#c7c7c7\",\"#9467bd\",\"#c7c7c7\",\"#17becf\",\"#17becf\",\"#7f7f7f\",\"#bcbd22\",\"#9467bd\",\"#9467bd\",\"#f7b6d2\",\"#f7b6d2\",\"#c7c7c7\",\"#e377c2\",\"#c7c7c7\",\"#ffbb78\",\"#98df8a\",\"#f7b6d2\",\"#c7c7c7\",\"#ff7f0e\",\"#9edae5\",\"#9edae5\",\"#c5b0d5\",\"#bcbd22\",\"#c7c7c7\",\"#c49c94\",\"#8c564b\",\"#ffbb78\",\"#c7c7c7\",\"#c5b0d5\",\"#98df8a\",\"#2ca02c\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#c7c7c7\",\"#2ca02c\",\"#bcbd22\",\"#c7c7c7\",\"#7f7f7f\",\"#dbdb8d\",\"#f7b6d2\",\"#ff7f0e\",\"#c5b0d5\",\"#c5b0d5\",\"#c7c7c7\",\"#8c564b\",\"#c7c7c7\",\"#98df8a\",\"#9edae5\",\"#9edae5\",\"#ff7f0e\",\"#f7b6d2\",\"#f7b6d2\",\"#17becf\",\"#ff7f0e\",\"#9467bd\",\"#8c564b\",\"#c5b0d5\",\"#aec7e8\",\"#bcbd22\",\"#ff7f0e\",\"#c7c7c7\",\"#17becf\",\"#ff7f0e\",\"#c7c7c7\",\"#ff7f0e\",\"#ffbb78\",\"#f7b6d2\",\"#c7c7c7\",\"#e377c2\",\"#c7c7c7\",\"#e377c2\",\"#e377c2\",\"#c7c7c7\",\"#c7c7c7\",\"#dbdb8d\",\"#c7c7c7\",\"#c7c7c7\",\"#c7c7c7\",\"#7f7f7f\",\"#bcbd22\",\"#9467bd\",\"#9467bd\",\"#f7b6d2\",\"#f7b6d2\",\"#c49c94\",\"#c49c94\",\"#c49c94\",\"#c49c94\",\"#9467bd\",\"#e377c2\",\"#9467bd\",\"#7f7f7f\",\"#98df8a\",\"#9467bd\",\"#ffbb78\",\"#f7b6d2\",\"#c7c7c7\",\"#17becf\",\"#17becf\",\"#98df8a\",\"#17becf\",\"#98df8a\",\"#2ca02c\",\"#aec7e8\",\"#aec7e8\",\"#17becf\",\"#f7b6d2\",\"#98df8a\",\"#bcbd22\",\"#98df8a\",\"#9467bd\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#98df8a\",\"#c5b0d5\",\"#7f7f7f\",\"#98df8a\",\"#ff7f0e\",\"#c49c94\",\"#9467bd\",\"#7f7f7f\",\"#7f7f7f\",\"#98df8a\",\"#c5b0d5\",\"#9467bd\",\"#98df8a\",\"#1f77b4\",\"#1f77b4\",\"#c7c7c7\",\"#8c564b\",\"#f7b6d2\",\"#98df8a\",\"#f7b6d2\",\"#bcbd22\",\"#8c564b\",\"#f7b6d2\",\"#ffbb78\",\"#ffbb78\",\"#c5b0d5\",\"#bcbd22\",\"#ff7f0e\",\"#bcbd22\",\"#7f7f7f\",\"#17becf\",\"#7f7f7f\",\"#17becf\",\"#c5b0d5\",\"#7f7f7f\",\"#c7c7c7\",\"#7f7f7f\",\"#9edae5\",\"#98df8a\",\"#c5b0d5\",\"#9467bd\",\"#9467bd\",\"#98df8a\",\"#e377c2\",\"#8c564b\",\"#9edae5\",\"#f7b6d2\",\"#9467bd\",\"#f7b6d2\",\"#98df8a\",\"#aec7e8\",\"#f7b6d2\",\"#c7c7c7\",\"#9edae5\",\"#ff7f0e\",\"#9edae5\",\"#9467bd\",\"#bcbd22\",\"#98df8a\",\"#f7b6d2\",\"#17becf\",\"#7f7f7f\",\"#17becf\",\"#ff7f0e\",\"#7f7f7f\",\"#17becf\",\"#aec7e8\",\"#c7c7c7\",\"#ff7f0e\",\"#aec7e8\",\"#ff7f0e\",\"#f7b6d2\",\"#aec7e8\",\"#f7b6d2\",\"#ff7f0e\",\"#f7b6d2\",\"#7f7f7f\",\"#f7b6d2\",\"#7f7f7f\",\"#ff7f0e\",\"#ffbb78\",\"#ffbb78\",\"#f7b6d2\",\"#7f7f7f\",\"#ffbb78\",\"#c7c7c7\",\"#c49c94\",\"#7f7f7f\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#7f7f7f\",\"#1f77b4\",\"#f7b6d2\",\"#17becf\",\"#f7b6d2\",\"#8c564b\",\"#9467bd\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#9467bd\",\"#9467bd\",\"#9467bd\",\"#aec7e8\",\"#9467bd\",\"#aec7e8\",\"#9467bd\",\"#c5b0d5\",\"#9467bd\",\"#aec7e8\",\"#ff7f0e\",\"#aec7e8\",\"#c5b0d5\",\"#bcbd22\",\"#c7c7c7\",\"#c7c7c7\",\"#f7b6d2\",\"#ff7f0e\",\"#8c564b\",\"#7f7f7f\",\"#ffbb78\",\"#8c564b\",\"#d62728\",\"#9467bd\",\"#ffbb78\",\"#ff7f0e\",\"#7f7f7f\",\"#9467bd\",\"#c5b0d5\",\"#c5b0d5\",\"#7f7f7f\",\"#c5b0d5\",\"#8c564b\",\"#8c564b\",\"#17becf\",\"#f7b6d2\",\"#7f7f7f\",\"#98df8a\",\"#f7b6d2\",\"#f7b6d2\",\"#2ca02c\",\"#ffbb78\",\"#7f7f7f\",\"#7f7f7f\",\"#c7c7c7\",\"#ff7f0e\",\"#7f7f7f\",\"#c5b0d5\",\"#aec7e8\",\"#c5b0d5\",\"#1f77b4\",\"#7f7f7f\",\"#bcbd22\",\"#7f7f7f\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#aec7e8\",\"#17becf\",\"#17becf\",\"#17becf\",\"#98df8a\",\"#f7b6d2\",\"#f7b6d2\",\"#8c564b\",\"#8c564b\",\"#c7c7c7\",\"#98df8a\",\"#c7c7c7\",\"#ffbb78\",\"#ff7f0e\",\"#7f7f7f\",\"#98df8a\",\"#f7b6d2\",\"#ffbb78\",\"#9467bd\",\"#9edae5\",\"#9467bd\",\"#f7b6d2\",\"#7f7f7f\",\"#98df8a\",\"#ff7f0e\",\"#98df8a\",\"#8c564b\",\"#9467bd\",\"#e377c2\",\"#7f7f7f\",\"#bcbd22\",\"#ff7f0e\",\"#aec7e8\",\"#7f7f7f\",\"#7f7f7f\",\"#1f77b4\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#1f77b4\",\"#17becf\",\"#7f7f7f\",\"#7f7f7f\",\"#bcbd22\",\"#bcbd22\",\"#bcbd22\",\"#2ca02c\",\"#8c564b\",\"#bcbd22\",\"#bcbd22\",\"#c5b0d5\",\"#c7c7c7\",\"#bcbd22\",\"#c5b0d5\",\"#c5b0d5\",\"#bcbd22\",\"#7f7f7f\",\"#f7b6d2\",\"#f7b6d2\",\"#98df8a\",\"#f7b6d2\",\"#98df8a\",\"#8c564b\",\"#c5b0d5\",\"#c7c7c7\",\"#98df8a\",\"#98df8a\",\"#bcbd22\",\"#9467bd\",\"#c7c7c7\",\"#c5b0d5\",\"#c49c94\",\"#c49c94\",\"#f7b6d2\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#c7c7c7\",\"#e377c2\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#e377c2\",\"#ff9896\",\"#2ca02c\",\"#c5b0d5\",\"#e377c2\",\"#c7c7c7\",\"#ff7f0e\",\"#c7c7c7\",\"#98df8a\",\"#7f7f7f\",\"#9467bd\",\"#ff7f0e\",\"#c7c7c7\",\"#ff7f0e\",\"#f7b6d2\",\"#bcbd22\",\"#98df8a\",\"#7f7f7f\",\"#9467bd\",\"#ffbb78\",\"#8c564b\",\"#8c564b\",\"#98df8a\",\"#7f7f7f\",\"#ff7f0e\",\"#aec7e8\",\"#bcbd22\",\"#bcbd22\",\"#bcbd22\",\"#bcbd22\",\"#bcbd22\",\"#17becf\",\"#c5b0d5\",\"#f7b6d2\",\"#c5b0d5\",\"#9467bd\",\"#f7b6d2\",\"#9467bd\",\"#9467bd\",\"#ff7f0e\",\"#7f7f7f\",\"#c7c7c7\",\"#7f7f7f\",\"#c7c7c7\",\"#17becf\",\"#8c564b\",\"#ff7f0e\",\"#9467bd\",\"#9467bd\",\"#9467bd\",\"#9467bd\",\"#9467bd\",\"#ffbb78\",\"#2ca02c\",\"#bcbd22\",\"#9edae5\",\"#c7c7c7\",\"#17becf\",\"#9edae5\",\"#98df8a\",\"#c7c7c7\",\"#1f77b4\",\"#ff7f0e\",\"#8c564b\",\"#f7b6d2\",\"#98df8a\",\"#f7b6d2\",\"#7f7f7f\",\"#98df8a\",\"#9467bd\",\"#bcbd22\",\"#bcbd22\",\"#7f7f7f\",\"#7f7f7f\",\"#9467bd\",\"#9467bd\",\"#ff7f0e\",\"#17becf\",\"#9467bd\",\"#98df8a\",\"#98df8a\",\"#98df8a\",\"#98df8a\",\"#7f7f7f\",\"#98df8a\",\"#2ca02c\",\"#c7c7c7\",\"#7f7f7f\",\"#7f7f7f\",\"#8c564b\",\"#8c564b\",\"#8c564b\",\"#8c564b\",\"#98df8a\",\"#7f7f7f\",\"#98df8a\",\"#98df8a\",\"#c7c7c7\",\"#9467bd\",\"#17becf\",\"#8c564b\",\"#bcbd22\",\"#1f77b4\",\"#7f7f7f\",\"#98df8a\",\"#c5b0d5\",\"#bcbd22\",\"#98df8a\",\"#ff7f0e\",\"#c5b0d5\",\"#ffbb78\",\"#c7c7c7\",\"#bcbd22\",\"#c5b0d5\",\"#c5b0d5\",\"#9edae5\",\"#9edae5\",\"#9467bd\",\"#7f7f7f\",\"#ffbb78\",\"#dbdb8d\",\"#98df8a\",\"#c7c7c7\",\"#9edae5\",\"#17becf\",\"#17becf\",\"#c5b0d5\",\"#8c564b\",\"#7f7f7f\",\"#aec7e8\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#8c564b\",\"#7f7f7f\",\"#98df8a\",\"#bcbd22\",\"#9edae5\",\"#c5b0d5\",\"#ff9896\",\"#98df8a\",\"#bcbd22\",\"#c5b0d5\",\"#17becf\",\"#9467bd\",\"#aec7e8\",\"#9467bd\",\"#f7b6d2\",\"#c5b0d5\",\"#c7c7c7\",\"#c7c7c7\",\"#9467bd\",\"#7f7f7f\",\"#f7b6d2\",\"#7f7f7f\",\"#bcbd22\",\"#7f7f7f\",\"#f7b6d2\",\"#c5b0d5\",\"#98df8a\",\"#f7b6d2\",\"#7f7f7f\",\"#17becf\",\"#1f77b4\",\"#98df8a\",\"#c5b0d5\",\"#7f7f7f\",\"#bcbd22\",\"#c5b0d5\",\"#7f7f7f\",\"#17becf\",\"#98df8a\",\"#c7c7c7\",\"#8c564b\",\"#7f7f7f\",\"#aec7e8\",\"#c5b0d5\",\"#aec7e8\",\"#bcbd22\",\"#aec7e8\",\"#ff7f0e\",\"#9edae5\",\"#8c564b\",\"#bcbd22\",\"#f7b6d2\",\"#aec7e8\",\"#17becf\",\"#aec7e8\",\"#ff7f0e\",\"#8c564b\",\"#17becf\",\"#1f77b4\",\"#7f7f7f\",\"#c5b0d5\",\"#9edae5\",\"#bcbd22\",\"#bcbd22\",\"#1f77b4\",\"#ffbb78\",\"#ff7f0e\",\"#17becf\",\"#f7b6d2\",\"#c7c7c7\",\"#f7b6d2\",\"#c5b0d5\",\"#7f7f7f\",\"#e377c2\",\"#f7b6d2\",\"#98df8a\",\"#8c564b\",\"#17becf\",\"#9467bd\",\"#98df8a\",\"#9467bd\",\"#f7b6d2\",\"#c7c7c7\",\"#c7c7c7\",\"#f7b6d2\",\"#c7c7c7\",\"#ff7f0e\",\"#c5b0d5\",\"#ff7f0e\",\"#8c564b\",\"#8c564b\",\"#f7b6d2\",\"#ff9896\",\"#7f7f7f\",\"#ffbb78\",\"#7f7f7f\",\"#aec7e8\",\"#ff7f0e\",\"#c5b0d5\",\"#c5b0d5\",\"#aec7e8\",\"#aec7e8\",\"#9edae5\",\"#98df8a\",\"#c5b0d5\",\"#17becf\",\"#bcbd22\",\"#7f7f7f\",\"#7f7f7f\",\"#f7b6d2\",\"#c5b0d5\",\"#bcbd22\",\"#98df8a\",\"#7f7f7f\",\"#7f7f7f\",\"#8c564b\",\"#c5b0d5\",\"#98df8a\",\"#9edae5\",\"#ff7f0e\",\"#7f7f7f\",\"#c49c94\",\"#c7c7c7\",\"#98df8a\",\"#aec7e8\",\"#c5b0d5\",\"#8c564b\",\"#7f7f7f\",\"#9467bd\",\"#9467bd\",\"#8c564b\",\"#7f7f7f\",\"#f7b6d2\",\"#9467bd\",\"#9467bd\",\"#aec7e8\",\"#7f7f7f\",\"#c49c94\",\"#c7c7c7\",\"#c49c94\",\"#7f7f7f\",\"#7f7f7f\",\"#c49c94\",\"#7f7f7f\",\"#1f77b4\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#ff7f0e\",\"#9467bd\",\"#d62728\",\"#9467bd\",\"#9467bd\",\"#f7b6d2\",\"#c7c7c7\",\"#f7b6d2\",\"#9467bd\",\"#17becf\",\"#8c564b\",\"#7f7f7f\",\"#7f7f7f\",\"#c49c94\",\"#17becf\",\"#bcbd22\",\"#aec7e8\",\"#8c564b\",\"#aec7e8\",\"#aec7e8\",\"#1f77b4\",\"#ffbb78\",\"#c7c7c7\",\"#ffbb78\",\"#f7b6d2\",\"#1f77b4\",\"#98df8a\",\"#aec7e8\",\"#ff7f0e\",\"#ffbb78\",\"#ffbb78\",\"#98df8a\",\"#98df8a\",\"#e377c2\",\"#f7b6d2\",\"#9467bd\",\"#bcbd22\",\"#ffbb78\",\"#9467bd\",\"#bcbd22\",\"#8c564b\",\"#ffbb78\",\"#ffbb78\",\"#8c564b\",\"#7f7f7f\",\"#8c564b\",\"#2ca02c\",\"#ffbb78\",\"#c7c7c7\",\"#9467bd\",\"#9467bd\",\"#9467bd\",\"#bcbd22\",\"#bcbd22\",\"#9edae5\",\"#17becf\",\"#bcbd22\",\"#ffbb78\",\"#bcbd22\",\"#bcbd22\",\"#ffbb78\",\"#2ca02c\",\"#bcbd22\",\"#bcbd22\",\"#8c564b\",\"#f7b6d2\",\"#c7c7c7\",\"#7f7f7f\",\"#ffbb78\",\"#ffbb78\",\"#9467bd\",\"#98df8a\",\"#8c564b\",\"#9edae5\",\"#bcbd22\",\"#ff7f0e\",\"#f7b6d2\",\"#7f7f7f\",\"#7f7f7f\",\"#c5b0d5\",\"#7f7f7f\",\"#d62728\",\"#98df8a\",\"#98df8a\",\"#98df8a\",\"#7f7f7f\",\"#c5b0d5\",\"#98df8a\",\"#7f7f7f\",\"#98df8a\",\"#c5b0d5\",\"#c5b0d5\",\"#98df8a\",\"#f7b6d2\",\"#c5b0d5\",\"#aec7e8\",\"#f7b6d2\",\"#f7b6d2\",\"#ff7f0e\",\"#9edae5\",\"#9edae5\",\"#7f7f7f\",\"#c5b0d5\",\"#98df8a\",\"#7f7f7f\",\"#9467bd\",\"#bcbd22\",\"#bcbd22\",\"#98df8a\",\"#9edae5\",\"#7f7f7f\",\"#f7b6d2\",\"#7f7f7f\",\"#ff7f0e\",\"#7f7f7f\",\"#f7b6d2\",\"#ff7f0e\",\"#ff7f0e\",\"#bcbd22\",\"#9467bd\",\"#bcbd22\",\"#bcbd22\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#ff7f0e\",\"#ffbb78\",\"#ff7f0e\",\"#9467bd\",\"#7f7f7f\",\"#f7b6d2\",\"#ff7f0e\",\"#c7c7c7\",\"#8c564b\",\"#c7c7c7\",\"#98df8a\",\"#98df8a\",\"#c7c7c7\",\"#f7b6d2\",\"#d62728\",\"#7f7f7f\",\"#9467bd\",\"#ff7f0e\",\"#98df8a\",\"#1f77b4\",\"#1f77b4\",\"#9467bd\",\"#98df8a\",\"#2ca02c\",\"#bcbd22\",\"#98df8a\",\"#bcbd22\",\"#8c564b\",\"#c5b0d5\",\"#17becf\",\"#9467bd\",\"#aec7e8\",\"#17becf\",\"#aec7e8\",\"#ff9896\",\"#9467bd\",\"#f7b6d2\",\"#ffbb78\",\"#c5b0d5\",\"#f7b6d2\",\"#2ca02c\",\"#d62728\",\"#c7c7c7\",\"#c5b0d5\",\"#7f7f7f\",\"#f7b6d2\",\"#f7b6d2\",\"#c7c7c7\",\"#ffbb78\",\"#7f7f7f\",\"#ffbb78\",\"#17becf\",\"#d62728\",\"#aec7e8\",\"#bcbd22\",\"#7f7f7f\",\"#c5b0d5\",\"#8c564b\",\"#c5b0d5\",\"#7f7f7f\",\"#ffbb78\",\"#ffbb78\",\"#f7b6d2\",\"#ff7f0e\",\"#c5b0d5\",\"#c49c94\",\"#c49c94\",\"#bcbd22\",\"#c7c7c7\",\"#7f7f7f\",\"#f7b6d2\",\"#ff7f0e\",\"#ffbb78\",\"#f7b6d2\",\"#17becf\",\"#bcbd22\",\"#c7c7c7\",\"#bcbd22\",\"#f7b6d2\",\"#f7b6d2\",\"#17becf\",\"#7f7f7f\",\"#f7b6d2\",\"#f7b6d2\",\"#98df8a\",\"#aec7e8\",\"#c5b0d5\",\"#c7c7c7\",\"#c7c7c7\",\"#7f7f7f\",\"#2ca02c\",\"#98df8a\",\"#f7b6d2\",\"#8c564b\",\"#c7c7c7\",\"#ffbb78\",\"#ffbb78\",\"#c5b0d5\",\"#ff7f0e\",\"#2ca02c\",\"#aec7e8\",\"#9467bd\",\"#2ca02c\",\"#2ca02c\",\"#ffbb78\",\"#bcbd22\",\"#bcbd22\",\"#bcbd22\",\"#17becf\",\"#9edae5\",\"#dbdb8d\",\"#7f7f7f\",\"#9467bd\",\"#17becf\",\"#bcbd22\",\"#17becf\",\"#c5b0d5\",\"#17becf\",\"#17becf\",\"#17becf\",\"#17becf\",\"#c7c7c7\",\"#8c564b\",\"#9467bd\",\"#c7c7c7\",\"#1f77b4\",\"#f7b6d2\",\"#9edae5\",\"#9edae5\",\"#f7b6d2\",\"#c7c7c7\",\"#f7b6d2\",\"#7f7f7f\",\"#98df8a\",\"#98df8a\",\"#c7c7c7\",\"#c7c7c7\",\"#c5b0d5\",\"#7f7f7f\",\"#c7c7c7\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#9467bd\",\"#7f7f7f\",\"#c7c7c7\",\"#f7b6d2\",\"#8c564b\",\"#8c564b\",\"#8c564b\",\"#aec7e8\",\"#8c564b\",\"#8c564b\",\"#8c564b\",\"#f7b6d2\",\"#17becf\",\"#ff7f0e\",\"#8c564b\",\"#ff7f0e\",\"#ff7f0e\",\"#7f7f7f\",\"#d62728\",\"#d62728\",\"#d62728\",\"#f7b6d2\",\"#f7b6d2\",\"#d62728\",\"#7f7f7f\",\"#d62728\",\"#7f7f7f\",\"#7f7f7f\",\"#9467bd\",\"#9467bd\",\"#7f7f7f\",\"#7f7f7f\",\"#98df8a\",\"#ffbb78\",\"#c5b0d5\",\"#d62728\",\"#e377c2\",\"#c5b0d5\",\"#9467bd\",\"#9edae5\",\"#9edae5\",\"#e377c2\",\"#aec7e8\",\"#7f7f7f\",\"#98df8a\",\"#9467bd\",\"#f7b6d2\",\"#c5b0d5\",\"#17becf\",\"#9467bd\",\"#bcbd22\",\"#c5b0d5\",\"#98df8a\",\"#c5b0d5\",\"#c5b0d5\",\"#ffbb78\",\"#98df8a\",\"#7f7f7f\",\"#f7b6d2\",\"#c5b0d5\",\"#c7c7c7\",\"#c7c7c7\",\"#c5b0d5\",\"#8c564b\",\"#98df8a\",\"#e377c2\",\"#9467bd\",\"#7f7f7f\",\"#9467bd\",\"#9467bd\",\"#7f7f7f\",\"#98df8a\",\"#f7b6d2\",\"#ff9896\",\"#8c564b\",\"#98df8a\",\"#98df8a\",\"#c7c7c7\",\"#c5b0d5\",\"#ff7f0e\",\"#ffbb78\",\"#9467bd\",\"#c5b0d5\",\"#98df8a\",\"#f7b6d2\",\"#7f7f7f\",\"#9467bd\",\"#1f77b4\",\"#c7c7c7\",\"#98df8a\",\"#17becf\",\"#ffbb78\",\"#98df8a\",\"#f7b6d2\",\"#98df8a\",\"#aec7e8\",\"#c7c7c7\",\"#aec7e8\",\"#aec7e8\",\"#c5b0d5\",\"#7f7f7f\",\"#8c564b\",\"#9467bd\",\"#17becf\",\"#d62728\",\"#f7b6d2\",\"#1f77b4\",\"#ff7f0e\",\"#9467bd\",\"#98df8a\",\"#ffbb78\",\"#aec7e8\",\"#1f77b4\",\"#8c564b\",\"#7f7f7f\",\"#98df8a\",\"#98df8a\",\"#9edae5\",\"#2ca02c\",\"#7f7f7f\",\"#c5b0d5\",\"#17becf\",\"#17becf\",\"#d62728\",\"#9467bd\",\"#f7b6d2\",\"#d62728\",\"#f7b6d2\",\"#bcbd22\",\"#7f7f7f\",\"#ff7f0e\",\"#7f7f7f\",\"#ff7f0e\",\"#ff7f0e\",\"#dbdb8d\",\"#d62728\",\"#7f7f7f\",\"#ff7f0e\",\"#c5b0d5\",\"#c5b0d5\",\"#f7b6d2\",\"#f7b6d2\",\"#ff7f0e\",\"#c5b0d5\",\"#98df8a\",\"#c5b0d5\",\"#c5b0d5\",\"#c7c7c7\",\"#e377c2\",\"#ffbb78\",\"#c7c7c7\",\"#c49c94\",\"#c7c7c7\",\"#9467bd\",\"#c5b0d5\",\"#7f7f7f\",\"#7f7f7f\",\"#ffbb78\",\"#f7b6d2\",\"#ff7f0e\",\"#aec7e8\",\"#aec7e8\",\"#ffbb78\",\"#17becf\",\"#c7c7c7\",\"#17becf\",\"#7f7f7f\",\"#7f7f7f\",\"#9467bd\",\"#c7c7c7\",\"#8c564b\",\"#bcbd22\",\"#bcbd22\",\"#ffbb78\",\"#ffbb78\",\"#ffbb78\",\"#f7b6d2\",\"#98df8a\",\"#bcbd22\",\"#c7c7c7\",\"#c7c7c7\",\"#bcbd22\",\"#17becf\",\"#ffbb78\",\"#98df8a\",\"#d62728\",\"#f7b6d2\",\"#e377c2\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#c5b0d5\",\"#c5b0d5\",\"#f7b6d2\",\"#c7c7c7\",\"#f7b6d2\",\"#c7c7c7\",\"#f7b6d2\",\"#f7b6d2\",\"#2ca02c\",\"#bcbd22\",\"#bcbd22\",\"#ff7f0e\",\"#9467bd\",\"#98df8a\",\"#17becf\",\"#98df8a\",\"#98df8a\",\"#9467bd\",\"#7f7f7f\",\"#bcbd22\",\"#ff7f0e\",\"#c5b0d5\",\"#c5b0d5\",\"#7f7f7f\",\"#f7b6d2\",\"#bcbd22\",\"#f7b6d2\",\"#ffbb78\",\"#98df8a\",\"#8c564b\",\"#98df8a\",\"#7f7f7f\",\"#aec7e8\",\"#bcbd22\",\"#c49c94\",\"#9467bd\",\"#98df8a\",\"#f7b6d2\",\"#d62728\",\"#d62728\",\"#d62728\",\"#c5b0d5\",\"#7f7f7f\",\"#7f7f7f\",\"#bcbd22\",\"#bcbd22\",\"#ffbb78\",\"#ff7f0e\",\"#98df8a\",\"#7f7f7f\",\"#17becf\",\"#17becf\",\"#9467bd\",\"#c7c7c7\",\"#9467bd\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#d62728\",\"#8c564b\",\"#c7c7c7\",\"#c5b0d5\",\"#7f7f7f\",\"#c7c7c7\",\"#bcbd22\",\"#7f7f7f\",\"#8c564b\",\"#9467bd\",\"#7f7f7f\",\"#7f7f7f\",\"#8c564b\",\"#98df8a\",\"#8c564b\",\"#8c564b\",\"#c5b0d5\",\"#7f7f7f\",\"#2ca02c\",\"#bcbd22\",\"#17becf\",\"#c5b0d5\",\"#c5b0d5\",\"#dbdb8d\",\"#dbdb8d\",\"#c49c94\",\"#c7c7c7\",\"#7f7f7f\",\"#17becf\",\"#ffbb78\",\"#f7b6d2\",\"#c49c94\",\"#c49c94\",\"#c49c94\",\"#9467bd\",\"#9467bd\",\"#c7c7c7\",\"#98df8a\",\"#98df8a\",\"#17becf\",\"#98df8a\",\"#98df8a\",\"#9467bd\",\"#ffbb78\",\"#7f7f7f\",\"#8c564b\",\"#2ca02c\",\"#2ca02c\",\"#7f7f7f\",\"#c7c7c7\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#9467bd\",\"#ffbb78\",\"#ff7f0e\",\"#bcbd22\",\"#9467bd\",\"#9467bd\",\"#7f7f7f\",\"#8c564b\",\"#17becf\",\"#c7c7c7\",\"#17becf\",\"#7f7f7f\",\"#9467bd\",\"#ff7f0e\",\"#bcbd22\",\"#9467bd\",\"#17becf\",\"#17becf\",\"#aec7e8\",\"#98df8a\",\"#9467bd\",\"#98df8a\",\"#bcbd22\",\"#ffbb78\",\"#f7b6d2\",\"#f7b6d2\",\"#98df8a\",\"#c7c7c7\",\"#f7b6d2\",\"#7f7f7f\",\"#9467bd\",\"#c49c94\",\"#7f7f7f\",\"#ffbb78\",\"#9467bd\",\"#9467bd\",\"#1f77b4\",\"#f7b6d2\",\"#c49c94\",\"#ff7f0e\",\"#2ca02c\",\"#c5b0d5\",\"#7f7f7f\",\"#c5b0d5\",\"#f7b6d2\",\"#f7b6d2\",\"#9467bd\",\"#ff7f0e\",\"#8c564b\",\"#8c564b\",\"#98df8a\",\"#ffbb78\",\"#ffbb78\",\"#e377c2\",\"#f7b6d2\",\"#bcbd22\",\"#7f7f7f\",\"#9467bd\",\"#7f7f7f\",\"#7f7f7f\",\"#d62728\",\"#c5b0d5\",\"#2ca02c\",\"#f7b6d2\",\"#8c564b\",\"#17becf\",\"#d62728\",\"#7f7f7f\",\"#7f7f7f\",\"#8c564b\",\"#ffbb78\",\"#c49c94\",\"#9467bd\",\"#17becf\",\"#c5b0d5\",\"#9467bd\",\"#9467bd\",\"#7f7f7f\",\"#98df8a\",\"#8c564b\",\"#ffbb78\",\"#ffbb78\",\"#9467bd\",\"#17becf\",\"#c7c7c7\",\"#ffbb78\",\"#7f7f7f\",\"#98df8a\",\"#98df8a\",\"#98df8a\",\"#7f7f7f\",\"#17becf\",\"#f7b6d2\",\"#f7b6d2\",\"#bcbd22\",\"#7f7f7f\",\"#7f7f7f\",\"#bcbd22\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#17becf\",\"#7f7f7f\",\"#ff7f0e\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#f7b6d2\",\"#9467bd\",\"#ff7f0e\",\"#ff7f0e\",\"#ffbb78\",\"#7f7f7f\",\"#c5b0d5\",\"#7f7f7f\",\"#c5b0d5\",\"#bcbd22\",\"#17becf\",\"#f7b6d2\",\"#c5b0d5\",\"#c5b0d5\",\"#7f7f7f\",\"#2ca02c\",\"#c5b0d5\",\"#98df8a\",\"#c7c7c7\",\"#f7b6d2\",\"#c5b0d5\",\"#ffbb78\",\"#bcbd22\",\"#c5b0d5\",\"#9edae5\",\"#c5b0d5\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#bcbd22\",\"#aec7e8\",\"#17becf\",\"#7f7f7f\",\"#c5b0d5\",\"#ffbb78\",\"#bcbd22\",\"#ff9896\",\"#c5b0d5\",\"#9467bd\",\"#7f7f7f\",\"#f7b6d2\",\"#98df8a\",\"#8c564b\",\"#ffbb78\",\"#ff7f0e\",\"#7f7f7f\",\"#c49c94\",\"#2ca02c\",\"#c7c7c7\",\"#bcbd22\",\"#c7c7c7\",\"#98df8a\",\"#c5b0d5\",\"#9467bd\",\"#ffbb78\",\"#7f7f7f\",\"#17becf\",\"#dbdb8d\",\"#dbdb8d\",\"#7f7f7f\",\"#c49c94\",\"#8c564b\",\"#7f7f7f\",\"#c7c7c7\",\"#c5b0d5\",\"#9467bd\",\"#c5b0d5\",\"#1f77b4\",\"#d62728\",\"#9467bd\",\"#c5b0d5\",\"#9467bd\",\"#c5b0d5\",\"#7f7f7f\",\"#7f7f7f\",\"#f7b6d2\",\"#c5b0d5\",\"#2ca02c\",\"#17becf\",\"#2ca02c\",\"#f7b6d2\",\"#bcbd22\",\"#9edae5\",\"#9467bd\",\"#f7b6d2\",\"#2ca02c\",\"#f7b6d2\",\"#9edae5\",\"#bcbd22\",\"#bcbd22\",\"#9edae5\",\"#17becf\",\"#f7b6d2\",\"#9467bd\",\"#f7b6d2\",\"#7f7f7f\",\"#f7b6d2\",\"#17becf\",\"#aec7e8\",\"#aec7e8\",\"#7f7f7f\",\"#bcbd22\",\"#f7b6d2\",\"#ff7f0e\",\"#c7c7c7\",\"#98df8a\",\"#aec7e8\",\"#8c564b\",\"#9edae5\",\"#bcbd22\",\"#8c564b\",\"#c5b0d5\",\"#c5b0d5\",\"#d62728\",\"#c5b0d5\",\"#7f7f7f\",\"#c5b0d5\",\"#ffbb78\",\"#c7c7c7\",\"#f7b6d2\",\"#98df8a\",\"#8c564b\",\"#7f7f7f\",\"#c5b0d5\",\"#ff7f0e\",\"#c7c7c7\",\"#ffbb78\",\"#f7b6d2\",\"#17becf\",\"#c5b0d5\",\"#7f7f7f\",\"#7f7f7f\",\"#bcbd22\",\"#7f7f7f\",\"#9edae5\",\"#aec7e8\",\"#9467bd\",\"#7f7f7f\",\"#17becf\",\"#bcbd22\",\"#c7c7c7\",\"#17becf\",\"#7f7f7f\",\"#c7c7c7\",\"#dbdb8d\",\"#dbdb8d\",\"#9edae5\",\"#bcbd22\",\"#9edae5\",\"#ffbb78\",\"#f7b6d2\",\"#9467bd\",\"#c7c7c7\",\"#8c564b\",\"#8c564b\",\"#7f7f7f\",\"#f7b6d2\",\"#bcbd22\",\"#ff7f0e\",\"#f7b6d2\",\"#9edae5\",\"#d62728\",\"#bcbd22\",\"#c7c7c7\",\"#c7c7c7\",\"#f7b6d2\",\"#ff7f0e\",\"#ffbb78\",\"#c49c94\",\"#c49c94\",\"#9467bd\",\"#c7c7c7\",\"#1f77b4\",\"#bcbd22\",\"#aec7e8\",\"#f7b6d2\",\"#f7b6d2\",\"#ff7f0e\",\"#f7b6d2\",\"#c5b0d5\",\"#c5b0d5\",\"#9467bd\",\"#9edae5\",\"#c5b0d5\",\"#c5b0d5\",\"#ff7f0e\",\"#9467bd\",\"#ffbb78\",\"#7f7f7f\",\"#17becf\",\"#98df8a\",\"#c7c7c7\",\"#bcbd22\",\"#ffbb78\",\"#e377c2\",\"#c5b0d5\",\"#2ca02c\",\"#f7b6d2\",\"#1f77b4\",\"#bcbd22\",\"#17becf\",\"#17becf\",\"#f7b6d2\",\"#f7b6d2\",\"#9edae5\",\"#17becf\",\"#9467bd\",\"#f7b6d2\",\"#7f7f7f\",\"#7f7f7f\",\"#9467bd\",\"#9edae5\",\"#f7b6d2\",\"#c5b0d5\",\"#c5b0d5\",\"#c7c7c7\",\"#f7b6d2\",\"#dbdb8d\",\"#ffbb78\",\"#ffbb78\",\"#9edae5\",\"#7f7f7f\",\"#e377c2\",\"#9467bd\",\"#8c564b\",\"#f7b6d2\",\"#9edae5\",\"#d62728\",\"#bcbd22\",\"#7f7f7f\",\"#bcbd22\",\"#f7b6d2\",\"#98df8a\",\"#f7b6d2\",\"#c5b0d5\",\"#f7b6d2\",\"#f7b6d2\",\"#c7c7c7\",\"#8c564b\",\"#8c564b\",\"#f7b6d2\",\"#f7b6d2\",\"#e377c2\",\"#98df8a\",\"#98df8a\",\"#9467bd\",\"#7f7f7f\",\"#17becf\",\"#f7b6d2\",\"#c5b0d5\",\"#17becf\",\"#7f7f7f\",\"#8c564b\",\"#8c564b\",\"#1f77b4\",\"#98df8a\",\"#aec7e8\",\"#bcbd22\",\"#7f7f7f\",\"#8c564b\",\"#98df8a\",\"#c7c7c7\",\"#7f7f7f\",\"#7f7f7f\",\"#9467bd\",\"#ff7f0e\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#9467bd\",\"#f7b6d2\",\"#c5b0d5\",\"#7f7f7f\",\"#ffbb78\",\"#c7c7c7\",\"#98df8a\",\"#f7b6d2\",\"#c7c7c7\",\"#c49c94\",\"#d62728\",\"#9467bd\",\"#9467bd\",\"#7f7f7f\",\"#9edae5\",\"#8c564b\",\"#f7b6d2\",\"#e377c2\",\"#8c564b\",\"#9467bd\",\"#7f7f7f\",\"#e377c2\",\"#c49c94\",\"#c7c7c7\",\"#ff7f0e\",\"#c7c7c7\",\"#c49c94\",\"#ff7f0e\",\"#8c564b\",\"#98df8a\",\"#7f7f7f\",\"#c7c7c7\",\"#c7c7c7\",\"#17becf\",\"#f7b6d2\",\"#9467bd\",\"#98df8a\",\"#17becf\",\"#c5b0d5\",\"#c5b0d5\",\"#7f7f7f\",\"#8c564b\",\"#ffbb78\",\"#9467bd\",\"#1f77b4\",\"#9467bd\",\"#ffbb78\",\"#f7b6d2\",\"#e377c2\",\"#c7c7c7\",\"#f7b6d2\",\"#aec7e8\",\"#9edae5\",\"#8c564b\",\"#ffbb78\",\"#7f7f7f\",\"#2ca02c\",\"#98df8a\",\"#bcbd22\",\"#98df8a\",\"#9467bd\",\"#98df8a\",\"#c5b0d5\",\"#7f7f7f\",\"#c5b0d5\",\"#8c564b\",\"#c5b0d5\",\"#bcbd22\",\"#ff7f0e\",\"#7f7f7f\",\"#ffbb78\",\"#f7b6d2\",\"#2ca02c\",\"#f7b6d2\",\"#2ca02c\",\"#f7b6d2\",\"#ffbb78\",\"#ffbb78\",\"#8c564b\",\"#8c564b\",\"#8c564b\",\"#98df8a\",\"#ffbb78\",\"#98df8a\",\"#bcbd22\",\"#2ca02c\",\"#17becf\",\"#8c564b\",\"#c5b0d5\",\"#ffbb78\",\"#ff7f0e\",\"#9467bd\",\"#9467bd\",\"#98df8a\",\"#8c564b\",\"#ff7f0e\",\"#bcbd22\",\"#d62728\",\"#7f7f7f\",\"#98df8a\",\"#d62728\",\"#d62728\",\"#98df8a\",\"#d62728\",\"#7f7f7f\",\"#ff7f0e\",\"#ffbb78\",\"#c7c7c7\",\"#c7c7c7\",\"#f7b6d2\",\"#2ca02c\",\"#c5b0d5\",\"#ff7f0e\",\"#17becf\",\"#bcbd22\",\"#c49c94\",\"#2ca02c\",\"#bcbd22\",\"#ff7f0e\",\"#d62728\",\"#9467bd\",\"#8c564b\",\"#f7b6d2\",\"#8c564b\",\"#98df8a\",\"#8c564b\",\"#8c564b\",\"#8c564b\",\"#98df8a\",\"#ff7f0e\",\"#7f7f7f\",\"#bcbd22\",\"#1f77b4\",\"#9467bd\",\"#7f7f7f\",\"#9edae5\",\"#2ca02c\",\"#9467bd\",\"#9467bd\",\"#ffbb78\",\"#c5b0d5\",\"#9467bd\",\"#c7c7c7\",\"#9467bd\",\"#c5b0d5\",\"#ff7f0e\",\"#17becf\",\"#98df8a\",\"#17becf\",\"#c7c7c7\",\"#9467bd\",\"#ff7f0e\",\"#c49c94\",\"#f7b6d2\",\"#2ca02c\",\"#f7b6d2\",\"#ffbb78\",\"#bcbd22\",\"#7f7f7f\",\"#98df8a\",\"#c7c7c7\",\"#c5b0d5\",\"#9467bd\",\"#98df8a\",\"#98df8a\",\"#c5b0d5\",\"#7f7f7f\",\"#8c564b\",\"#bcbd22\",\"#bcbd22\",\"#bcbd22\",\"#c7c7c7\",\"#ff7f0e\",\"#2ca02c\",\"#bcbd22\",\"#7f7f7f\",\"#c7c7c7\",\"#9edae5\",\"#7f7f7f\",\"#c5b0d5\",\"#c49c94\",\"#c7c7c7\",\"#7f7f7f\",\"#17becf\",\"#9edae5\",\"#17becf\",\"#ffbb78\",\"#7f7f7f\",\"#f7b6d2\",\"#7f7f7f\",\"#7f7f7f\",\"#c5b0d5\",\"#c5b0d5\",\"#d62728\",\"#c5b0d5\",\"#f7b6d2\",\"#17becf\",\"#9467bd\",\"#c5b0d5\",\"#c5b0d5\",\"#1f77b4\",\"#7f7f7f\",\"#98df8a\",\"#2ca02c\",\"#c7c7c7\",\"#ffbb78\",\"#ffbb78\",\"#9467bd\",\"#ffbb78\",\"#7f7f7f\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#1f77b4\",\"#1f77b4\",\"#7f7f7f\",\"#7f7f7f\",\"#f7b6d2\",\"#c49c94\",\"#7f7f7f\",\"#9467bd\",\"#8c564b\",\"#c7c7c7\",\"#8c564b\",\"#c7c7c7\",\"#bcbd22\",\"#98df8a\",\"#c5b0d5\",\"#9edae5\",\"#c49c94\",\"#bcbd22\",\"#1f77b4\",\"#ff7f0e\",\"#ffbb78\",\"#ffbb78\",\"#d62728\",\"#8c564b\",\"#c5b0d5\",\"#d62728\",\"#ffbb78\",\"#9edae5\",\"#9467bd\",\"#f7b6d2\",\"#98df8a\",\"#c49c94\",\"#9edae5\",\"#98df8a\",\"#98df8a\",\"#9edae5\",\"#aec7e8\",\"#9467bd\",\"#c7c7c7\",\"#7f7f7f\",\"#c5b0d5\",\"#98df8a\",\"#2ca02c\",\"#98df8a\",\"#dbdb8d\",\"#9467bd\",\"#e377c2\",\"#9467bd\",\"#9467bd\",\"#98df8a\",\"#98df8a\",\"#9edae5\",\"#8c564b\",\"#17becf\",\"#7f7f7f\",\"#f7b6d2\",\"#7f7f7f\",\"#9edae5\",\"#8c564b\",\"#7f7f7f\",\"#98df8a\",\"#17becf\",\"#7f7f7f\",\"#98df8a\",\"#c5b0d5\",\"#ffbb78\",\"#17becf\",\"#9edae5\",\"#9edae5\",\"#d62728\",\"#ffbb78\",\"#8c564b\",\"#c7c7c7\",\"#7f7f7f\",\"#9467bd\",\"#ffbb78\",\"#1f77b4\",\"#1f77b4\",\"#c5b0d5\",\"#c5b0d5\",\"#2ca02c\",\"#8c564b\",\"#f7b6d2\",\"#bcbd22\",\"#2ca02c\",\"#9467bd\",\"#ffbb78\",\"#bcbd22\",\"#ffbb78\",\"#9467bd\",\"#c7c7c7\",\"#d62728\",\"#98df8a\",\"#ff7f0e\",\"#8c564b\",\"#7f7f7f\",\"#bcbd22\",\"#f7b6d2\",\"#c49c94\",\"#98df8a\",\"#c5b0d5\",\"#d62728\",\"#9edae5\",\"#17becf\",\"#bcbd22\",\"#bcbd22\",\"#f7b6d2\",\"#8c564b\",\"#e377c2\",\"#e377c2\",\"#ffbb78\",\"#98df8a\",\"#98df8a\",\"#c5b0d5\",\"#8c564b\",\"#bcbd22\",\"#f7b6d2\",\"#98df8a\",\"#8c564b\",\"#7f7f7f\",\"#17becf\",\"#c7c7c7\",\"#ffbb78\",\"#e377c2\",\"#ff7f0e\",\"#17becf\",\"#c5b0d5\",\"#8c564b\",\"#17becf\",\"#ff7f0e\",\"#2ca02c\",\"#9edae5\",\"#ffbb78\",\"#8c564b\",\"#bcbd22\",\"#ff7f0e\",\"#ffbb78\",\"#ffbb78\",\"#ffbb78\",\"#c5b0d5\",\"#c5b0d5\",\"#17becf\",\"#98df8a\",\"#f7b6d2\",\"#98df8a\",\"#bcbd22\",\"#c5b0d5\",\"#2ca02c\",\"#ffbb78\",\"#98df8a\",\"#ff7f0e\",\"#ff7f0e\",\"#e377c2\",\"#bcbd22\",\"#98df8a\",\"#7f7f7f\",\"#8c564b\",\"#98df8a\",\"#7f7f7f\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#bcbd22\",\"#2ca02c\",\"#1f77b4\",\"#ff7f0e\",\"#ffbb78\",\"#17becf\",\"#98df8a\",\"#f7b6d2\",\"#f7b6d2\",\"#c5b0d5\",\"#8c564b\",\"#7f7f7f\",\"#e377c2\",\"#f7b6d2\",\"#98df8a\",\"#ff7f0e\",\"#c5b0d5\",\"#9467bd\",\"#dbdb8d\",\"#7f7f7f\",\"#bcbd22\",\"#d62728\",\"#8c564b\",\"#c5b0d5\",\"#f7b6d2\",\"#98df8a\",\"#17becf\",\"#2ca02c\",\"#ff7f0e\",\"#9467bd\",\"#c5b0d5\",\"#c5b0d5\",\"#98df8a\",\"#bcbd22\",\"#9467bd\",\"#c7c7c7\",\"#e377c2\",\"#e377c2\",\"#17becf\",\"#9467bd\",\"#9467bd\",\"#c5b0d5\",\"#ffbb78\",\"#98df8a\",\"#ffbb78\",\"#8c564b\",\"#f7b6d2\",\"#98df8a\",\"#2ca02c\",\"#ff7f0e\",\"#7f7f7f\",\"#7f7f7f\",\"#ffbb78\",\"#ff7f0e\",\"#9467bd\",\"#c7c7c7\",\"#8c564b\",\"#1f77b4\",\"#7f7f7f\",\"#d62728\",\"#c7c7c7\",\"#9467bd\",\"#9edae5\",\"#1f77b4\",\"#c7c7c7\",\"#9edae5\",\"#98df8a\",\"#c5b0d5\",\"#e377c2\",\"#7f7f7f\",\"#bcbd22\",\"#8c564b\",\"#f7b6d2\",\"#98df8a\",\"#8c564b\",\"#98df8a\",\"#c5b0d5\",\"#98df8a\",\"#bcbd22\",\"#98df8a\",\"#8c564b\",\"#ff7f0e\",\"#98df8a\",\"#ff7f0e\",\"#c5b0d5\",\"#ffbb78\",\"#bcbd22\",\"#98df8a\",\"#c7c7c7\",\"#f7b6d2\",\"#c7c7c7\",\"#d62728\",\"#d62728\",\"#c5b0d5\",\"#ff9896\",\"#ff7f0e\",\"#9467bd\",\"#2ca02c\",\"#ff7f0e\",\"#98df8a\",\"#9edae5\",\"#f7b6d2\",\"#aec7e8\",\"#98df8a\",\"#98df8a\",\"#8c564b\",\"#17becf\",\"#1f77b4\",\"#ff7f0e\",\"#8c564b\",\"#7f7f7f\",\"#98df8a\",\"#c49c94\",\"#c49c94\",\"#17becf\",\"#ffbb78\",\"#9467bd\",\"#98df8a\",\"#8c564b\",\"#8c564b\",\"#8c564b\",\"#bcbd22\",\"#c5b0d5\",\"#c5b0d5\",\"#7f7f7f\",\"#98df8a\",\"#c5b0d5\",\"#f7b6d2\",\"#bcbd22\",\"#9467bd\",\"#98df8a\",\"#98df8a\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#f7b6d2\",\"#c5b0d5\",\"#ffbb78\",\"#c5b0d5\",\"#c7c7c7\",\"#98df8a\",\"#98df8a\",\"#bcbd22\",\"#f7b6d2\",\"#aec7e8\",\"#7f7f7f\",\"#d62728\",\"#ff7f0e\",\"#c49c94\",\"#f7b6d2\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#c49c94\",\"#f7b6d2\",\"#98df8a\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#f7b6d2\",\"#f7b6d2\",\"#98df8a\",\"#d62728\",\"#7f7f7f\",\"#c7c7c7\",\"#bcbd22\",\"#7f7f7f\",\"#c49c94\",\"#9467bd\",\"#c7c7c7\",\"#ffbb78\",\"#7f7f7f\",\"#17becf\",\"#ffbb78\",\"#ff7f0e\",\"#98df8a\",\"#8c564b\",\"#ffbb78\",\"#ffbb78\",\"#c5b0d5\",\"#9467bd\",\"#c5b0d5\",\"#d62728\",\"#98df8a\",\"#c7c7c7\",\"#ff7f0e\",\"#f7b6d2\",\"#7f7f7f\",\"#ffbb78\",\"#f7b6d2\",\"#ffbb78\",\"#dbdb8d\",\"#7f7f7f\",\"#98df8a\",\"#bcbd22\",\"#9edae5\",\"#f7b6d2\",\"#9edae5\",\"#7f7f7f\",\"#98df8a\",\"#f7b6d2\",\"#c5b0d5\",\"#8c564b\",\"#2ca02c\",\"#c5b0d5\",\"#c49c94\",\"#f7b6d2\",\"#9467bd\",\"#aec7e8\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#d62728\",\"#c7c7c7\",\"#7f7f7f\",\"#d62728\",\"#7f7f7f\",\"#c7c7c7\",\"#7f7f7f\",\"#9467bd\",\"#ff7f0e\",\"#c5b0d5\",\"#ffbb78\",\"#7f7f7f\",\"#17becf\",\"#7f7f7f\",\"#f7b6d2\",\"#bcbd22\",\"#c7c7c7\",\"#8c564b\",\"#2ca02c\",\"#bcbd22\",\"#7f7f7f\",\"#f7b6d2\",\"#17becf\",\"#bcbd22\",\"#9467bd\",\"#7f7f7f\",\"#8c564b\",\"#9edae5\",\"#ffbb78\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#c5b0d5\",\"#c7c7c7\",\"#bcbd22\",\"#ffbb78\",\"#9467bd\",\"#c5b0d5\",\"#ff7f0e\",\"#bcbd22\",\"#bcbd22\",\"#7f7f7f\",\"#8c564b\",\"#ff7f0e\",\"#d62728\",\"#d62728\",\"#f7b6d2\",\"#c5b0d5\",\"#9edae5\",\"#d62728\",\"#8c564b\",\"#8c564b\",\"#7f7f7f\",\"#8c564b\",\"#bcbd22\",\"#c7c7c7\",\"#c5b0d5\",\"#17becf\",\"#c5b0d5\",\"#d62728\",\"#f7b6d2\",\"#bcbd22\",\"#ff7f0e\",\"#c49c94\",\"#c5b0d5\",\"#2ca02c\",\"#bcbd22\",\"#7f7f7f\",\"#c7c7c7\",\"#ff7f0e\",\"#17becf\",\"#9467bd\",\"#7f7f7f\",\"#c49c94\",\"#f7b6d2\",\"#7f7f7f\",\"#7f7f7f\",\"#f7b6d2\",\"#7f7f7f\",\"#f7b6d2\",\"#98df8a\",\"#ff7f0e\",\"#c5b0d5\",\"#7f7f7f\",\"#7f7f7f\",\"#8c564b\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#8c564b\",\"#c7c7c7\",\"#aec7e8\",\"#bcbd22\",\"#c5b0d5\",\"#98df8a\",\"#bcbd22\",\"#e377c2\",\"#9edae5\",\"#8c564b\",\"#98df8a\",\"#c49c94\",\"#f7b6d2\",\"#17becf\",\"#ff9896\",\"#9467bd\",\"#7f7f7f\",\"#ffbb78\",\"#9467bd\",\"#ffbb78\",\"#ffbb78\",\"#ffbb78\",\"#98df8a\",\"#f7b6d2\",\"#c5b0d5\",\"#c49c94\",\"#9edae5\",\"#d62728\",\"#ffbb78\",\"#17becf\",\"#f7b6d2\",\"#c7c7c7\",\"#bcbd22\",\"#9edae5\",\"#c5b0d5\",\"#ff7f0e\",\"#98df8a\",\"#c7c7c7\",\"#c7c7c7\",\"#7f7f7f\",\"#e377c2\",\"#17becf\",\"#c5b0d5\",\"#9edae5\",\"#9467bd\",\"#98df8a\",\"#ffbb78\",\"#f7b6d2\",\"#98df8a\",\"#bcbd22\",\"#bcbd22\",\"#ff7f0e\",\"#98df8a\",\"#7f7f7f\",\"#8c564b\",\"#9467bd\",\"#ff9896\",\"#9467bd\",\"#c5b0d5\",\"#17becf\",\"#c49c94\",\"#c7c7c7\",\"#9467bd\",\"#98df8a\",\"#c49c94\",\"#c7c7c7\",\"#e377c2\",\"#98df8a\",\"#7f7f7f\",\"#ffbb78\",\"#c49c94\",\"#c49c94\",\"#ffbb78\",\"#9467bd\",\"#c5b0d5\",\"#1f77b4\",\"#c5b0d5\",\"#f7b6d2\",\"#2ca02c\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#d62728\",\"#e377c2\",\"#ff9896\",\"#f7b6d2\",\"#aec7e8\",\"#17becf\",\"#7f7f7f\",\"#ff7f0e\",\"#9467bd\",\"#d62728\",\"#ffbb78\",\"#ffbb78\",\"#17becf\",\"#c5b0d5\",\"#c7c7c7\",\"#c7c7c7\",\"#bcbd22\",\"#98df8a\",\"#7f7f7f\",\"#aec7e8\",\"#c7c7c7\",\"#d62728\",\"#d62728\",\"#8c564b\",\"#c49c94\",\"#98df8a\",\"#9edae5\",\"#bcbd22\",\"#e377c2\",\"#c5b0d5\",\"#9edae5\",\"#1f77b4\",\"#aec7e8\",\"#c5b0d5\",\"#1f77b4\",\"#7f7f7f\",\"#c5b0d5\",\"#bcbd22\",\"#98df8a\",\"#d62728\",\"#c7c7c7\",\"#9467bd\",\"#c7c7c7\",\"#17becf\",\"#c7c7c7\",\"#98df8a\",\"#f7b6d2\",\"#f7b6d2\",\"#c7c7c7\",\"#c5b0d5\",\"#8c564b\",\"#c5b0d5\",\"#c7c7c7\",\"#ffbb78\",\"#c7c7c7\",\"#7f7f7f\",\"#c7c7c7\",\"#c7c7c7\",\"#ff9896\",\"#c49c94\",\"#ffbb78\",\"#c7c7c7\",\"#ffbb78\",\"#c7c7c7\",\"#9467bd\",\"#c5b0d5\",\"#9edae5\",\"#f7b6d2\",\"#ffbb78\",\"#aec7e8\",\"#dbdb8d\",\"#f7b6d2\",\"#c7c7c7\",\"#aec7e8\",\"#c5b0d5\",\"#c7c7c7\",\"#d62728\",\"#f7b6d2\",\"#ffbb78\",\"#ff9896\",\"#c5b0d5\",\"#c5b0d5\",\"#c7c7c7\",\"#ffbb78\",\"#bcbd22\",\"#17becf\",\"#c7c7c7\",\"#17becf\",\"#17becf\",\"#c7c7c7\",\"#1f77b4\",\"#1f77b4\",\"#1f77b4\",\"#17becf\",\"#9edae5\",\"#f7b6d2\",\"#8c564b\",\"#c7c7c7\",\"#2ca02c\",\"#f7b6d2\",\"#c7c7c7\",\"#f7b6d2\",\"#9467bd\",\"#c5b0d5\",\"#c5b0d5\",\"#9467bd\",\"#ff7f0e\",\"#7f7f7f\",\"#7f7f7f\",\"#ff7f0e\",\"#2ca02c\",\"#e377c2\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#ff7f0e\",\"#98df8a\",\"#7f7f7f\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#ffbb78\",\"#ff7f0e\",\"#7f7f7f\",\"#7f7f7f\",\"#ffbb78\",\"#98df8a\",\"#ff7f0e\",\"#c7c7c7\",\"#98df8a\",\"#98df8a\",\"#ff7f0e\",\"#7f7f7f\",\"#ff7f0e\",\"#ff7f0e\",\"#17becf\",\"#7f7f7f\",\"#8c564b\",\"#17becf\",\"#17becf\",\"#c7c7c7\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#98df8a\",\"#98df8a\",\"#ffbb78\",\"#7f7f7f\",\"#2ca02c\",\"#c7c7c7\",\"#2ca02c\",\"#8c564b\",\"#c7c7c7\",\"#e377c2\",\"#1f77b4\",\"#9467bd\",\"#9467bd\",\"#17becf\",\"#c49c94\",\"#ffbb78\",\"#98df8a\",\"#ffbb78\",\"#9467bd\",\"#ff7f0e\",\"#8c564b\",\"#98df8a\",\"#9467bd\",\"#f7b6d2\",\"#98df8a\",\"#aec7e8\",\"#7f7f7f\",\"#7f7f7f\",\"#17becf\",\"#7f7f7f\",\"#7f7f7f\",\"#ff7f0e\",\"#98df8a\",\"#7f7f7f\",\"#8c564b\",\"#7f7f7f\",\"#ff7f0e\",\"#ff7f0e\",\"#c5b0d5\",\"#9467bd\",\"#7f7f7f\",\"#9467bd\",\"#f7b6d2\",\"#ff9896\",\"#ffbb78\",\"#ff7f0e\",\"#dbdb8d\",\"#9467bd\",\"#98df8a\",\"#ffbb78\",\"#ff7f0e\",\"#c5b0d5\",\"#9467bd\",\"#7f7f7f\",\"#c5b0d5\",\"#9467bd\",\"#17becf\",\"#f7b6d2\",\"#aec7e8\",\"#2ca02c\",\"#9467bd\",\"#98df8a\",\"#ffbb78\",\"#f7b6d2\",\"#c5b0d5\",\"#f7b6d2\",\"#f7b6d2\",\"#ffbb78\",\"#ffbb78\",\"#7f7f7f\",\"#c7c7c7\",\"#9467bd\",\"#9467bd\",\"#c7c7c7\",\"#ff7f0e\",\"#c7c7c7\",\"#ffbb78\",\"#f7b6d2\",\"#8c564b\",\"#9467bd\",\"#7f7f7f\",\"#c5b0d5\",\"#ffbb78\",\"#ffbb78\",\"#c7c7c7\",\"#ff9896\",\"#17becf\",\"#c7c7c7\",\"#98df8a\",\"#c5b0d5\",\"#c7c7c7\",\"#f7b6d2\",\"#c7c7c7\",\"#e377c2\",\"#c7c7c7\",\"#2ca02c\",\"#ffbb78\",\"#f7b6d2\",\"#7f7f7f\",\"#2ca02c\",\"#c7c7c7\",\"#c7c7c7\",\"#7f7f7f\",\"#ffbb78\",\"#8c564b\",\"#7f7f7f\",\"#f7b6d2\",\"#8c564b\",\"#98df8a\",\"#17becf\",\"#ffbb78\",\"#c7c7c7\",\"#c7c7c7\",\"#17becf\",\"#7f7f7f\",\"#9467bd\",\"#c7c7c7\",\"#2ca02c\",\"#ffbb78\",\"#c5b0d5\",\"#ffbb78\",\"#9edae5\",\"#c49c94\",\"#c7c7c7\",\"#f7b6d2\",\"#ffbb78\",\"#ffbb78\",\"#17becf\",\"#f7b6d2\",\"#9467bd\",\"#c7c7c7\",\"#17becf\",\"#c49c94\",\"#7f7f7f\",\"#ffbb78\",\"#c5b0d5\",\"#9467bd\",\"#ffbb78\",\"#f7b6d2\",\"#bcbd22\",\"#9edae5\",\"#2ca02c\",\"#ffbb78\",\"#f7b6d2\",\"#e377c2\",\"#ff9896\",\"#f7b6d2\",\"#c7c7c7\",\"#ffbb78\",\"#2ca02c\",\"#ff9896\",\"#f7b6d2\",\"#c7c7c7\",\"#98df8a\",\"#9467bd\",\"#ffbb78\",\"#ff9896\",\"#e377c2\"],\"line_color\":[\"#ff9896\",\"#ff9896\",\"#ff9896\",\"#bcbd22\",\"#ff9896\",\"#c5b0d5\",\"#ffbb78\",\"#ff9896\",\"#7f7f7f\",\"#ff9896\",\"#ff9896\",\"#98df8a\",\"#2ca02c\",\"#ffbb78\",\"#98df8a\",\"#ff7f0e\",\"#98df8a\",\"#98df8a\",\"#2ca02c\",\"#98df8a\",\"#ff9896\",\"#ff9896\",\"#ff9896\",\"#7f7f7f\",\"#aec7e8\",\"#ff9896\",\"#98df8a\",\"#7f7f7f\",\"#98df8a\",\"#c5b0d5\",\"#ff9896\",\"#c49c94\",\"#ff9896\",\"#7f7f7f\",\"#98df8a\",\"#ff9896\",\"#c5b0d5\",\"#17becf\",\"#17becf\",\"#2ca02c\",\"#98df8a\",\"#ff9896\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#c49c94\",\"#c49c94\",\"#1f77b4\",\"#c5b0d5\",\"#c49c94\",\"#ff7f0e\",\"#c49c94\",\"#aec7e8\",\"#aec7e8\",\"#c49c94\",\"#c49c94\",\"#c49c94\",\"#c49c94\",\"#98df8a\",\"#c49c94\",\"#c49c94\",\"#ff7f0e\",\"#aec7e8\",\"#ffbb78\",\"#ff9896\",\"#c49c94\",\"#c49c94\",\"#c49c94\",\"#f7b6d2\",\"#7f7f7f\",\"#c7c7c7\",\"#2ca02c\",\"#ffbb78\",\"#c7c7c7\",\"#ffbb78\",\"#ffbb78\",\"#e377c2\",\"#ffbb78\",\"#ffbb78\",\"#bcbd22\",\"#2ca02c\",\"#98df8a\",\"#ffbb78\",\"#ffbb78\",\"#c7c7c7\",\"#ffbb78\",\"#98df8a\",\"#9467bd\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#ffbb78\",\"#8c564b\",\"#f7b6d2\",\"#8c564b\",\"#c7c7c7\",\"#ffbb78\",\"#ff7f0e\",\"#98df8a\",\"#ffbb78\",\"#ffbb78\",\"#2ca02c\",\"#bcbd22\",\"#9edae5\",\"#17becf\",\"#c7c7c7\",\"#9edae5\",\"#c7c7c7\",\"#ff9896\",\"#9edae5\",\"#c7c7c7\",\"#bcbd22\",\"#c7c7c7\",\"#17becf\",\"#ff9896\",\"#98df8a\",\"#9467bd\",\"#ff7f0e\",\"#98df8a\",\"#17becf\",\"#f7b6d2\",\"#c7c7c7\",\"#2ca02c\",\"#98df8a\",\"#c5b0d5\",\"#98df8a\",\"#98df8a\",\"#bcbd22\",\"#7f7f7f\",\"#7f7f7f\",\"#f7b6d2\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#aec7e8\",\"#7f7f7f\",\"#7f7f7f\",\"#c5b0d5\",\"#98df8a\",\"#c5b0d5\",\"#c5b0d5\",\"#9467bd\",\"#98df8a\",\"#c5b0d5\",\"#c5b0d5\",\"#98df8a\",\"#9467bd\",\"#aec7e8\",\"#c7c7c7\",\"#f7b6d2\",\"#9467bd\",\"#c7c7c7\",\"#17becf\",\"#f7b6d2\",\"#9467bd\",\"#f7b6d2\",\"#aec7e8\",\"#ff9896\",\"#98df8a\",\"#1f77b4\",\"#f7b6d2\",\"#c5b0d5\",\"#17becf\",\"#aec7e8\",\"#f7b6d2\",\"#98df8a\",\"#98df8a\",\"#7f7f7f\",\"#98df8a\",\"#c7c7c7\",\"#98df8a\",\"#c5b0d5\",\"#f7b6d2\",\"#17becf\",\"#8c564b\",\"#7f7f7f\",\"#f7b6d2\",\"#f7b6d2\",\"#98df8a\",\"#f7b6d2\",\"#d62728\",\"#ff9896\",\"#dbdb8d\",\"#f7b6d2\",\"#17becf\",\"#98df8a\",\"#f7b6d2\",\"#2ca02c\",\"#17becf\",\"#17becf\",\"#c7c7c7\",\"#2ca02c\",\"#98df8a\",\"#ffbb78\",\"#f7b6d2\",\"#ffbb78\",\"#98df8a\",\"#f7b6d2\",\"#98df8a\",\"#c5b0d5\",\"#c5b0d5\",\"#f7b6d2\",\"#f7b6d2\",\"#1f77b4\",\"#1f77b4\",\"#1f77b4\",\"#e377c2\",\"#e377c2\",\"#17becf\",\"#17becf\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#17becf\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#c5b0d5\",\"#f7b6d2\",\"#c5b0d5\",\"#ff9896\",\"#c5b0d5\",\"#c5b0d5\",\"#aec7e8\",\"#ff7f0e\",\"#98df8a\",\"#98df8a\",\"#bcbd22\",\"#7f7f7f\",\"#ff7f0e\",\"#ff7f0e\",\"#98df8a\",\"#ff7f0e\",\"#7f7f7f\",\"#bcbd22\",\"#ff7f0e\",\"#ff7f0e\",\"#17becf\",\"#9467bd\",\"#9467bd\",\"#ff7f0e\",\"#98df8a\",\"#9467bd\",\"#7f7f7f\",\"#9467bd\",\"#9467bd\",\"#9467bd\",\"#9467bd\",\"#ff7f0e\",\"#9467bd\",\"#c49c94\",\"#98df8a\",\"#98df8a\",\"#98df8a\",\"#7f7f7f\",\"#c7c7c7\",\"#bcbd22\",\"#c7c7c7\",\"#7f7f7f\",\"#17becf\",\"#7f7f7f\",\"#98df8a\",\"#c7c7c7\",\"#ff9896\",\"#f7b6d2\",\"#98df8a\",\"#8c564b\",\"#f7b6d2\",\"#8c564b\",\"#c5b0d5\",\"#ffbb78\",\"#f7b6d2\",\"#ffbb78\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#ffbb78\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#7f7f7f\",\"#f7b6d2\",\"#9467bd\",\"#9467bd\",\"#98df8a\",\"#98df8a\",\"#ffbb78\",\"#2ca02c\",\"#98df8a\",\"#c5b0d5\",\"#9467bd\",\"#bcbd22\",\"#17becf\",\"#98df8a\",\"#ff9896\",\"#9467bd\",\"#c7c7c7\",\"#7f7f7f\",\"#9467bd\",\"#c7c7c7\",\"#17becf\",\"#9467bd\",\"#9467bd\",\"#2ca02c\",\"#c7c7c7\",\"#17becf\",\"#ff9896\",\"#c5b0d5\",\"#9edae5\",\"#98df8a\",\"#7f7f7f\",\"#17becf\",\"#98df8a\",\"#7f7f7f\",\"#17becf\",\"#9edae5\",\"#ff7f0e\",\"#aec7e8\",\"#98df8a\",\"#17becf\",\"#98df8a\",\"#9467bd\",\"#c5b0d5\",\"#98df8a\",\"#c49c94\",\"#7f7f7f\",\"#8c564b\",\"#c7c7c7\",\"#dbdb8d\",\"#dbdb8d\",\"#dbdb8d\",\"#dbdb8d\",\"#dbdb8d\",\"#dbdb8d\",\"#ff9896\",\"#dbdb8d\",\"#17becf\",\"#d62728\",\"#c5b0d5\",\"#9edae5\",\"#aec7e8\",\"#d62728\",\"#7f7f7f\",\"#17becf\",\"#7f7f7f\",\"#ff7f0e\",\"#7f7f7f\",\"#c5b0d5\",\"#7f7f7f\",\"#17becf\",\"#ff7f0e\",\"#98df8a\",\"#17becf\",\"#e377c2\",\"#17becf\",\"#f7b6d2\",\"#98df8a\",\"#ffbb78\",\"#c7c7c7\",\"#17becf\",\"#17becf\",\"#ff7f0e\",\"#17becf\",\"#c7c7c7\",\"#98df8a\",\"#98df8a\",\"#17becf\",\"#bcbd22\",\"#f7b6d2\",\"#aec7e8\",\"#7f7f7f\",\"#aec7e8\",\"#bcbd22\",\"#8c564b\",\"#8c564b\",\"#8c564b\",\"#8c564b\",\"#9edae5\",\"#8c564b\",\"#f7b6d2\",\"#8c564b\",\"#ff7f0e\",\"#9467bd\",\"#aec7e8\",\"#9467bd\",\"#ff7f0e\",\"#c7c7c7\",\"#9467bd\",\"#d62728\",\"#c7c7c7\",\"#c7c7c7\",\"#c7c7c7\",\"#ffbb78\",\"#c7c7c7\",\"#c7c7c7\",\"#7f7f7f\",\"#c7c7c7\",\"#8c564b\",\"#2ca02c\",\"#dbdb8d\",\"#17becf\",\"#2ca02c\",\"#d62728\",\"#17becf\",\"#9edae5\",\"#98df8a\",\"#d62728\",\"#c7c7c7\",\"#c7c7c7\",\"#d62728\",\"#f7b6d2\",\"#c5b0d5\",\"#c7c7c7\",\"#d62728\",\"#9467bd\",\"#98df8a\",\"#17becf\",\"#f7b6d2\",\"#f7b6d2\",\"#7f7f7f\",\"#9467bd\",\"#e377c2\",\"#c7c7c7\",\"#9edae5\",\"#9edae5\",\"#9edae5\",\"#f7b6d2\",\"#c7c7c7\",\"#9467bd\",\"#ff7f0e\",\"#7f7f7f\",\"#7f7f7f\",\"#bcbd22\",\"#aec7e8\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#ffbb78\",\"#9467bd\",\"#ff7f0e\",\"#bcbd22\",\"#9467bd\",\"#c7c7c7\",\"#9467bd\",\"#8c564b\",\"#7f7f7f\",\"#ff7f0e\",\"#98df8a\",\"#98df8a\",\"#9edae5\",\"#ffbb78\",\"#7f7f7f\",\"#9467bd\",\"#f7b6d2\",\"#2ca02c\",\"#2ca02c\",\"#d62728\",\"#ff7f0e\",\"#98df8a\",\"#d62728\",\"#d62728\",\"#98df8a\",\"#98df8a\",\"#c5b0d5\",\"#98df8a\",\"#7f7f7f\",\"#98df8a\",\"#c5b0d5\",\"#f7b6d2\",\"#ffbb78\",\"#9467bd\",\"#c7c7c7\",\"#ffbb78\",\"#17becf\",\"#17becf\",\"#17becf\",\"#17becf\",\"#aec7e8\",\"#8c564b\",\"#17becf\",\"#17becf\",\"#9edae5\",\"#c7c7c7\",\"#9467bd\",\"#1f77b4\",\"#c7c7c7\",\"#c7c7c7\",\"#f7b6d2\",\"#f7b6d2\",\"#ffbb78\",\"#ffbb78\",\"#aec7e8\",\"#f7b6d2\",\"#f7b6d2\",\"#2ca02c\",\"#7f7f7f\",\"#c5b0d5\",\"#9467bd\",\"#ffbb78\",\"#9467bd\",\"#c7c7c7\",\"#f7b6d2\",\"#ffbb78\",\"#c5b0d5\",\"#7f7f7f\",\"#9edae5\",\"#f7b6d2\",\"#7f7f7f\",\"#98df8a\",\"#9467bd\",\"#ff7f0e\",\"#ffbb78\",\"#bcbd22\",\"#7f7f7f\",\"#bcbd22\",\"#ff7f0e\",\"#98df8a\",\"#f7b6d2\",\"#c7c7c7\",\"#c5b0d5\",\"#f7b6d2\",\"#98df8a\",\"#ffbb78\",\"#7f7f7f\",\"#f7b6d2\",\"#c7c7c7\",\"#f7b6d2\",\"#98df8a\",\"#bcbd22\",\"#8c564b\",\"#17becf\",\"#ff9896\",\"#c7c7c7\",\"#ff9896\",\"#ff9896\",\"#c7c7c7\",\"#c5b0d5\",\"#c49c94\",\"#9467bd\",\"#c7c7c7\",\"#7f7f7f\",\"#17becf\",\"#c7c7c7\",\"#aec7e8\",\"#c5b0d5\",\"#ff7f0e\",\"#aec7e8\",\"#ff9896\",\"#c7c7c7\",\"#7f7f7f\",\"#c49c94\",\"#7f7f7f\",\"#f7b6d2\",\"#98df8a\",\"#9467bd\",\"#9467bd\",\"#98df8a\",\"#c7c7c7\",\"#c7c7c7\",\"#9edae5\",\"#7f7f7f\",\"#17becf\",\"#7f7f7f\",\"#c5b0d5\",\"#7f7f7f\",\"#ff7f0e\",\"#ff7f0e\",\"#c5b0d5\",\"#ff7f0e\",\"#c5b0d5\",\"#8c564b\",\"#c49c94\",\"#8c564b\",\"#7f7f7f\",\"#aec7e8\",\"#7f7f7f\",\"#7f7f7f\",\"#9467bd\",\"#bcbd22\",\"#aec7e8\",\"#7f7f7f\",\"#aec7e8\",\"#c5b0d5\",\"#d62728\",\"#e377c2\",\"#c7c7c7\",\"#d62728\",\"#9467bd\",\"#ffbb78\",\"#ffbb78\",\"#8c564b\",\"#17becf\",\"#c7c7c7\",\"#17becf\",\"#c7c7c7\",\"#17becf\",\"#c7c7c7\",\"#7f7f7f\",\"#ff7f0e\",\"#98df8a\",\"#f7b6d2\",\"#7f7f7f\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#e377c2\",\"#e377c2\",\"#98df8a\",\"#c7c7c7\",\"#e377c2\",\"#c7c7c7\",\"#e377c2\",\"#c7c7c7\",\"#e377c2\",\"#c7c7c7\",\"#e377c2\",\"#e377c2\",\"#c7c7c7\",\"#e377c2\",\"#e377c2\",\"#9edae5\",\"#9edae5\",\"#bcbd22\",\"#bcbd22\",\"#f7b6d2\",\"#ffbb78\",\"#ffbb78\",\"#f7b6d2\",\"#9edae5\",\"#17becf\",\"#aec7e8\",\"#17becf\",\"#17becf\",\"#aec7e8\",\"#17becf\",\"#17becf\",\"#bcbd22\",\"#7f7f7f\",\"#17becf\",\"#ffbb78\",\"#aec7e8\",\"#7f7f7f\",\"#aec7e8\",\"#c7c7c7\",\"#17becf\",\"#1f77b4\",\"#1f77b4\",\"#1f77b4\",\"#bcbd22\",\"#17becf\",\"#c7c7c7\",\"#17becf\",\"#7f7f7f\",\"#c5b0d5\",\"#17becf\",\"#7f7f7f\",\"#98df8a\",\"#2ca02c\",\"#aec7e8\",\"#ffbb78\",\"#7f7f7f\",\"#17becf\",\"#7f7f7f\",\"#98df8a\",\"#c7c7c7\",\"#ffbb78\",\"#7f7f7f\",\"#c7c7c7\",\"#17becf\",\"#17becf\",\"#ff7f0e\",\"#98df8a\",\"#17becf\",\"#ffbb78\",\"#c5b0d5\",\"#ffbb78\",\"#bcbd22\",\"#bcbd22\",\"#1f77b4\",\"#c5b0d5\",\"#9467bd\",\"#9467bd\",\"#7f7f7f\",\"#9edae5\",\"#9edae5\",\"#f7b6d2\",\"#17becf\",\"#17becf\",\"#98df8a\",\"#98df8a\",\"#7f7f7f\",\"#98df8a\",\"#f7b6d2\",\"#dbdb8d\",\"#2ca02c\",\"#dbdb8d\",\"#dbdb8d\",\"#f7b6d2\",\"#dbdb8d\",\"#f7b6d2\",\"#f7b6d2\",\"#ffbb78\",\"#98df8a\",\"#8c564b\",\"#c5b0d5\",\"#ffbb78\",\"#ff7f0e\",\"#f7b6d2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#1f77b4\",\"#c7c7c7\",\"#e377c2\",\"#ff7f0e\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#c49c94\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#8c564b\",\"#c5b0d5\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#c5b0d5\",\"#c7c7c7\",\"#e377c2\",\"#ff7f0e\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#7f7f7f\",\"#c7c7c7\",\"#c7c7c7\",\"#bcbd22\",\"#f7b6d2\",\"#aec7e8\",\"#aec7e8\",\"#aec7e8\",\"#17becf\",\"#aec7e8\",\"#aec7e8\",\"#f7b6d2\",\"#bcbd22\",\"#17becf\",\"#17becf\",\"#17becf\",\"#c7c7c7\",\"#ff7f0e\",\"#ff7f0e\",\"#bcbd22\",\"#c5b0d5\",\"#c7c7c7\",\"#c7c7c7\",\"#c7c7c7\",\"#c7c7c7\",\"#c7c7c7\",\"#bcbd22\",\"#7f7f7f\",\"#c7c7c7\",\"#c7c7c7\",\"#17becf\",\"#9edae5\",\"#9edae5\",\"#c5b0d5\",\"#c5b0d5\",\"#9edae5\",\"#c5b0d5\",\"#7f7f7f\",\"#7f7f7f\",\"#ff7f0e\",\"#9467bd\",\"#98df8a\",\"#2ca02c\",\"#ffbb78\",\"#2ca02c\",\"#ffbb78\",\"#98df8a\",\"#8c564b\",\"#c7c7c7\",\"#c5b0d5\",\"#c5b0d5\",\"#f7b6d2\",\"#ff7f0e\",\"#bcbd22\",\"#98df8a\",\"#17becf\",\"#17becf\",\"#17becf\",\"#c49c94\",\"#7f7f7f\",\"#9467bd\",\"#ffbb78\",\"#ffbb78\",\"#ffbb78\",\"#7f7f7f\",\"#7f7f7f\",\"#9467bd\",\"#2ca02c\",\"#2ca02c\",\"#2ca02c\",\"#2ca02c\",\"#2ca02c\",\"#9edae5\",\"#9edae5\",\"#9edae5\",\"#9edae5\",\"#17becf\",\"#d62728\",\"#7f7f7f\",\"#d62728\",\"#98df8a\",\"#d62728\",\"#d62728\",\"#c7c7c7\",\"#c7c7c7\",\"#f7b6d2\",\"#98df8a\",\"#8c564b\",\"#1f77b4\",\"#8c564b\",\"#8c564b\",\"#c5b0d5\",\"#ffbb78\",\"#7f7f7f\",\"#ffbb78\",\"#ffbb78\",\"#2ca02c\",\"#98df8a\",\"#ffbb78\",\"#c5b0d5\",\"#c5b0d5\",\"#c7c7c7\",\"#c7c7c7\",\"#c7c7c7\",\"#c5b0d5\",\"#f7b6d2\",\"#f7b6d2\",\"#ffbb78\",\"#aec7e8\",\"#8c564b\",\"#2ca02c\",\"#ff7f0e\",\"#8c564b\",\"#7f7f7f\",\"#ffbb78\",\"#f7b6d2\",\"#8c564b\",\"#98df8a\",\"#c7c7c7\",\"#ffbb78\",\"#c5b0d5\",\"#c5b0d5\",\"#2ca02c\",\"#2ca02c\",\"#aec7e8\",\"#c5b0d5\",\"#aec7e8\",\"#aec7e8\",\"#8c564b\",\"#17becf\",\"#8c564b\",\"#aec7e8\",\"#7f7f7f\",\"#c49c94\",\"#1f77b4\",\"#ffbb78\",\"#f7b6d2\",\"#f7b6d2\",\"#aec7e8\",\"#aec7e8\",\"#c5b0d5\",\"#17becf\",\"#c7c7c7\",\"#1f77b4\",\"#f7b6d2\",\"#c7c7c7\",\"#8c564b\",\"#bcbd22\",\"#ff7f0e\",\"#f7b6d2\",\"#98df8a\",\"#ffbb78\",\"#f7b6d2\",\"#1f77b4\",\"#c7c7c7\",\"#8c564b\",\"#f7b6d2\",\"#8c564b\",\"#ffbb78\",\"#ffbb78\",\"#98df8a\",\"#17becf\",\"#17becf\",\"#ff7f0e\",\"#17becf\",\"#bcbd22\",\"#bcbd22\",\"#7f7f7f\",\"#2ca02c\",\"#17becf\",\"#9467bd\",\"#9467bd\",\"#7f7f7f\",\"#7f7f7f\",\"#1f77b4\",\"#9467bd\",\"#c49c94\",\"#7f7f7f\",\"#c49c94\",\"#c49c94\",\"#98df8a\",\"#9467bd\",\"#c49c94\",\"#9467bd\",\"#7f7f7f\",\"#c5b0d5\",\"#ffbb78\",\"#2ca02c\",\"#ffbb78\",\"#dbdb8d\",\"#2ca02c\",\"#2ca02c\",\"#17becf\",\"#98df8a\",\"#17becf\",\"#ffbb78\",\"#c5b0d5\",\"#c5b0d5\",\"#9edae5\",\"#2ca02c\",\"#2ca02c\",\"#ffbb78\",\"#c7c7c7\",\"#2ca02c\",\"#9edae5\",\"#9edae5\",\"#7f7f7f\",\"#9edae5\",\"#aec7e8\",\"#9edae5\",\"#aec7e8\",\"#aec7e8\",\"#aec7e8\",\"#aec7e8\",\"#aec7e8\",\"#98df8a\",\"#aec7e8\",\"#c5b0d5\",\"#d62728\",\"#9467bd\",\"#bcbd22\",\"#c7c7c7\",\"#7f7f7f\",\"#c7c7c7\",\"#9edae5\",\"#c7c7c7\",\"#9467bd\",\"#f7b6d2\",\"#9467bd\",\"#7f7f7f\",\"#c49c94\",\"#ff7f0e\",\"#c7c7c7\",\"#c7c7c7\",\"#c7c7c7\",\"#8c564b\",\"#ff7f0e\",\"#7f7f7f\",\"#ff7f0e\",\"#7f7f7f\",\"#7f7f7f\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#c5b0d5\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#c5b0d5\",\"#7f7f7f\",\"#c5b0d5\",\"#c5b0d5\",\"#17becf\",\"#ff7f0e\",\"#ff7f0e\",\"#bcbd22\",\"#c5b0d5\",\"#c5b0d5\",\"#bcbd22\",\"#7f7f7f\",\"#aec7e8\",\"#c7c7c7\",\"#d62728\",\"#17becf\",\"#c5b0d5\",\"#9467bd\",\"#98df8a\",\"#98df8a\",\"#dbdb8d\",\"#98df8a\",\"#98df8a\",\"#9467bd\",\"#ffbb78\",\"#ffbb78\",\"#9edae5\",\"#2ca02c\",\"#bcbd22\",\"#c7c7c7\",\"#9467bd\",\"#c7c7c7\",\"#17becf\",\"#17becf\",\"#7f7f7f\",\"#bcbd22\",\"#9467bd\",\"#9467bd\",\"#f7b6d2\",\"#f7b6d2\",\"#c7c7c7\",\"#e377c2\",\"#c7c7c7\",\"#ffbb78\",\"#98df8a\",\"#f7b6d2\",\"#c7c7c7\",\"#ff7f0e\",\"#9edae5\",\"#9edae5\",\"#c5b0d5\",\"#bcbd22\",\"#c7c7c7\",\"#c49c94\",\"#8c564b\",\"#ffbb78\",\"#c7c7c7\",\"#c5b0d5\",\"#98df8a\",\"#2ca02c\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#c7c7c7\",\"#2ca02c\",\"#bcbd22\",\"#c7c7c7\",\"#7f7f7f\",\"#dbdb8d\",\"#f7b6d2\",\"#ff7f0e\",\"#c5b0d5\",\"#c5b0d5\",\"#c7c7c7\",\"#8c564b\",\"#c7c7c7\",\"#98df8a\",\"#9edae5\",\"#9edae5\",\"#ff7f0e\",\"#f7b6d2\",\"#f7b6d2\",\"#17becf\",\"#ff7f0e\",\"#9467bd\",\"#8c564b\",\"#c5b0d5\",\"#aec7e8\",\"#bcbd22\",\"#ff7f0e\",\"#c7c7c7\",\"#17becf\",\"#ff7f0e\",\"#c7c7c7\",\"#ff7f0e\",\"#ffbb78\",\"#f7b6d2\",\"#c7c7c7\",\"#e377c2\",\"#c7c7c7\",\"#e377c2\",\"#e377c2\",\"#c7c7c7\",\"#c7c7c7\",\"#dbdb8d\",\"#c7c7c7\",\"#c7c7c7\",\"#c7c7c7\",\"#7f7f7f\",\"#bcbd22\",\"#9467bd\",\"#9467bd\",\"#f7b6d2\",\"#f7b6d2\",\"#c49c94\",\"#c49c94\",\"#c49c94\",\"#c49c94\",\"#9467bd\",\"#e377c2\",\"#9467bd\",\"#7f7f7f\",\"#98df8a\",\"#9467bd\",\"#ffbb78\",\"#f7b6d2\",\"#c7c7c7\",\"#17becf\",\"#17becf\",\"#98df8a\",\"#17becf\",\"#98df8a\",\"#2ca02c\",\"#aec7e8\",\"#aec7e8\",\"#17becf\",\"#f7b6d2\",\"#98df8a\",\"#bcbd22\",\"#98df8a\",\"#9467bd\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#98df8a\",\"#c5b0d5\",\"#7f7f7f\",\"#98df8a\",\"#ff7f0e\",\"#c49c94\",\"#9467bd\",\"#7f7f7f\",\"#7f7f7f\",\"#98df8a\",\"#c5b0d5\",\"#9467bd\",\"#98df8a\",\"#1f77b4\",\"#1f77b4\",\"#c7c7c7\",\"#8c564b\",\"#f7b6d2\",\"#98df8a\",\"#f7b6d2\",\"#bcbd22\",\"#8c564b\",\"#f7b6d2\",\"#ffbb78\",\"#ffbb78\",\"#c5b0d5\",\"#bcbd22\",\"#ff7f0e\",\"#bcbd22\",\"#7f7f7f\",\"#17becf\",\"#7f7f7f\",\"#17becf\",\"#c5b0d5\",\"#7f7f7f\",\"#c7c7c7\",\"#7f7f7f\",\"#9edae5\",\"#98df8a\",\"#c5b0d5\",\"#9467bd\",\"#9467bd\",\"#98df8a\",\"#e377c2\",\"#8c564b\",\"#9edae5\",\"#f7b6d2\",\"#9467bd\",\"#f7b6d2\",\"#98df8a\",\"#aec7e8\",\"#f7b6d2\",\"#c7c7c7\",\"#9edae5\",\"#ff7f0e\",\"#9edae5\",\"#9467bd\",\"#bcbd22\",\"#98df8a\",\"#f7b6d2\",\"#17becf\",\"#7f7f7f\",\"#17becf\",\"#ff7f0e\",\"#7f7f7f\",\"#17becf\",\"#aec7e8\",\"#c7c7c7\",\"#ff7f0e\",\"#aec7e8\",\"#ff7f0e\",\"#f7b6d2\",\"#aec7e8\",\"#f7b6d2\",\"#ff7f0e\",\"#f7b6d2\",\"#7f7f7f\",\"#f7b6d2\",\"#7f7f7f\",\"#ff7f0e\",\"#ffbb78\",\"#ffbb78\",\"#f7b6d2\",\"#7f7f7f\",\"#ffbb78\",\"#c7c7c7\",\"#c49c94\",\"#7f7f7f\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#7f7f7f\",\"#1f77b4\",\"#f7b6d2\",\"#17becf\",\"#f7b6d2\",\"#8c564b\",\"#9467bd\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#9467bd\",\"#9467bd\",\"#9467bd\",\"#aec7e8\",\"#9467bd\",\"#aec7e8\",\"#9467bd\",\"#c5b0d5\",\"#9467bd\",\"#aec7e8\",\"#ff7f0e\",\"#aec7e8\",\"#c5b0d5\",\"#bcbd22\",\"#c7c7c7\",\"#c7c7c7\",\"#f7b6d2\",\"#ff7f0e\",\"#8c564b\",\"#7f7f7f\",\"#ffbb78\",\"#8c564b\",\"#d62728\",\"#9467bd\",\"#ffbb78\",\"#ff7f0e\",\"#7f7f7f\",\"#9467bd\",\"#c5b0d5\",\"#c5b0d5\",\"#7f7f7f\",\"#c5b0d5\",\"#8c564b\",\"#8c564b\",\"#17becf\",\"#f7b6d2\",\"#7f7f7f\",\"#98df8a\",\"#f7b6d2\",\"#f7b6d2\",\"#2ca02c\",\"#ffbb78\",\"#7f7f7f\",\"#7f7f7f\",\"#c7c7c7\",\"#ff7f0e\",\"#7f7f7f\",\"#c5b0d5\",\"#aec7e8\",\"#c5b0d5\",\"#1f77b4\",\"#7f7f7f\",\"#bcbd22\",\"#7f7f7f\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#aec7e8\",\"#17becf\",\"#17becf\",\"#17becf\",\"#98df8a\",\"#f7b6d2\",\"#f7b6d2\",\"#8c564b\",\"#8c564b\",\"#c7c7c7\",\"#98df8a\",\"#c7c7c7\",\"#ffbb78\",\"#ff7f0e\",\"#7f7f7f\",\"#98df8a\",\"#f7b6d2\",\"#ffbb78\",\"#9467bd\",\"#9edae5\",\"#9467bd\",\"#f7b6d2\",\"#7f7f7f\",\"#98df8a\",\"#ff7f0e\",\"#98df8a\",\"#8c564b\",\"#9467bd\",\"#e377c2\",\"#7f7f7f\",\"#bcbd22\",\"#ff7f0e\",\"#aec7e8\",\"#7f7f7f\",\"#7f7f7f\",\"#1f77b4\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#1f77b4\",\"#17becf\",\"#7f7f7f\",\"#7f7f7f\",\"#bcbd22\",\"#bcbd22\",\"#bcbd22\",\"#2ca02c\",\"#8c564b\",\"#bcbd22\",\"#bcbd22\",\"#c5b0d5\",\"#c7c7c7\",\"#bcbd22\",\"#c5b0d5\",\"#c5b0d5\",\"#bcbd22\",\"#7f7f7f\",\"#f7b6d2\",\"#f7b6d2\",\"#98df8a\",\"#f7b6d2\",\"#98df8a\",\"#8c564b\",\"#c5b0d5\",\"#c7c7c7\",\"#98df8a\",\"#98df8a\",\"#bcbd22\",\"#9467bd\",\"#c7c7c7\",\"#c5b0d5\",\"#c49c94\",\"#c49c94\",\"#f7b6d2\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#c7c7c7\",\"#e377c2\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#e377c2\",\"#ff9896\",\"#2ca02c\",\"#c5b0d5\",\"#e377c2\",\"#c7c7c7\",\"#ff7f0e\",\"#c7c7c7\",\"#98df8a\",\"#7f7f7f\",\"#9467bd\",\"#ff7f0e\",\"#c7c7c7\",\"#ff7f0e\",\"#f7b6d2\",\"#bcbd22\",\"#98df8a\",\"#7f7f7f\",\"#9467bd\",\"#ffbb78\",\"#8c564b\",\"#8c564b\",\"#98df8a\",\"#7f7f7f\",\"#ff7f0e\",\"#aec7e8\",\"#bcbd22\",\"#bcbd22\",\"#bcbd22\",\"#bcbd22\",\"#bcbd22\",\"#17becf\",\"#c5b0d5\",\"#f7b6d2\",\"#c5b0d5\",\"#9467bd\",\"#f7b6d2\",\"#9467bd\",\"#9467bd\",\"#ff7f0e\",\"#7f7f7f\",\"#c7c7c7\",\"#7f7f7f\",\"#c7c7c7\",\"#17becf\",\"#8c564b\",\"#ff7f0e\",\"#9467bd\",\"#9467bd\",\"#9467bd\",\"#9467bd\",\"#9467bd\",\"#ffbb78\",\"#2ca02c\",\"#bcbd22\",\"#9edae5\",\"#c7c7c7\",\"#17becf\",\"#9edae5\",\"#98df8a\",\"#c7c7c7\",\"#1f77b4\",\"#ff7f0e\",\"#8c564b\",\"#f7b6d2\",\"#98df8a\",\"#f7b6d2\",\"#7f7f7f\",\"#98df8a\",\"#9467bd\",\"#bcbd22\",\"#bcbd22\",\"#7f7f7f\",\"#7f7f7f\",\"#9467bd\",\"#9467bd\",\"#ff7f0e\",\"#17becf\",\"#9467bd\",\"#98df8a\",\"#98df8a\",\"#98df8a\",\"#98df8a\",\"#7f7f7f\",\"#98df8a\",\"#2ca02c\",\"#c7c7c7\",\"#7f7f7f\",\"#7f7f7f\",\"#8c564b\",\"#8c564b\",\"#8c564b\",\"#8c564b\",\"#98df8a\",\"#7f7f7f\",\"#98df8a\",\"#98df8a\",\"#c7c7c7\",\"#9467bd\",\"#17becf\",\"#8c564b\",\"#bcbd22\",\"#1f77b4\",\"#7f7f7f\",\"#98df8a\",\"#c5b0d5\",\"#bcbd22\",\"#98df8a\",\"#ff7f0e\",\"#c5b0d5\",\"#ffbb78\",\"#c7c7c7\",\"#bcbd22\",\"#c5b0d5\",\"#c5b0d5\",\"#9edae5\",\"#9edae5\",\"#9467bd\",\"#7f7f7f\",\"#ffbb78\",\"#dbdb8d\",\"#98df8a\",\"#c7c7c7\",\"#9edae5\",\"#17becf\",\"#17becf\",\"#c5b0d5\",\"#8c564b\",\"#7f7f7f\",\"#aec7e8\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#8c564b\",\"#7f7f7f\",\"#98df8a\",\"#bcbd22\",\"#9edae5\",\"#c5b0d5\",\"#ff9896\",\"#98df8a\",\"#bcbd22\",\"#c5b0d5\",\"#17becf\",\"#9467bd\",\"#aec7e8\",\"#9467bd\",\"#f7b6d2\",\"#c5b0d5\",\"#c7c7c7\",\"#c7c7c7\",\"#9467bd\",\"#7f7f7f\",\"#f7b6d2\",\"#7f7f7f\",\"#bcbd22\",\"#7f7f7f\",\"#f7b6d2\",\"#c5b0d5\",\"#98df8a\",\"#f7b6d2\",\"#7f7f7f\",\"#17becf\",\"#1f77b4\",\"#98df8a\",\"#c5b0d5\",\"#7f7f7f\",\"#bcbd22\",\"#c5b0d5\",\"#7f7f7f\",\"#17becf\",\"#98df8a\",\"#c7c7c7\",\"#8c564b\",\"#7f7f7f\",\"#aec7e8\",\"#c5b0d5\",\"#aec7e8\",\"#bcbd22\",\"#aec7e8\",\"#ff7f0e\",\"#9edae5\",\"#8c564b\",\"#bcbd22\",\"#f7b6d2\",\"#aec7e8\",\"#17becf\",\"#aec7e8\",\"#ff7f0e\",\"#8c564b\",\"#17becf\",\"#1f77b4\",\"#7f7f7f\",\"#c5b0d5\",\"#9edae5\",\"#bcbd22\",\"#bcbd22\",\"#1f77b4\",\"#ffbb78\",\"#ff7f0e\",\"#17becf\",\"#f7b6d2\",\"#c7c7c7\",\"#f7b6d2\",\"#c5b0d5\",\"#7f7f7f\",\"#e377c2\",\"#f7b6d2\",\"#98df8a\",\"#8c564b\",\"#17becf\",\"#9467bd\",\"#98df8a\",\"#9467bd\",\"#f7b6d2\",\"#c7c7c7\",\"#c7c7c7\",\"#f7b6d2\",\"#c7c7c7\",\"#ff7f0e\",\"#c5b0d5\",\"#ff7f0e\",\"#8c564b\",\"#8c564b\",\"#f7b6d2\",\"#ff9896\",\"#7f7f7f\",\"#ffbb78\",\"#7f7f7f\",\"#aec7e8\",\"#ff7f0e\",\"#c5b0d5\",\"#c5b0d5\",\"#aec7e8\",\"#aec7e8\",\"#9edae5\",\"#98df8a\",\"#c5b0d5\",\"#17becf\",\"#bcbd22\",\"#7f7f7f\",\"#7f7f7f\",\"#f7b6d2\",\"#c5b0d5\",\"#bcbd22\",\"#98df8a\",\"#7f7f7f\",\"#7f7f7f\",\"#8c564b\",\"#c5b0d5\",\"#98df8a\",\"#9edae5\",\"#ff7f0e\",\"#7f7f7f\",\"#c49c94\",\"#c7c7c7\",\"#98df8a\",\"#aec7e8\",\"#c5b0d5\",\"#8c564b\",\"#7f7f7f\",\"#9467bd\",\"#9467bd\",\"#8c564b\",\"#7f7f7f\",\"#f7b6d2\",\"#9467bd\",\"#9467bd\",\"#aec7e8\",\"#7f7f7f\",\"#c49c94\",\"#c7c7c7\",\"#c49c94\",\"#7f7f7f\",\"#7f7f7f\",\"#c49c94\",\"#7f7f7f\",\"#1f77b4\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#ff7f0e\",\"#9467bd\",\"#d62728\",\"#9467bd\",\"#9467bd\",\"#f7b6d2\",\"#c7c7c7\",\"#f7b6d2\",\"#9467bd\",\"#17becf\",\"#8c564b\",\"#7f7f7f\",\"#7f7f7f\",\"#c49c94\",\"#17becf\",\"#bcbd22\",\"#aec7e8\",\"#8c564b\",\"#aec7e8\",\"#aec7e8\",\"#1f77b4\",\"#ffbb78\",\"#c7c7c7\",\"#ffbb78\",\"#f7b6d2\",\"#1f77b4\",\"#98df8a\",\"#aec7e8\",\"#ff7f0e\",\"#ffbb78\",\"#ffbb78\",\"#98df8a\",\"#98df8a\",\"#e377c2\",\"#f7b6d2\",\"#9467bd\",\"#bcbd22\",\"#ffbb78\",\"#9467bd\",\"#bcbd22\",\"#8c564b\",\"#ffbb78\",\"#ffbb78\",\"#8c564b\",\"#7f7f7f\",\"#8c564b\",\"#2ca02c\",\"#ffbb78\",\"#c7c7c7\",\"#9467bd\",\"#9467bd\",\"#9467bd\",\"#bcbd22\",\"#bcbd22\",\"#9edae5\",\"#17becf\",\"#bcbd22\",\"#ffbb78\",\"#bcbd22\",\"#bcbd22\",\"#ffbb78\",\"#2ca02c\",\"#bcbd22\",\"#bcbd22\",\"#8c564b\",\"#f7b6d2\",\"#c7c7c7\",\"#7f7f7f\",\"#ffbb78\",\"#ffbb78\",\"#9467bd\",\"#98df8a\",\"#8c564b\",\"#9edae5\",\"#bcbd22\",\"#ff7f0e\",\"#f7b6d2\",\"#7f7f7f\",\"#7f7f7f\",\"#c5b0d5\",\"#7f7f7f\",\"#d62728\",\"#98df8a\",\"#98df8a\",\"#98df8a\",\"#7f7f7f\",\"#c5b0d5\",\"#98df8a\",\"#7f7f7f\",\"#98df8a\",\"#c5b0d5\",\"#c5b0d5\",\"#98df8a\",\"#f7b6d2\",\"#c5b0d5\",\"#aec7e8\",\"#f7b6d2\",\"#f7b6d2\",\"#ff7f0e\",\"#9edae5\",\"#9edae5\",\"#7f7f7f\",\"#c5b0d5\",\"#98df8a\",\"#7f7f7f\",\"#9467bd\",\"#bcbd22\",\"#bcbd22\",\"#98df8a\",\"#9edae5\",\"#7f7f7f\",\"#f7b6d2\",\"#7f7f7f\",\"#ff7f0e\",\"#7f7f7f\",\"#f7b6d2\",\"#ff7f0e\",\"#ff7f0e\",\"#bcbd22\",\"#9467bd\",\"#bcbd22\",\"#bcbd22\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#ff7f0e\",\"#ffbb78\",\"#ff7f0e\",\"#9467bd\",\"#7f7f7f\",\"#f7b6d2\",\"#ff7f0e\",\"#c7c7c7\",\"#8c564b\",\"#c7c7c7\",\"#98df8a\",\"#98df8a\",\"#c7c7c7\",\"#f7b6d2\",\"#d62728\",\"#7f7f7f\",\"#9467bd\",\"#ff7f0e\",\"#98df8a\",\"#1f77b4\",\"#1f77b4\",\"#9467bd\",\"#98df8a\",\"#2ca02c\",\"#bcbd22\",\"#98df8a\",\"#bcbd22\",\"#8c564b\",\"#c5b0d5\",\"#17becf\",\"#9467bd\",\"#aec7e8\",\"#17becf\",\"#aec7e8\",\"#ff9896\",\"#9467bd\",\"#f7b6d2\",\"#ffbb78\",\"#c5b0d5\",\"#f7b6d2\",\"#2ca02c\",\"#d62728\",\"#c7c7c7\",\"#c5b0d5\",\"#7f7f7f\",\"#f7b6d2\",\"#f7b6d2\",\"#c7c7c7\",\"#ffbb78\",\"#7f7f7f\",\"#ffbb78\",\"#17becf\",\"#d62728\",\"#aec7e8\",\"#bcbd22\",\"#7f7f7f\",\"#c5b0d5\",\"#8c564b\",\"#c5b0d5\",\"#7f7f7f\",\"#ffbb78\",\"#ffbb78\",\"#f7b6d2\",\"#ff7f0e\",\"#c5b0d5\",\"#c49c94\",\"#c49c94\",\"#bcbd22\",\"#c7c7c7\",\"#7f7f7f\",\"#f7b6d2\",\"#ff7f0e\",\"#ffbb78\",\"#f7b6d2\",\"#17becf\",\"#bcbd22\",\"#c7c7c7\",\"#bcbd22\",\"#f7b6d2\",\"#f7b6d2\",\"#17becf\",\"#7f7f7f\",\"#f7b6d2\",\"#f7b6d2\",\"#98df8a\",\"#aec7e8\",\"#c5b0d5\",\"#c7c7c7\",\"#c7c7c7\",\"#7f7f7f\",\"#2ca02c\",\"#98df8a\",\"#f7b6d2\",\"#8c564b\",\"#c7c7c7\",\"#ffbb78\",\"#ffbb78\",\"#c5b0d5\",\"#ff7f0e\",\"#2ca02c\",\"#aec7e8\",\"#9467bd\",\"#2ca02c\",\"#2ca02c\",\"#ffbb78\",\"#bcbd22\",\"#bcbd22\",\"#bcbd22\",\"#17becf\",\"#9edae5\",\"#dbdb8d\",\"#7f7f7f\",\"#9467bd\",\"#17becf\",\"#bcbd22\",\"#17becf\",\"#c5b0d5\",\"#17becf\",\"#17becf\",\"#17becf\",\"#17becf\",\"#c7c7c7\",\"#8c564b\",\"#9467bd\",\"#c7c7c7\",\"#1f77b4\",\"#f7b6d2\",\"#9edae5\",\"#9edae5\",\"#f7b6d2\",\"#c7c7c7\",\"#f7b6d2\",\"#7f7f7f\",\"#98df8a\",\"#98df8a\",\"#c7c7c7\",\"#c7c7c7\",\"#c5b0d5\",\"#7f7f7f\",\"#c7c7c7\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#9467bd\",\"#7f7f7f\",\"#c7c7c7\",\"#f7b6d2\",\"#8c564b\",\"#8c564b\",\"#8c564b\",\"#aec7e8\",\"#8c564b\",\"#8c564b\",\"#8c564b\",\"#f7b6d2\",\"#17becf\",\"#ff7f0e\",\"#8c564b\",\"#ff7f0e\",\"#ff7f0e\",\"#7f7f7f\",\"#d62728\",\"#d62728\",\"#d62728\",\"#f7b6d2\",\"#f7b6d2\",\"#d62728\",\"#7f7f7f\",\"#d62728\",\"#7f7f7f\",\"#7f7f7f\",\"#9467bd\",\"#9467bd\",\"#7f7f7f\",\"#7f7f7f\",\"#98df8a\",\"#ffbb78\",\"#c5b0d5\",\"#d62728\",\"#e377c2\",\"#c5b0d5\",\"#9467bd\",\"#9edae5\",\"#9edae5\",\"#e377c2\",\"#aec7e8\",\"#7f7f7f\",\"#98df8a\",\"#9467bd\",\"#f7b6d2\",\"#c5b0d5\",\"#17becf\",\"#9467bd\",\"#bcbd22\",\"#c5b0d5\",\"#98df8a\",\"#c5b0d5\",\"#c5b0d5\",\"#ffbb78\",\"#98df8a\",\"#7f7f7f\",\"#f7b6d2\",\"#c5b0d5\",\"#c7c7c7\",\"#c7c7c7\",\"#c5b0d5\",\"#8c564b\",\"#98df8a\",\"#e377c2\",\"#9467bd\",\"#7f7f7f\",\"#9467bd\",\"#9467bd\",\"#7f7f7f\",\"#98df8a\",\"#f7b6d2\",\"#ff9896\",\"#8c564b\",\"#98df8a\",\"#98df8a\",\"#c7c7c7\",\"#c5b0d5\",\"#ff7f0e\",\"#ffbb78\",\"#9467bd\",\"#c5b0d5\",\"#98df8a\",\"#f7b6d2\",\"#7f7f7f\",\"#9467bd\",\"#1f77b4\",\"#c7c7c7\",\"#98df8a\",\"#17becf\",\"#ffbb78\",\"#98df8a\",\"#f7b6d2\",\"#98df8a\",\"#aec7e8\",\"#c7c7c7\",\"#aec7e8\",\"#aec7e8\",\"#c5b0d5\",\"#7f7f7f\",\"#8c564b\",\"#9467bd\",\"#17becf\",\"#d62728\",\"#f7b6d2\",\"#1f77b4\",\"#ff7f0e\",\"#9467bd\",\"#98df8a\",\"#ffbb78\",\"#aec7e8\",\"#1f77b4\",\"#8c564b\",\"#7f7f7f\",\"#98df8a\",\"#98df8a\",\"#9edae5\",\"#2ca02c\",\"#7f7f7f\",\"#c5b0d5\",\"#17becf\",\"#17becf\",\"#d62728\",\"#9467bd\",\"#f7b6d2\",\"#d62728\",\"#f7b6d2\",\"#bcbd22\",\"#7f7f7f\",\"#ff7f0e\",\"#7f7f7f\",\"#ff7f0e\",\"#ff7f0e\",\"#dbdb8d\",\"#d62728\",\"#7f7f7f\",\"#ff7f0e\",\"#c5b0d5\",\"#c5b0d5\",\"#f7b6d2\",\"#f7b6d2\",\"#ff7f0e\",\"#c5b0d5\",\"#98df8a\",\"#c5b0d5\",\"#c5b0d5\",\"#c7c7c7\",\"#e377c2\",\"#ffbb78\",\"#c7c7c7\",\"#c49c94\",\"#c7c7c7\",\"#9467bd\",\"#c5b0d5\",\"#7f7f7f\",\"#7f7f7f\",\"#ffbb78\",\"#f7b6d2\",\"#ff7f0e\",\"#aec7e8\",\"#aec7e8\",\"#ffbb78\",\"#17becf\",\"#c7c7c7\",\"#17becf\",\"#7f7f7f\",\"#7f7f7f\",\"#9467bd\",\"#c7c7c7\",\"#8c564b\",\"#bcbd22\",\"#bcbd22\",\"#ffbb78\",\"#ffbb78\",\"#ffbb78\",\"#f7b6d2\",\"#98df8a\",\"#bcbd22\",\"#c7c7c7\",\"#c7c7c7\",\"#bcbd22\",\"#17becf\",\"#ffbb78\",\"#98df8a\",\"#d62728\",\"#f7b6d2\",\"#e377c2\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#c5b0d5\",\"#c5b0d5\",\"#f7b6d2\",\"#c7c7c7\",\"#f7b6d2\",\"#c7c7c7\",\"#f7b6d2\",\"#f7b6d2\",\"#2ca02c\",\"#bcbd22\",\"#bcbd22\",\"#ff7f0e\",\"#9467bd\",\"#98df8a\",\"#17becf\",\"#98df8a\",\"#98df8a\",\"#9467bd\",\"#7f7f7f\",\"#bcbd22\",\"#ff7f0e\",\"#c5b0d5\",\"#c5b0d5\",\"#7f7f7f\",\"#f7b6d2\",\"#bcbd22\",\"#f7b6d2\",\"#ffbb78\",\"#98df8a\",\"#8c564b\",\"#98df8a\",\"#7f7f7f\",\"#aec7e8\",\"#bcbd22\",\"#c49c94\",\"#9467bd\",\"#98df8a\",\"#f7b6d2\",\"#d62728\",\"#d62728\",\"#d62728\",\"#c5b0d5\",\"#7f7f7f\",\"#7f7f7f\",\"#bcbd22\",\"#bcbd22\",\"#ffbb78\",\"#ff7f0e\",\"#98df8a\",\"#7f7f7f\",\"#17becf\",\"#17becf\",\"#9467bd\",\"#c7c7c7\",\"#9467bd\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#e377c2\",\"#d62728\",\"#8c564b\",\"#c7c7c7\",\"#c5b0d5\",\"#7f7f7f\",\"#c7c7c7\",\"#bcbd22\",\"#7f7f7f\",\"#8c564b\",\"#9467bd\",\"#7f7f7f\",\"#7f7f7f\",\"#8c564b\",\"#98df8a\",\"#8c564b\",\"#8c564b\",\"#c5b0d5\",\"#7f7f7f\",\"#2ca02c\",\"#bcbd22\",\"#17becf\",\"#c5b0d5\",\"#c5b0d5\",\"#dbdb8d\",\"#dbdb8d\",\"#c49c94\",\"#c7c7c7\",\"#7f7f7f\",\"#17becf\",\"#ffbb78\",\"#f7b6d2\",\"#c49c94\",\"#c49c94\",\"#c49c94\",\"#9467bd\",\"#9467bd\",\"#c7c7c7\",\"#98df8a\",\"#98df8a\",\"#17becf\",\"#98df8a\",\"#98df8a\",\"#9467bd\",\"#ffbb78\",\"#7f7f7f\",\"#8c564b\",\"#2ca02c\",\"#2ca02c\",\"#7f7f7f\",\"#c7c7c7\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#9467bd\",\"#ffbb78\",\"#ff7f0e\",\"#bcbd22\",\"#9467bd\",\"#9467bd\",\"#7f7f7f\",\"#8c564b\",\"#17becf\",\"#c7c7c7\",\"#17becf\",\"#7f7f7f\",\"#9467bd\",\"#ff7f0e\",\"#bcbd22\",\"#9467bd\",\"#17becf\",\"#17becf\",\"#aec7e8\",\"#98df8a\",\"#9467bd\",\"#98df8a\",\"#bcbd22\",\"#ffbb78\",\"#f7b6d2\",\"#f7b6d2\",\"#98df8a\",\"#c7c7c7\",\"#f7b6d2\",\"#7f7f7f\",\"#9467bd\",\"#c49c94\",\"#7f7f7f\",\"#ffbb78\",\"#9467bd\",\"#9467bd\",\"#1f77b4\",\"#f7b6d2\",\"#c49c94\",\"#ff7f0e\",\"#2ca02c\",\"#c5b0d5\",\"#7f7f7f\",\"#c5b0d5\",\"#f7b6d2\",\"#f7b6d2\",\"#9467bd\",\"#ff7f0e\",\"#8c564b\",\"#8c564b\",\"#98df8a\",\"#ffbb78\",\"#ffbb78\",\"#e377c2\",\"#f7b6d2\",\"#bcbd22\",\"#7f7f7f\",\"#9467bd\",\"#7f7f7f\",\"#7f7f7f\",\"#d62728\",\"#c5b0d5\",\"#2ca02c\",\"#f7b6d2\",\"#8c564b\",\"#17becf\",\"#d62728\",\"#7f7f7f\",\"#7f7f7f\",\"#8c564b\",\"#ffbb78\",\"#c49c94\",\"#9467bd\",\"#17becf\",\"#c5b0d5\",\"#9467bd\",\"#9467bd\",\"#7f7f7f\",\"#98df8a\",\"#8c564b\",\"#ffbb78\",\"#ffbb78\",\"#9467bd\",\"#17becf\",\"#c7c7c7\",\"#ffbb78\",\"#7f7f7f\",\"#98df8a\",\"#98df8a\",\"#98df8a\",\"#7f7f7f\",\"#17becf\",\"#f7b6d2\",\"#f7b6d2\",\"#bcbd22\",\"#7f7f7f\",\"#7f7f7f\",\"#bcbd22\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#17becf\",\"#7f7f7f\",\"#ff7f0e\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#f7b6d2\",\"#9467bd\",\"#ff7f0e\",\"#ff7f0e\",\"#ffbb78\",\"#7f7f7f\",\"#c5b0d5\",\"#7f7f7f\",\"#c5b0d5\",\"#bcbd22\",\"#17becf\",\"#f7b6d2\",\"#c5b0d5\",\"#c5b0d5\",\"#7f7f7f\",\"#2ca02c\",\"#c5b0d5\",\"#98df8a\",\"#c7c7c7\",\"#f7b6d2\",\"#c5b0d5\",\"#ffbb78\",\"#bcbd22\",\"#c5b0d5\",\"#9edae5\",\"#c5b0d5\",\"#f7b6d2\",\"#f7b6d2\",\"#f7b6d2\",\"#bcbd22\",\"#aec7e8\",\"#17becf\",\"#7f7f7f\",\"#c5b0d5\",\"#ffbb78\",\"#bcbd22\",\"#ff9896\",\"#c5b0d5\",\"#9467bd\",\"#7f7f7f\",\"#f7b6d2\",\"#98df8a\",\"#8c564b\",\"#ffbb78\",\"#ff7f0e\",\"#7f7f7f\",\"#c49c94\",\"#2ca02c\",\"#c7c7c7\",\"#bcbd22\",\"#c7c7c7\",\"#98df8a\",\"#c5b0d5\",\"#9467bd\",\"#ffbb78\",\"#7f7f7f\",\"#17becf\",\"#dbdb8d\",\"#dbdb8d\",\"#7f7f7f\",\"#c49c94\",\"#8c564b\",\"#7f7f7f\",\"#c7c7c7\",\"#c5b0d5\",\"#9467bd\",\"#c5b0d5\",\"#1f77b4\",\"#d62728\",\"#9467bd\",\"#c5b0d5\",\"#9467bd\",\"#c5b0d5\",\"#7f7f7f\",\"#7f7f7f\",\"#f7b6d2\",\"#c5b0d5\",\"#2ca02c\",\"#17becf\",\"#2ca02c\",\"#f7b6d2\",\"#bcbd22\",\"#9edae5\",\"#9467bd\",\"#f7b6d2\",\"#2ca02c\",\"#f7b6d2\",\"#9edae5\",\"#bcbd22\",\"#bcbd22\",\"#9edae5\",\"#17becf\",\"#f7b6d2\",\"#9467bd\",\"#f7b6d2\",\"#7f7f7f\",\"#f7b6d2\",\"#17becf\",\"#aec7e8\",\"#aec7e8\",\"#7f7f7f\",\"#bcbd22\",\"#f7b6d2\",\"#ff7f0e\",\"#c7c7c7\",\"#98df8a\",\"#aec7e8\",\"#8c564b\",\"#9edae5\",\"#bcbd22\",\"#8c564b\",\"#c5b0d5\",\"#c5b0d5\",\"#d62728\",\"#c5b0d5\",\"#7f7f7f\",\"#c5b0d5\",\"#ffbb78\",\"#c7c7c7\",\"#f7b6d2\",\"#98df8a\",\"#8c564b\",\"#7f7f7f\",\"#c5b0d5\",\"#ff7f0e\",\"#c7c7c7\",\"#ffbb78\",\"#f7b6d2\",\"#17becf\",\"#c5b0d5\",\"#7f7f7f\",\"#7f7f7f\",\"#bcbd22\",\"#7f7f7f\",\"#9edae5\",\"#aec7e8\",\"#9467bd\",\"#7f7f7f\",\"#17becf\",\"#bcbd22\",\"#c7c7c7\",\"#17becf\",\"#7f7f7f\",\"#c7c7c7\",\"#dbdb8d\",\"#dbdb8d\",\"#9edae5\",\"#bcbd22\",\"#9edae5\",\"#ffbb78\",\"#f7b6d2\",\"#9467bd\",\"#c7c7c7\",\"#8c564b\",\"#8c564b\",\"#7f7f7f\",\"#f7b6d2\",\"#bcbd22\",\"#ff7f0e\",\"#f7b6d2\",\"#9edae5\",\"#d62728\",\"#bcbd22\",\"#c7c7c7\",\"#c7c7c7\",\"#f7b6d2\",\"#ff7f0e\",\"#ffbb78\",\"#c49c94\",\"#c49c94\",\"#9467bd\",\"#c7c7c7\",\"#1f77b4\",\"#bcbd22\",\"#aec7e8\",\"#f7b6d2\",\"#f7b6d2\",\"#ff7f0e\",\"#f7b6d2\",\"#c5b0d5\",\"#c5b0d5\",\"#9467bd\",\"#9edae5\",\"#c5b0d5\",\"#c5b0d5\",\"#ff7f0e\",\"#9467bd\",\"#ffbb78\",\"#7f7f7f\",\"#17becf\",\"#98df8a\",\"#c7c7c7\",\"#bcbd22\",\"#ffbb78\",\"#e377c2\",\"#c5b0d5\",\"#2ca02c\",\"#f7b6d2\",\"#1f77b4\",\"#bcbd22\",\"#17becf\",\"#17becf\",\"#f7b6d2\",\"#f7b6d2\",\"#9edae5\",\"#17becf\",\"#9467bd\",\"#f7b6d2\",\"#7f7f7f\",\"#7f7f7f\",\"#9467bd\",\"#9edae5\",\"#f7b6d2\",\"#c5b0d5\",\"#c5b0d5\",\"#c7c7c7\",\"#f7b6d2\",\"#dbdb8d\",\"#ffbb78\",\"#ffbb78\",\"#9edae5\",\"#7f7f7f\",\"#e377c2\",\"#9467bd\",\"#8c564b\",\"#f7b6d2\",\"#9edae5\",\"#d62728\",\"#bcbd22\",\"#7f7f7f\",\"#bcbd22\",\"#f7b6d2\",\"#98df8a\",\"#f7b6d2\",\"#c5b0d5\",\"#f7b6d2\",\"#f7b6d2\",\"#c7c7c7\",\"#8c564b\",\"#8c564b\",\"#f7b6d2\",\"#f7b6d2\",\"#e377c2\",\"#98df8a\",\"#98df8a\",\"#9467bd\",\"#7f7f7f\",\"#17becf\",\"#f7b6d2\",\"#c5b0d5\",\"#17becf\",\"#7f7f7f\",\"#8c564b\",\"#8c564b\",\"#1f77b4\",\"#98df8a\",\"#aec7e8\",\"#bcbd22\",\"#7f7f7f\",\"#8c564b\",\"#98df8a\",\"#c7c7c7\",\"#7f7f7f\",\"#7f7f7f\",\"#9467bd\",\"#ff7f0e\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#9467bd\",\"#f7b6d2\",\"#c5b0d5\",\"#7f7f7f\",\"#ffbb78\",\"#c7c7c7\",\"#98df8a\",\"#f7b6d2\",\"#c7c7c7\",\"#c49c94\",\"#d62728\",\"#9467bd\",\"#9467bd\",\"#7f7f7f\",\"#9edae5\",\"#8c564b\",\"#f7b6d2\",\"#e377c2\",\"#8c564b\",\"#9467bd\",\"#7f7f7f\",\"#e377c2\",\"#c49c94\",\"#c7c7c7\",\"#ff7f0e\",\"#c7c7c7\",\"#c49c94\",\"#ff7f0e\",\"#8c564b\",\"#98df8a\",\"#7f7f7f\",\"#c7c7c7\",\"#c7c7c7\",\"#17becf\",\"#f7b6d2\",\"#9467bd\",\"#98df8a\",\"#17becf\",\"#c5b0d5\",\"#c5b0d5\",\"#7f7f7f\",\"#8c564b\",\"#ffbb78\",\"#9467bd\",\"#1f77b4\",\"#9467bd\",\"#ffbb78\",\"#f7b6d2\",\"#e377c2\",\"#c7c7c7\",\"#f7b6d2\",\"#aec7e8\",\"#9edae5\",\"#8c564b\",\"#ffbb78\",\"#7f7f7f\",\"#2ca02c\",\"#98df8a\",\"#bcbd22\",\"#98df8a\",\"#9467bd\",\"#98df8a\",\"#c5b0d5\",\"#7f7f7f\",\"#c5b0d5\",\"#8c564b\",\"#c5b0d5\",\"#bcbd22\",\"#ff7f0e\",\"#7f7f7f\",\"#ffbb78\",\"#f7b6d2\",\"#2ca02c\",\"#f7b6d2\",\"#2ca02c\",\"#f7b6d2\",\"#ffbb78\",\"#ffbb78\",\"#8c564b\",\"#8c564b\",\"#8c564b\",\"#98df8a\",\"#ffbb78\",\"#98df8a\",\"#bcbd22\",\"#2ca02c\",\"#17becf\",\"#8c564b\",\"#c5b0d5\",\"#ffbb78\",\"#ff7f0e\",\"#9467bd\",\"#9467bd\",\"#98df8a\",\"#8c564b\",\"#ff7f0e\",\"#bcbd22\",\"#d62728\",\"#7f7f7f\",\"#98df8a\",\"#d62728\",\"#d62728\",\"#98df8a\",\"#d62728\",\"#7f7f7f\",\"#ff7f0e\",\"#ffbb78\",\"#c7c7c7\",\"#c7c7c7\",\"#f7b6d2\",\"#2ca02c\",\"#c5b0d5\",\"#ff7f0e\",\"#17becf\",\"#bcbd22\",\"#c49c94\",\"#2ca02c\",\"#bcbd22\",\"#ff7f0e\",\"#d62728\",\"#9467bd\",\"#8c564b\",\"#f7b6d2\",\"#8c564b\",\"#98df8a\",\"#8c564b\",\"#8c564b\",\"#8c564b\",\"#98df8a\",\"#ff7f0e\",\"#7f7f7f\",\"#bcbd22\",\"#1f77b4\",\"#9467bd\",\"#7f7f7f\",\"#9edae5\",\"#2ca02c\",\"#9467bd\",\"#9467bd\",\"#ffbb78\",\"#c5b0d5\",\"#9467bd\",\"#c7c7c7\",\"#9467bd\",\"#c5b0d5\",\"#ff7f0e\",\"#17becf\",\"#98df8a\",\"#17becf\",\"#c7c7c7\",\"#9467bd\",\"#ff7f0e\",\"#c49c94\",\"#f7b6d2\",\"#2ca02c\",\"#f7b6d2\",\"#ffbb78\",\"#bcbd22\",\"#7f7f7f\",\"#98df8a\",\"#c7c7c7\",\"#c5b0d5\",\"#9467bd\",\"#98df8a\",\"#98df8a\",\"#c5b0d5\",\"#7f7f7f\",\"#8c564b\",\"#bcbd22\",\"#bcbd22\",\"#bcbd22\",\"#c7c7c7\",\"#ff7f0e\",\"#2ca02c\",\"#bcbd22\",\"#7f7f7f\",\"#c7c7c7\",\"#9edae5\",\"#7f7f7f\",\"#c5b0d5\",\"#c49c94\",\"#c7c7c7\",\"#7f7f7f\",\"#17becf\",\"#9edae5\",\"#17becf\",\"#ffbb78\",\"#7f7f7f\",\"#f7b6d2\",\"#7f7f7f\",\"#7f7f7f\",\"#c5b0d5\",\"#c5b0d5\",\"#d62728\",\"#c5b0d5\",\"#f7b6d2\",\"#17becf\",\"#9467bd\",\"#c5b0d5\",\"#c5b0d5\",\"#1f77b4\",\"#7f7f7f\",\"#98df8a\",\"#2ca02c\",\"#c7c7c7\",\"#ffbb78\",\"#ffbb78\",\"#9467bd\",\"#ffbb78\",\"#7f7f7f\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#1f77b4\",\"#1f77b4\",\"#7f7f7f\",\"#7f7f7f\",\"#f7b6d2\",\"#c49c94\",\"#7f7f7f\",\"#9467bd\",\"#8c564b\",\"#c7c7c7\",\"#8c564b\",\"#c7c7c7\",\"#bcbd22\",\"#98df8a\",\"#c5b0d5\",\"#9edae5\",\"#c49c94\",\"#bcbd22\",\"#1f77b4\",\"#ff7f0e\",\"#ffbb78\",\"#ffbb78\",\"#d62728\",\"#8c564b\",\"#c5b0d5\",\"#d62728\",\"#ffbb78\",\"#9edae5\",\"#9467bd\",\"#f7b6d2\",\"#98df8a\",\"#c49c94\",\"#9edae5\",\"#98df8a\",\"#98df8a\",\"#9edae5\",\"#aec7e8\",\"#9467bd\",\"#c7c7c7\",\"#7f7f7f\",\"#c5b0d5\",\"#98df8a\",\"#2ca02c\",\"#98df8a\",\"#dbdb8d\",\"#9467bd\",\"#e377c2\",\"#9467bd\",\"#9467bd\",\"#98df8a\",\"#98df8a\",\"#9edae5\",\"#8c564b\",\"#17becf\",\"#7f7f7f\",\"#f7b6d2\",\"#7f7f7f\",\"#9edae5\",\"#8c564b\",\"#7f7f7f\",\"#98df8a\",\"#17becf\",\"#7f7f7f\",\"#98df8a\",\"#c5b0d5\",\"#ffbb78\",\"#17becf\",\"#9edae5\",\"#9edae5\",\"#d62728\",\"#ffbb78\",\"#8c564b\",\"#c7c7c7\",\"#7f7f7f\",\"#9467bd\",\"#ffbb78\",\"#1f77b4\",\"#1f77b4\",\"#c5b0d5\",\"#c5b0d5\",\"#2ca02c\",\"#8c564b\",\"#f7b6d2\",\"#bcbd22\",\"#2ca02c\",\"#9467bd\",\"#ffbb78\",\"#bcbd22\",\"#ffbb78\",\"#9467bd\",\"#c7c7c7\",\"#d62728\",\"#98df8a\",\"#ff7f0e\",\"#8c564b\",\"#7f7f7f\",\"#bcbd22\",\"#f7b6d2\",\"#c49c94\",\"#98df8a\",\"#c5b0d5\",\"#d62728\",\"#9edae5\",\"#17becf\",\"#bcbd22\",\"#bcbd22\",\"#f7b6d2\",\"#8c564b\",\"#e377c2\",\"#e377c2\",\"#ffbb78\",\"#98df8a\",\"#98df8a\",\"#c5b0d5\",\"#8c564b\",\"#bcbd22\",\"#f7b6d2\",\"#98df8a\",\"#8c564b\",\"#7f7f7f\",\"#17becf\",\"#c7c7c7\",\"#ffbb78\",\"#e377c2\",\"#ff7f0e\",\"#17becf\",\"#c5b0d5\",\"#8c564b\",\"#17becf\",\"#ff7f0e\",\"#2ca02c\",\"#9edae5\",\"#ffbb78\",\"#8c564b\",\"#bcbd22\",\"#ff7f0e\",\"#ffbb78\",\"#ffbb78\",\"#ffbb78\",\"#c5b0d5\",\"#c5b0d5\",\"#17becf\",\"#98df8a\",\"#f7b6d2\",\"#98df8a\",\"#bcbd22\",\"#c5b0d5\",\"#2ca02c\",\"#ffbb78\",\"#98df8a\",\"#ff7f0e\",\"#ff7f0e\",\"#e377c2\",\"#bcbd22\",\"#98df8a\",\"#7f7f7f\",\"#8c564b\",\"#98df8a\",\"#7f7f7f\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#bcbd22\",\"#2ca02c\",\"#1f77b4\",\"#ff7f0e\",\"#ffbb78\",\"#17becf\",\"#98df8a\",\"#f7b6d2\",\"#f7b6d2\",\"#c5b0d5\",\"#8c564b\",\"#7f7f7f\",\"#e377c2\",\"#f7b6d2\",\"#98df8a\",\"#ff7f0e\",\"#c5b0d5\",\"#9467bd\",\"#dbdb8d\",\"#7f7f7f\",\"#bcbd22\",\"#d62728\",\"#8c564b\",\"#c5b0d5\",\"#f7b6d2\",\"#98df8a\",\"#17becf\",\"#2ca02c\",\"#ff7f0e\",\"#9467bd\",\"#c5b0d5\",\"#c5b0d5\",\"#98df8a\",\"#bcbd22\",\"#9467bd\",\"#c7c7c7\",\"#e377c2\",\"#e377c2\",\"#17becf\",\"#9467bd\",\"#9467bd\",\"#c5b0d5\",\"#ffbb78\",\"#98df8a\",\"#ffbb78\",\"#8c564b\",\"#f7b6d2\",\"#98df8a\",\"#2ca02c\",\"#ff7f0e\",\"#7f7f7f\",\"#7f7f7f\",\"#ffbb78\",\"#ff7f0e\",\"#9467bd\",\"#c7c7c7\",\"#8c564b\",\"#1f77b4\",\"#7f7f7f\",\"#d62728\",\"#c7c7c7\",\"#9467bd\",\"#9edae5\",\"#1f77b4\",\"#c7c7c7\",\"#9edae5\",\"#98df8a\",\"#c5b0d5\",\"#e377c2\",\"#7f7f7f\",\"#bcbd22\",\"#8c564b\",\"#f7b6d2\",\"#98df8a\",\"#8c564b\",\"#98df8a\",\"#c5b0d5\",\"#98df8a\",\"#bcbd22\",\"#98df8a\",\"#8c564b\",\"#ff7f0e\",\"#98df8a\",\"#ff7f0e\",\"#c5b0d5\",\"#ffbb78\",\"#bcbd22\",\"#98df8a\",\"#c7c7c7\",\"#f7b6d2\",\"#c7c7c7\",\"#d62728\",\"#d62728\",\"#c5b0d5\",\"#ff9896\",\"#ff7f0e\",\"#9467bd\",\"#2ca02c\",\"#ff7f0e\",\"#98df8a\",\"#9edae5\",\"#f7b6d2\",\"#aec7e8\",\"#98df8a\",\"#98df8a\",\"#8c564b\",\"#17becf\",\"#1f77b4\",\"#ff7f0e\",\"#8c564b\",\"#7f7f7f\",\"#98df8a\",\"#c49c94\",\"#c49c94\",\"#17becf\",\"#ffbb78\",\"#9467bd\",\"#98df8a\",\"#8c564b\",\"#8c564b\",\"#8c564b\",\"#bcbd22\",\"#c5b0d5\",\"#c5b0d5\",\"#7f7f7f\",\"#98df8a\",\"#c5b0d5\",\"#f7b6d2\",\"#bcbd22\",\"#9467bd\",\"#98df8a\",\"#98df8a\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#f7b6d2\",\"#c5b0d5\",\"#ffbb78\",\"#c5b0d5\",\"#c7c7c7\",\"#98df8a\",\"#98df8a\",\"#bcbd22\",\"#f7b6d2\",\"#aec7e8\",\"#7f7f7f\",\"#d62728\",\"#ff7f0e\",\"#c49c94\",\"#f7b6d2\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#c49c94\",\"#f7b6d2\",\"#98df8a\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#c5b0d5\",\"#f7b6d2\",\"#f7b6d2\",\"#98df8a\",\"#d62728\",\"#7f7f7f\",\"#c7c7c7\",\"#bcbd22\",\"#7f7f7f\",\"#c49c94\",\"#9467bd\",\"#c7c7c7\",\"#ffbb78\",\"#7f7f7f\",\"#17becf\",\"#ffbb78\",\"#ff7f0e\",\"#98df8a\",\"#8c564b\",\"#ffbb78\",\"#ffbb78\",\"#c5b0d5\",\"#9467bd\",\"#c5b0d5\",\"#d62728\",\"#98df8a\",\"#c7c7c7\",\"#ff7f0e\",\"#f7b6d2\",\"#7f7f7f\",\"#ffbb78\",\"#f7b6d2\",\"#ffbb78\",\"#dbdb8d\",\"#7f7f7f\",\"#98df8a\",\"#bcbd22\",\"#9edae5\",\"#f7b6d2\",\"#9edae5\",\"#7f7f7f\",\"#98df8a\",\"#f7b6d2\",\"#c5b0d5\",\"#8c564b\",\"#2ca02c\",\"#c5b0d5\",\"#c49c94\",\"#f7b6d2\",\"#9467bd\",\"#aec7e8\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#d62728\",\"#c7c7c7\",\"#7f7f7f\",\"#d62728\",\"#7f7f7f\",\"#c7c7c7\",\"#7f7f7f\",\"#9467bd\",\"#ff7f0e\",\"#c5b0d5\",\"#ffbb78\",\"#7f7f7f\",\"#17becf\",\"#7f7f7f\",\"#f7b6d2\",\"#bcbd22\",\"#c7c7c7\",\"#8c564b\",\"#2ca02c\",\"#bcbd22\",\"#7f7f7f\",\"#f7b6d2\",\"#17becf\",\"#bcbd22\",\"#9467bd\",\"#7f7f7f\",\"#8c564b\",\"#9edae5\",\"#ffbb78\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#c5b0d5\",\"#c7c7c7\",\"#bcbd22\",\"#ffbb78\",\"#9467bd\",\"#c5b0d5\",\"#ff7f0e\",\"#bcbd22\",\"#bcbd22\",\"#7f7f7f\",\"#8c564b\",\"#ff7f0e\",\"#d62728\",\"#d62728\",\"#f7b6d2\",\"#c5b0d5\",\"#9edae5\",\"#d62728\",\"#8c564b\",\"#8c564b\",\"#7f7f7f\",\"#8c564b\",\"#bcbd22\",\"#c7c7c7\",\"#c5b0d5\",\"#17becf\",\"#c5b0d5\",\"#d62728\",\"#f7b6d2\",\"#bcbd22\",\"#ff7f0e\",\"#c49c94\",\"#c5b0d5\",\"#2ca02c\",\"#bcbd22\",\"#7f7f7f\",\"#c7c7c7\",\"#ff7f0e\",\"#17becf\",\"#9467bd\",\"#7f7f7f\",\"#c49c94\",\"#f7b6d2\",\"#7f7f7f\",\"#7f7f7f\",\"#f7b6d2\",\"#7f7f7f\",\"#f7b6d2\",\"#98df8a\",\"#ff7f0e\",\"#c5b0d5\",\"#7f7f7f\",\"#7f7f7f\",\"#8c564b\",\"#7f7f7f\",\"#7f7f7f\",\"#7f7f7f\",\"#8c564b\",\"#c7c7c7\",\"#aec7e8\",\"#bcbd22\",\"#c5b0d5\",\"#98df8a\",\"#bcbd22\",\"#e377c2\",\"#9edae5\",\"#8c564b\",\"#98df8a\",\"#c49c94\",\"#f7b6d2\",\"#17becf\",\"#ff9896\",\"#9467bd\",\"#7f7f7f\",\"#ffbb78\",\"#9467bd\",\"#ffbb78\",\"#ffbb78\",\"#ffbb78\",\"#98df8a\",\"#f7b6d2\",\"#c5b0d5\",\"#c49c94\",\"#9edae5\",\"#d62728\",\"#ffbb78\",\"#17becf\",\"#f7b6d2\",\"#c7c7c7\",\"#bcbd22\",\"#9edae5\",\"#c5b0d5\",\"#ff7f0e\",\"#98df8a\",\"#c7c7c7\",\"#c7c7c7\",\"#7f7f7f\",\"#e377c2\",\"#17becf\",\"#c5b0d5\",\"#9edae5\",\"#9467bd\",\"#98df8a\",\"#ffbb78\",\"#f7b6d2\",\"#98df8a\",\"#bcbd22\",\"#bcbd22\",\"#ff7f0e\",\"#98df8a\",\"#7f7f7f\",\"#8c564b\",\"#9467bd\",\"#ff9896\",\"#9467bd\",\"#c5b0d5\",\"#17becf\",\"#c49c94\",\"#c7c7c7\",\"#9467bd\",\"#98df8a\",\"#c49c94\",\"#c7c7c7\",\"#e377c2\",\"#98df8a\",\"#7f7f7f\",\"#ffbb78\",\"#c49c94\",\"#c49c94\",\"#ffbb78\",\"#9467bd\",\"#c5b0d5\",\"#1f77b4\",\"#c5b0d5\",\"#f7b6d2\",\"#2ca02c\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#d62728\",\"#e377c2\",\"#ff9896\",\"#f7b6d2\",\"#aec7e8\",\"#17becf\",\"#7f7f7f\",\"#ff7f0e\",\"#9467bd\",\"#d62728\",\"#ffbb78\",\"#ffbb78\",\"#17becf\",\"#c5b0d5\",\"#c7c7c7\",\"#c7c7c7\",\"#bcbd22\",\"#98df8a\",\"#7f7f7f\",\"#aec7e8\",\"#c7c7c7\",\"#d62728\",\"#d62728\",\"#8c564b\",\"#c49c94\",\"#98df8a\",\"#9edae5\",\"#bcbd22\",\"#e377c2\",\"#c5b0d5\",\"#9edae5\",\"#1f77b4\",\"#aec7e8\",\"#c5b0d5\",\"#1f77b4\",\"#7f7f7f\",\"#c5b0d5\",\"#bcbd22\",\"#98df8a\",\"#d62728\",\"#c7c7c7\",\"#9467bd\",\"#c7c7c7\",\"#17becf\",\"#c7c7c7\",\"#98df8a\",\"#f7b6d2\",\"#f7b6d2\",\"#c7c7c7\",\"#c5b0d5\",\"#8c564b\",\"#c5b0d5\",\"#c7c7c7\",\"#ffbb78\",\"#c7c7c7\",\"#7f7f7f\",\"#c7c7c7\",\"#c7c7c7\",\"#ff9896\",\"#c49c94\",\"#ffbb78\",\"#c7c7c7\",\"#ffbb78\",\"#c7c7c7\",\"#9467bd\",\"#c5b0d5\",\"#9edae5\",\"#f7b6d2\",\"#ffbb78\",\"#aec7e8\",\"#dbdb8d\",\"#f7b6d2\",\"#c7c7c7\",\"#aec7e8\",\"#c5b0d5\",\"#c7c7c7\",\"#d62728\",\"#f7b6d2\",\"#ffbb78\",\"#ff9896\",\"#c5b0d5\",\"#c5b0d5\",\"#c7c7c7\",\"#ffbb78\",\"#bcbd22\",\"#17becf\",\"#c7c7c7\",\"#17becf\",\"#17becf\",\"#c7c7c7\",\"#1f77b4\",\"#1f77b4\",\"#1f77b4\",\"#17becf\",\"#9edae5\",\"#f7b6d2\",\"#8c564b\",\"#c7c7c7\",\"#2ca02c\",\"#f7b6d2\",\"#c7c7c7\",\"#f7b6d2\",\"#9467bd\",\"#c5b0d5\",\"#c5b0d5\",\"#9467bd\",\"#ff7f0e\",\"#7f7f7f\",\"#7f7f7f\",\"#ff7f0e\",\"#2ca02c\",\"#e377c2\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#ff7f0e\",\"#98df8a\",\"#7f7f7f\",\"#7f7f7f\",\"#98df8a\",\"#7f7f7f\",\"#ffbb78\",\"#ff7f0e\",\"#7f7f7f\",\"#7f7f7f\",\"#ffbb78\",\"#98df8a\",\"#ff7f0e\",\"#c7c7c7\",\"#98df8a\",\"#98df8a\",\"#ff7f0e\",\"#7f7f7f\",\"#ff7f0e\",\"#ff7f0e\",\"#17becf\",\"#7f7f7f\",\"#8c564b\",\"#17becf\",\"#17becf\",\"#c7c7c7\",\"#ff7f0e\",\"#ff7f0e\",\"#ff7f0e\",\"#98df8a\",\"#98df8a\",\"#ffbb78\",\"#7f7f7f\",\"#2ca02c\",\"#c7c7c7\",\"#2ca02c\",\"#8c564b\",\"#c7c7c7\",\"#e377c2\",\"#1f77b4\",\"#9467bd\",\"#9467bd\",\"#17becf\",\"#c49c94\",\"#ffbb78\",\"#98df8a\",\"#ffbb78\",\"#9467bd\",\"#ff7f0e\",\"#8c564b\",\"#98df8a\",\"#9467bd\",\"#f7b6d2\",\"#98df8a\",\"#aec7e8\",\"#7f7f7f\",\"#7f7f7f\",\"#17becf\",\"#7f7f7f\",\"#7f7f7f\",\"#ff7f0e\",\"#98df8a\",\"#7f7f7f\",\"#8c564b\",\"#7f7f7f\",\"#ff7f0e\",\"#ff7f0e\",\"#c5b0d5\",\"#9467bd\",\"#7f7f7f\",\"#9467bd\",\"#f7b6d2\",\"#ff9896\",\"#ffbb78\",\"#ff7f0e\",\"#dbdb8d\",\"#9467bd\",\"#98df8a\",\"#ffbb78\",\"#ff7f0e\",\"#c5b0d5\",\"#9467bd\",\"#7f7f7f\",\"#c5b0d5\",\"#9467bd\",\"#17becf\",\"#f7b6d2\",\"#aec7e8\",\"#2ca02c\",\"#9467bd\",\"#98df8a\",\"#ffbb78\",\"#f7b6d2\",\"#c5b0d5\",\"#f7b6d2\",\"#f7b6d2\",\"#ffbb78\",\"#ffbb78\",\"#7f7f7f\",\"#c7c7c7\",\"#9467bd\",\"#9467bd\",\"#c7c7c7\",\"#ff7f0e\",\"#c7c7c7\",\"#ffbb78\",\"#f7b6d2\",\"#8c564b\",\"#9467bd\",\"#7f7f7f\",\"#c5b0d5\",\"#ffbb78\",\"#ffbb78\",\"#c7c7c7\",\"#ff9896\",\"#17becf\",\"#c7c7c7\",\"#98df8a\",\"#c5b0d5\",\"#c7c7c7\",\"#f7b6d2\",\"#c7c7c7\",\"#e377c2\",\"#c7c7c7\",\"#2ca02c\",\"#ffbb78\",\"#f7b6d2\",\"#7f7f7f\",\"#2ca02c\",\"#c7c7c7\",\"#c7c7c7\",\"#7f7f7f\",\"#ffbb78\",\"#8c564b\",\"#7f7f7f\",\"#f7b6d2\",\"#8c564b\",\"#98df8a\",\"#17becf\",\"#ffbb78\",\"#c7c7c7\",\"#c7c7c7\",\"#17becf\",\"#7f7f7f\",\"#9467bd\",\"#c7c7c7\",\"#2ca02c\",\"#ffbb78\",\"#c5b0d5\",\"#ffbb78\",\"#9edae5\",\"#c49c94\",\"#c7c7c7\",\"#f7b6d2\",\"#ffbb78\",\"#ffbb78\",\"#17becf\",\"#f7b6d2\",\"#9467bd\",\"#c7c7c7\",\"#17becf\",\"#c49c94\",\"#7f7f7f\",\"#ffbb78\",\"#c5b0d5\",\"#9467bd\",\"#ffbb78\",\"#f7b6d2\",\"#bcbd22\",\"#9edae5\",\"#2ca02c\",\"#ffbb78\",\"#f7b6d2\",\"#e377c2\",\"#ff9896\",\"#f7b6d2\",\"#c7c7c7\",\"#ffbb78\",\"#2ca02c\",\"#ff9896\",\"#f7b6d2\",\"#c7c7c7\",\"#98df8a\",\"#9467bd\",\"#ffbb78\",\"#ff9896\",\"#e377c2\"],\"radius\":[0.0027977201141253043,0.0027542916980299293,0.003078004559499757,0.0021813266680005042,0.0031660867302898154,0.002236901235343754,0.0014159758378145283,0.0030001485471154274,0.001569290294715015,0.0030994893116858815,0.0029940821952178396,0.00246256741991733,0.001958381377931942,0.001814790541483043,0.002122698416826821,0.0021648695132190604,0.0019776866322171785,0.0017810834211972031,0.002622310453279757,0.001823263202385782,0.002921984473284021,0.002944494327933271,0.002708586565790018,0.0015901827692249206,0.0018105686598236064,0.0028636822718780854,0.001831565749974122,0.0022694822325660816,0.0023597945757726797,0.00229554037544755,0.002820811746853136,0.0018341537797615076,0.002732544391639849,0.0015198235121205844,0.0027167671346476404,0.0028922069349240397,0.00172349379404195,0.0022788296231500216,0.001925684858762334,0.0025579887896443844,0.002672552434970732,0.002801705451701005,0.0015628684217314254,0.0014737250572356346,0.002388626118709245,0.0016765574101374043,0.0015745138710349421,0.0017697309170431011,0.0018050858678294729,0.0018977335706067962,0.002187218854094791,0.002281902731633402,0.0021380558101603024,0.002227606493039086,0.0013295466539166528,0.0014529460705110663,0.0020634552687804992,0.0020082513751758495,0.0019608810164539474,0.0015136915068923117,0.0018863296370678533,0.0021051582711388117,0.002077721903680461,0.002061599557713113,0.0027348404695737086,0.001894295939221045,0.001367428524041534,0.0014459928388236248,0.002127478598456015,0.0011097019137919658,0.0017760708105462968,0.0027627793740995182,0.0019907853435072475,0.0015911490766479395,0.0022398852436364743,0.00231854972532486,0.0025033519731813476,0.0017879867424271999,0.002492941035869735,0.0020919513769367816,0.0024956760037709385,0.001859136351508684,0.00233479645804675,0.0024226775076204164,0.0021425754182906745,0.0021407189102005493,0.002362227471808173,0.002010341022953415,0.0015911490766479395,0.0022367916263828,0.0022507410998582637,0.0021318604814258364,0.0017240493179859694,0.002255696879096371,0.0019372373816449852,0.002158395605837424,0.002347274254477402,0.002066145386418427,0.0024670944750810843,0.002131283090661887,0.001941692368945849,0.002508534823485794,0.0011511484326014198,0.001501871209237209,0.002145894233440295,0.0015748581075625727,0.0017948352201828358,0.002367428524041534,0.002050915298685114,0.0015635904918640975,0.0020012296222202113,0.0015101159886145923,0.0020605522440622463,0.002031431474284558,0.002362487613750113,0.0024432304584186887,0.002372531920919354,0.001797575411359757,0.002153268039767209,0.0019334736857312168,0.0015765719364395493,0.0023172508850706464,0.002441130615306299,0.002311775615341875,0.0022296480548899427,0.001875049736317722,0.0017785901777853138,0.0018725693226004211,0.0016318604814258362,0.0021771482292076245,0.0021023749546149003,0.0016506469742893634,0.0018734652220269927,0.0020851273613196487,0.0015014047703450968,0.002092631233680629,0.0012739760316291208,0.002099481427837994,0.0023053168310327365,0.0011144167545305364,0.0017435799078810259,0.0015946593459025776,0.0013266669886780136,0.0020635454259519646,0.0022100797574673226,0.0016213200757605331,0.0014557849367043062,0.001993394001479639,0.0016783534907461371,0.0013117274532639008,0.0015211174121405318,0.0019517293285340783,0.002270017541434511,0.002208629709505978,0.0022814114804554503,0.002142218259233946,0.0020221903687334336,0.0021561983141801977,0.0024185430825837116,0.002043682474228363,0.0021537950348791105,0.0022553520617991664,0.002112696246138767,0.002186490178787251,0.0022033459951640508,0.0016393417258430117,0.0024729708348661156,0.0016903511762170916,0.0019854191908003993,0.001847357335102524,0.0022271960923019936,0.0016458302246089623,0.0019344008687829642,0.0017940070362177645,0.001590505303375873,0.0019368560188791069,0.0022465668925472364,0.002356138491017121,0.002309290747386788,0.002195430628551525,0.0020475188647502487,0.002219921834229301,0.001813263874935464,0.0015189570276748648,0.0018362507335182357,0.002203144318344946,0.0021048927700132686,0.0023746422266433696,0.0017777040004671966,0.001986352975171962,0.0022259147919329904,0.0024800661070132064,0.001996451743184393,0.0018745556963381213,0.002278755973046534,0.0017894003218863817,0.0021376256388138523,0.0020406777440324696,0.001443629682961998,0.001693311889463065,0.0016536401561790817,0.001998941010002766,0.0019326206156836045,0.00162469880826491,0.002346455762342164,0.001799745300183603,0.001525380807051097,0.0018368299898173686,0.0017822478262498873,0.0016678378778156614,0.0014057713712727876,0.001478907352085896,0.0013854804925473925,0.0016645440020120897,0.0014985869743459493,0.0015051111893744904,0.00160152978969033,0.0019163917679882667,0.0013505479680686703,0.0013624876137501131,0.001657573972729652,0.0019121151398737966,0.0017509685923199324,0.0014251244642305406,0.0023374511378879896,0.0012512991066997827,0.002183662611824872,0.0020413706816114125,0.0014646504265652387,0.0024218359777445977,0.0023440676603151737,0.0014351707995512255,0.0019896236033461827,0.0019072436020378988,0.002249849740204813,0.0018490129476119842,0.0012247880257051796,0.0021581220399699355,0.001369861420077027,0.001484481765934753,0.0015128025995084719,0.0021708565937130844,0.0011491362938846573,0.001189925225399799,0.001909306818187733,0.001978008475624193,0.002195586832004494,0.0015145771402083898,0.0017877030265553665,0.0015101159886145923,0.001292481250360578,0.0021731531648820504,0.0013899750004807707,0.001585621265992073,0.0021882406705053246,0.00201073432698184,0.0022325443916398494,0.001972675059176345,0.0019143048847836506,0.0012473026295440428,0.0019013882901278984,0.0023602280188051317,0.00165684126772343,0.00205010642566562,0.0018995233010392673,0.0022959179006333402,0.0019510826696768646,0.0023745927845677355,0.002016119192414756,0.0019763949333091234,0.0015772540622118634,0.0018497816827789321,0.001845131968237177,0.0011740656865597422,0.002351298200107827,0.0017311567075540518,0.00179825560749506,0.001764003823376257,0.0017464616032459605,0.0018627994130245998,0.0015421109054083748,0.0018997015435778086,0.0015064864982153837,0.0021347938527417356,0.0014302000969874929,0.0019225458961034672,0.0017489759082068037,0.0017558792294368004,0.0018911779428609785,0.0017898227802793567,0.0020571513389652622,0.001153143872879099,0.0022477429935657124,0.0020869334066206213,0.0013801284616884338,0.001728810843352098,0.0011345591536762673,0.0020047085713604655,0.002149892820487185,0.0024578923049130104,0.0017496419728251862,0.0016196127371777328,0.002396890026555208,0.001976265380949588,0.001337061302171409,0.001394387035707636,0.0014839803076226966,0.001865484869852002,0.0015491034581486046,0.0020056851910160984,0.0012799133499175744,0.0017474704823770245,0.0016607234779654032,0.0016602416157330327,0.0018106976907757133,0.002265136821821754,0.00132375241755654,0.0015703441276954688,0.0024988378034393045,0.0018657928090703747,0.0014388325328571596,0.00248034497183469,0.0017341902438560573,0.0018777977567824837,0.0019072436020378988,0.0021603923014392123,0.002019553071001667,0.0017286294407229874,0.001890900874452966,0.0017491425974151997,0.0016009132530102781,0.0013958399052244877,0.0025820902864421586,0.001899255689243717,0.0016374931234214205,0.0023286354927342374,0.0017698838259026146,0.002265039359547516,0.0012654095062113468,0.001939739318998412,0.0012277203690409693,0.0014995299134896035,0.0014523742529443538,0.002622186878943175,0.0011551228895938144,0.001446580016584241,0.0019319982946025209,0.00173205290379646,0.0018239966523906231,0.0014448141640443746,0.0020373838682288983,0.0022536409625269886,0.0019898686471110662,0.0014591479170272448,0.0021872457997073567,0.0014814572081497098,0.002073564671557781,0.001969563904649539,0.0014244824099812728,0.0014251244642305406,0.0017624322545562684,0.001870264520210801,0.001634290645358603,0.0022446221501692936,0.0016332136035869871,0.0014506505955741104,0.0016671358359345088,0.001593707070703512,0.0015320488024117944,0.0020202016194015475,0.0014535165314511977,0.0020729586787206003,0.002095134072954083,0.0018897893970956528,0.00209342861187276,0.0016526465631392956,0.0021882138361574944,0.001914556269201197,0.0020433395701844334,0.0018967435108481622,0.001843111375056762,0.0020634552687804992,0.002098001975535848,0.0019252046005997147,0.001958799793072586,0.0021965737710215945,0.0021040183392938313,0.0021098506605789435,0.0015167770565008665,0.0016508978341696885,0.0015755451056684371,0.0016832246350671988,0.001540528997245492,0.0016838813014020035,0.002046891752496839,0.002028007544704015,0.0017496419728251862,0.0018185653313072432,0.0020032072027672677,0.0017550677228498446,0.002168246457648011,0.0020998304951726815,0.0016738378805990913,0.0011570857508898733,0.001494777798865868,0.00165339214256918,0.0015930701188781105,0.0016216034572588398,0.0014874687506009634,0.0020175968635462393,0.001818190507889983,0.001544854446524903,0.0016916245199174468,0.0015668132393803639,0.0020558983924489874,0.0020173239049819263,0.0016614444655325346,0.0018261836735937145,0.0014139692962107093,0.0014758113972100392,0.0021535161813511323,0.001672466493762878,0.0017165346697312132,0.0017377107924503496,0.001967556804736064,0.0014602585387407465,0.0016009132530102781,0.0013470248402256452,0.0018594525240374503,0.00206146321000689,0.0021452533770548524,0.002046988337825907,0.0011864901787872512,0.0017909457206670225,0.001822158815365786,0.001957962233421132,0.0019896848877032063,0.0015483364744887697,0.0016403917239023013,0.00170035397063841,0.001244600925013833,0.0021264052401500444,0.001502336745052489,0.0015163386804934213,0.0016027581406298317,0.0014981141144620276,0.0019750962578676022,0.0018985405982379071,0.0013333333333333333,0.0019867254759025135,0.0022001242299169318,0.0023380706854914247,0.0018804182177068062,0.0014400408227037242,0.002255291160323857,0.001617028780894258,0.0023014772748645588,0.0018603985547928177,0.0018777001520831602,0.0022539882406086113,0.0022288335090610728,0.0013862354356274783,0.001784559855346814,0.002002336745052489,0.0021880796194788873,0.0020956473051094112,0.0018971040044291527,0.001285707586277687,0.0016738378805990913,0.0021515863523827693,0.0015299848483358225,0.0013649707598133362,0.001960742827269982,0.0021439342573869083,0.0023354228747143745,0.001697685706590274,0.0012015755609381584,0.001991455373303269,0.0016503958524143375,0.001591791130897207,0.0013407323532264091,0.0022836052261147113,0.0020612812927116742,0.0014758113972100392,0.0012277203690409693,0.001886800091480273,0.0015004691692678423,0.0015595920007696806,0.0015772540622118634,0.0012111310901158168,0.0017886945709438974,0.0020437314206251697,0.001836366696468871,0.0016258145836939113,0.001881092960267993,0.0014597038691211207,0.0013785771713173958,0.0018786744207316562,0.001747805836927175,0.002166901365732135,0.0018024304109843794,0.0019494945877057146,0.0014630128549225597,0.0012262586674363473,0.0016445464566182768,0.0013972840487456754,0.0017391047046061208,0.001635897215968923,0.0022463141207252914,0.0015228318520133716,0.0022467983668493026,0.0017015755609381582,0.002106632148879885,0.0016272020611357333,0.001572785257022869,0.001554779154554658,0.002149766897900656,0.0019749008501579596,0.001772014402139197,0.0020921915459330915,0.001572785257022869,0.002117893188680147,0.002243153201161265,0.002016448349445599,0.0018346213524387091,0.001961157156792631,0.0022150031411554364,0.0018689519663509454,0.0017050034059509392,0.0017415247742292393,0.0017803527941583457,0.001313773841560307,0.0020319460243920714,0.0016291311766001956,0.0014737250572356346,0.0015381364484159802,0.0020310706329231573,0.001400856910522724,0.0017474704823770245,0.0016468523267791826,0.001697685706590274,0.0020643553228858326,0.0017021840366069844,0.0013738623305788252,0.001800688503530553,0.002279454739872993,0.0012473026295440428,0.00147736435744238,0.001513247463971136,0.0019806950865180724,0.0014933336553446803,0.0017555549553843056,0.0018755427632968589,0.002006200623525329,0.0014884562229271479,0.0014166409811805342,0.0017793261721569583,0.00219509183921945,0.0014859798964726289,0.002022136834463262,0.0016313170932319052,0.0015193906602062447,0.001206400789887513,0.0013425470725835316,0.001624978237899474,0.0016453175396098645,0.0017745764044091532,0.002120645703143983,0.0012432386031062163,0.0018375232603797512,0.0016024516406858678,0.0018851967766755592,0.0016329435876422933,0.0017322317429073312,0.0014874687506009634,0.001838903833589575,0.0011345591536762673,0.0018038945400077058,0.0017756234631177614,0.0015717420919442553,0.002079542053989659,0.001738408758610922,0.001923596776665195,0.0019372373816449852,0.0015440737667044336,0.0017511339062992743,0.0012810834211972031,0.00149764032283389,0.0016012217189582685,0.001828829964344382,0.0017865648034903472,0.002220344829366015,0.0015971804612504889,0.0015211174121405318,0.0019668840310081708,0.001607609738734785,0.0016810227041712182,0.001259098141946273,0.0021528953465794736,0.0018481313731194846,0.0013314474477953608,0.0011450607865972342,0.0015741691409780704,0.0017730726523317454,0.0013285905923251288,0.001390715984652636,0.0015,0.00146355995225411,0.0018016280214517356,0.0020825175850012973,0.002010453461194174,0.0017610090063618488,0.0019556437866130906,0.0015717420919442553,0.002206201660125837,0.001651648847295007,0.001580635962877376,0.0018713695737155723,0.0012172967913628506,0.0011511484326014198,0.0013958399052244877,0.0011966515150024892,0.0015202555862233386,0.0013965630611785435,0.0017210715811870503,0.0017516291673878228,0.0017205091267236078,0.0017307972916822255,0.0013198105395457657,0.001765097841652506,0.001748140724409556,0.0014689635318695063,0.0018097930166559035,0.0015401318886936594,0.0018058768197712482,0.0016801362546013878,0.0013001499833200508,0.0014540856421866584,0.0016277548180998107,0.00181768983269923,0.0017822478262498873,0.0017260753283702926,0.0011609640474436812,0.0017247880257051796,0.0015671686705958328,0.0015650281593666971,0.00181768983269923,0.001375444238741708,0.002030605896912203,0.001313773841560307,0.002084797527010752,0.0016624024316342545,0.0011882138361574944,0.001193311889463065,0.0011409150084907293,0.001517651418095193,0.001383963458029517,0.0019483329952365745,0.0012810834211972031,0.0013361347146144257,0.0022999983069483605,0.0017459555718277332,0.0013487928568199753,0.0012552302434193853,0.0019017418919173323,0.0016450607865972342,0.0013854804925473925,0.0016416978062742957,0.001621886505170844,0.0016366964937358647,0.0018603985547928177,0.0018113418089575263,0.001515459523486642,0.0019418419485298215,0.0011847540761296949,0.00209485726275751,0.0016849717757131324,0.002216653910583387,0.0016761062858522,0.0011120708903285825,0.0012377107924503496,0.001876623877281797,0.0021736668843798553,0.001382436791481938,0.002006143407778841,0.001816936859724352,0.0014400408227037242,0.0018060083925096784,0.001215770124815271,0.0014737250572356346,0.0013965630611785435,0.0013987195704631267,0.0019126222384943997,0.0016905638689983032,0.0021906967065098205,0.001609701913791966,0.0015353147157576672,0.0016845361792652304,0.0020551528130191028,0.0016856236943415316,0.001382436791481938,0.001581641326739883,0.002162730852981432,0.0016406535085481725,0.0016437728929264658,0.001991576996560026,0.0013333333333333333,0.0017926203589403802,0.0013096634991879286,0.0018191887414917751,0.00189191523488667,0.0015682318226896172,0.0017828279210390478,0.001852940516898182,0.001881669807822103,0.00138320133639788,0.001886235435627478,0.0011388150023607902,0.0014829742426675852,0.0012751752818631547,0.0012247880257051796,0.0013505479680686703,0.001297983759898572,0.0015603239622892068,0.0015978066313269712,0.001276368580 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment