<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>StatOfMind</title>
    <description>A melting pot of statistics, machine learning and data vizualization.</description>
    <link>http://tlfvincent.github.io//</link>
    <atom:link href="http://tlfvincent.github.io//feed.xml" rel="self" type="application/rss+xml" />
    <pubDate>Mon, 18 Nov 2024 17:27:59 +0000</pubDate>
    <lastBuildDate>Mon, 18 Nov 2024 17:27:59 +0000</lastBuildDate>
    <generator>Jekyll v3.10.0</generator>
    
      <item>
        <title>Does home-court advantage in the NBA matter?</title>
        <description>&lt;style&gt;
.center-image
{
    margin: 0 auto;
    display: block;
}
&lt;/style&gt;

&lt;script type=&quot;text/javascript&quot; src=&quot;http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML&quot;&gt;&lt;/script&gt;

&lt;hr /&gt;

&lt;h2 id=&quot;home-court-advantage-in-the-nba&quot;&gt;Home-court advantage in the NBA&lt;/h2&gt;

&lt;p&gt;For obvious reasons, 2020 has not been the best of years, and alongside the terrible societal and economical turmoil created by the COVID-19 pandemic, the sports and entertainment industry has also undergone some dramatic transformations. Of all major sports leagues, the NBA was able to adapt quickly and efficiently to the crisis (albeit at a cost for players and staff, who had to live in a bubble for an extended amount of time), thereby setting a standard to all other leagues on how to safely resume play. Due to the COVID-19 crisis, the NBA paused its season in mid-March 2020, but after extensive planning,  was able to resume play in July by creating a bubble from which very few people were able to come in and out. In this bubble, all eligible teams had to complete the remainder of the season and playoffs, and all games tooks place on neutral grounds in which the only fans included the players, coaching and refereeing staff and a few select members of the media.&lt;/p&gt;

&lt;p&gt;Now I would pick an arena packed of loud fans any day of the week, but the NBA bubble provided the environment for a unique real-world experiment to estimate the potential impact of fans and home-court advantage on team performance. While the first half of the season saw the schedule operate as normal with home and away games for each team, the second half of the season saw all all games being played on neutral grounds. In this post, we will analyze some NBA game data for the last few seasons to asess whether home-court advantage does indeed impact team performance.&lt;/p&gt;

&lt;h2 id=&quot;collecting-nba-game-data&quot;&gt;Collecting NBA game data&lt;/h2&gt;

&lt;p&gt;To begin, I wrote a quick chunk of Python code to scrape NBA game results from the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;www.basketball-reference.com&lt;/code&gt;. The code snippet below iterates through all combinations of year/month since 2015 and extracts the results in a Pandas Dataframe.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;calendar&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;itertools&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;urllib&lt;/span&gt;

&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pandas&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;


&lt;span class=&quot;c1&quot;&gt;# define range of years that we are interested in
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;years&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;range&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;2015&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;2021&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)]&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# Get human-readable names for all months in calendar year
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;months&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;
  &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;lower&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;calendar&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;month_name&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;!=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;&apos;&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# generate all year-month combinations
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;year_month_pairs&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;list&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;itertools&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;product&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;years&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;months&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;print&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;year_month_pairs&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# collect all game data sicne 2015
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;raw_data&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;dict&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;year_month&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;year_month_pairs&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;url&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;sa&quot;&gt;f&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;https://www.basketball-reference.com/leagues/NBA_&lt;/span&gt;&lt;span class=&quot;si&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;year_month&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;si&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;_games-&lt;/span&gt;&lt;span class=&quot;si&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;year_month&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;si&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;.html&apos;&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;try&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;read_html&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;len&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
            &lt;span class=&quot;k&quot;&gt;print&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;Success collecting win-loss data for:&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
            &lt;span class=&quot;k&quot;&gt;print&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;raw_data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;year_month&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;

    &lt;span class=&quot;k&quot;&gt;except&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;urllib&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;error&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;HTTPError&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;exception&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;print&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;!!! Failed collecting win-loss data for !!!&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;print&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;print&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;exception&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;Running the chunk of code above will store all the data in a &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;raw_dict&lt;/code&gt; dictionnary where keys are tuples in the shape of &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;(year, &apos;month&apos;)&lt;/code&gt; (for example, &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;(2015, &apos;january&apos;)&lt;/code&gt;, &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;(2020, &apos;aprild&apos;)&lt;/code&gt;, etc.) and values are Pandas Dataframes containing results played during the correspong year/month pair. For example, you can access all NBA data for December 2019 by typing the command:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;n&quot;&gt;raw_data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;2019&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;december&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)]&lt;/span&gt;


&lt;span class=&quot;n&quot;&gt;Date&lt;/span&gt;    &lt;span class=&quot;n&quot;&gt;Start&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ET&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;  &lt;span class=&quot;n&quot;&gt;Visitor&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Neutral&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;PTS&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Home&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Neutral&lt;/span&gt;    &lt;span class=&quot;n&quot;&gt;PTS&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;Unnamed&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;6&lt;/span&gt;  &lt;span class=&quot;n&quot;&gt;Unnamed&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;7&lt;/span&gt;  &lt;span class=&quot;n&quot;&gt;Attend&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Notes&lt;/span&gt;
&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;Sat&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Dec&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;2018&lt;/span&gt;    &lt;span class=&quot;mi&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;00&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;Milwaukee&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Bucks&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;134&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;New&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;York&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Knicks&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;136&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Box&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Score&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;OT&lt;/span&gt;  &lt;span class=&quot;mi&quot;&gt;19812&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt;
&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;Sat&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Dec&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;2018&lt;/span&gt;    &lt;span class=&quot;mi&quot;&gt;7&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;00&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;Golden&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;State&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Warriors&lt;/span&gt;   &lt;span class=&quot;mi&quot;&gt;102&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Detroit&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Pistons&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;111&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Box&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Score&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;20332&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt;
&lt;span class=&quot;mi&quot;&gt;2&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;Sat&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Dec&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;2018&lt;/span&gt;    &lt;span class=&quot;mi&quot;&gt;7&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;00&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;Brooklyn&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Nets&lt;/span&gt;   &lt;span class=&quot;mi&quot;&gt;88&lt;/span&gt;  &lt;span class=&quot;n&quot;&gt;Washington&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Wizards&lt;/span&gt;  &lt;span class=&quot;mi&quot;&gt;102&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Box&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Score&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;15448&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt;
&lt;span class=&quot;mi&quot;&gt;3&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;Sat&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Dec&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;2018&lt;/span&gt;    &lt;span class=&quot;mi&quot;&gt;8&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;00&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;Toronto&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Raptors&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;106&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Cleveland&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Cavaliers&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;95&lt;/span&gt;  &lt;span class=&quot;n&quot;&gt;Box&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Score&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;19432&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt;
&lt;span class=&quot;mi&quot;&gt;4&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;Sat&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Dec&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;2018&lt;/span&gt;    &lt;span class=&quot;mi&quot;&gt;8&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;00&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;Chicago&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Bulls&lt;/span&gt;   &lt;span class=&quot;mi&quot;&gt;105&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Houston&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Rockets&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;121&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Box&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Score&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;18055&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;...&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;...&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;...&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;...&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;...&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;...&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;...&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;...&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;...&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;...&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;...&lt;/span&gt;
&lt;span class=&quot;mi&quot;&gt;214&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Mon&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Dec&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;31&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;2018&lt;/span&gt;   &lt;span class=&quot;mi&quot;&gt;7&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;00&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;Memphis&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Grizzlies&lt;/span&gt;   &lt;span class=&quot;mi&quot;&gt;101&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Houston&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Rockets&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;113&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Box&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Score&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;18055&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt;
&lt;span class=&quot;mi&quot;&gt;215&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Mon&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Dec&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;31&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;2018&lt;/span&gt;   &lt;span class=&quot;mi&quot;&gt;7&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;00&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;Boston&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Celtics&lt;/span&gt;  &lt;span class=&quot;mi&quot;&gt;111&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;San&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Antonio&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Spurs&lt;/span&gt;   &lt;span class=&quot;mi&quot;&gt;120&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Box&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Score&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;18354&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt;
&lt;span class=&quot;mi&quot;&gt;216&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Mon&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Dec&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;31&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;2018&lt;/span&gt;   &lt;span class=&quot;mi&quot;&gt;8&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;00&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;Minnesota&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Timberwolves&lt;/span&gt;  &lt;span class=&quot;mi&quot;&gt;114&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;New&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Orleans&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Pelicans&lt;/span&gt;    &lt;span class=&quot;mi&quot;&gt;123&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Box&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Score&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;14904&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt;
&lt;span class=&quot;mi&quot;&gt;217&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Mon&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Dec&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;31&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;2018&lt;/span&gt;   &lt;span class=&quot;mi&quot;&gt;8&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;00&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;Dallas&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Mavericks&lt;/span&gt;    &lt;span class=&quot;mi&quot;&gt;102&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Oklahoma&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;City&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Thunder&lt;/span&gt;   &lt;span class=&quot;mi&quot;&gt;122&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Box&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Score&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;18203&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt;
&lt;span class=&quot;mi&quot;&gt;218&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Mon&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Dec&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;31&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;2018&lt;/span&gt;   &lt;span class=&quot;mi&quot;&gt;9&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;00&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;Golden&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;State&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Warriors&lt;/span&gt;   &lt;span class=&quot;mi&quot;&gt;132&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Phoenix&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Suns&lt;/span&gt;    &lt;span class=&quot;mi&quot;&gt;109&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Box&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Score&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;16906&lt;/span&gt;   &lt;span class=&quot;n&quot;&gt;NaN&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;h2 id=&quot;cleaning-nba-game-data&quot;&gt;Cleaning NBA game data&lt;/h2&gt;

&lt;p&gt;Once we have collected the data that we need for this analysis, we can engage in some minor data cleaning/processing in order to prepare the data for further analysis. The chunk of code below concatenates all monthly NBA data into a single DataFrame and cleans up some of the row values and column names. We also assign an additional column &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;score_diff&lt;/code&gt;, which shows the score difference between the home and away team. If the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;score_diff&lt;/code&gt; value is positive, then this means that the home team scored more points than the away team (i.e. the home team won). Inversely, if the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;score_diff&lt;/code&gt; value is negative, then this means that the home team scored less points than the away team (i.e. the home team lost).&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# concatenate all data into a single DataFrame and clean up entries/columns
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;winloss_data&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;concat&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;reset_index&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;query&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;Notes!=&quot;Playoffs&quot;&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;c1&quot;&gt;# rows with this value only contained null values
&lt;/span&gt;    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rename&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;columns&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
        &lt;span class=&quot;s&quot;&gt;&apos;level_0&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;year&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
        &lt;span class=&quot;s&quot;&gt;&apos;level_1&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;month&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
        &lt;span class=&quot;s&quot;&gt;&apos;Visitor/Neutral&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;visiting_team&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
        &lt;span class=&quot;s&quot;&gt;&apos;PTS&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;visiting_team_score&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
        &lt;span class=&quot;s&quot;&gt;&apos;Home/Neutral&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;home_team&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
        &lt;span class=&quot;s&quot;&gt;&apos;PTS.1&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;home_team_score&apos;&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;})&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;drop&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;columns&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;level_2&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fillna&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;({&lt;/span&gt;
        &lt;span class=&quot;s&quot;&gt;&apos;home_team_score&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
        &lt;span class=&quot;s&quot;&gt;&apos;visiting_team_score&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;})&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# convert score data to correct data type
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;winloss_data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;home_team_score&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;visiting_team_score&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;winloss_data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;home_team_score&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;visiting_team_score&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]].&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;astype&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;int&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# compute score differentials for each game
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;winloss_data&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;winloss_data&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;assign&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;score_diff&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;winloss_data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;home_team_score&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;winloss_data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;visiting_team_score&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;Running the chunk of code above will store all the data in a &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;winloss_data&lt;/code&gt; Dataframe, which should contain the following data:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;n&quot;&gt;winloss_data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;head&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;table&gt;
  &lt;thead&gt;
    &lt;tr&gt;
      &lt;th style=&quot;text-align: right&quot;&gt; &lt;/th&gt;
      &lt;th style=&quot;text-align: right&quot;&gt;year&lt;/th&gt;
      &lt;th style=&quot;text-align: left&quot;&gt;month&lt;/th&gt;
      &lt;th style=&quot;text-align: left&quot;&gt;Date&lt;/th&gt;
      &lt;th style=&quot;text-align: left&quot;&gt;Start (ET)&lt;/th&gt;
      &lt;th style=&quot;text-align: left&quot;&gt;visiting_team&lt;/th&gt;
      &lt;th style=&quot;text-align: right&quot;&gt;visiting_team_score&lt;/th&gt;
      &lt;th style=&quot;text-align: left&quot;&gt;home_team&lt;/th&gt;
      &lt;th style=&quot;text-align: right&quot;&gt;home_team_score&lt;/th&gt;
      &lt;th style=&quot;text-align: left&quot;&gt;Unnamed: 6&lt;/th&gt;
      &lt;th style=&quot;text-align: right&quot;&gt;Unnamed: 7&lt;/th&gt;
      &lt;th style=&quot;text-align: right&quot;&gt;Attend.&lt;/th&gt;
      &lt;th style=&quot;text-align: right&quot;&gt;Notes&lt;/th&gt;
      &lt;th style=&quot;text-align: right&quot;&gt;score_diff&lt;/th&gt;
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;0&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;2015&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;january&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Thu, Jan 1, 2015&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;8:00p&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Denver Nuggets&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;101&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Chicago Bulls&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;106&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Box Score&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;nan&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;21794&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;nan&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;5&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;1&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;2015&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;january&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Thu, Jan 1, 2015&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;8:00p&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Sacramento Kings&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;110&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Minnesota Timberwolves&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;107&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Box Score&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;nan&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;13337&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;nan&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;-3&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;2&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;2015&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;january&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Fri, Jan 2, 2015&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;7:00p&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Cleveland Cavaliers&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;91&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Charlotte Hornets&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;87&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Box Score&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;nan&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;19307&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;nan&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;-4&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;3&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;2015&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;january&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Fri, Jan 2, 2015&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;7:00p&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Brooklyn Nets&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;100&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Orlando Magic&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;98&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Box Score&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;nan&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;17008&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;nan&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;-2&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;4&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;2015&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;january&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Fri, Jan 2, 2015&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;7:30p&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Dallas Mavericks&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;119&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Boston Celtics&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;101&lt;/td&gt;
      &lt;td style=&quot;text-align: left&quot;&gt;Box Score&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;nan&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;18624&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;nan&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;-18&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;

&lt;h2 id=&quot;a-quick-analysis-of-home-court-advantage-in-the-nba&quot;&gt;A quick analysis of home-court advantage in the NBA&lt;/h2&gt;
&lt;p&gt;Now that we have gathered and cleaned up our NBA game data, we can proceed to a small analysis of the data. To begin, we can simply look at the summary statistics for the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;score_diff&lt;/code&gt; column across different seasons.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;n&quot;&gt;winloss_data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;groupby&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;year&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;score_diff&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;describe&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;table&gt;
  &lt;thead&gt;
    &lt;tr&gt;
      &lt;th style=&quot;text-align: right&quot;&gt;year&lt;/th&gt;
      &lt;th style=&quot;text-align: right&quot;&gt;count&lt;/th&gt;
      &lt;th style=&quot;text-align: right&quot;&gt;mean&lt;/th&gt;
      &lt;th style=&quot;text-align: right&quot;&gt;std&lt;/th&gt;
      &lt;th style=&quot;text-align: right&quot;&gt;min&lt;/th&gt;
      &lt;th style=&quot;text-align: right&quot;&gt;25%&lt;/th&gt;
      &lt;th style=&quot;text-align: right&quot;&gt;50%&lt;/th&gt;
      &lt;th style=&quot;text-align: right&quot;&gt;75%&lt;/th&gt;
      &lt;th style=&quot;text-align: right&quot;&gt;max&lt;/th&gt;
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;2015&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;1311&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;2.39054&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;13.5141&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;-54&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;-7&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;4&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;11&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;53&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;2016&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;1316&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;3.02736&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;13.5698&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;-51&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;-6&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;4&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;12&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;50&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;2017&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;1309&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;3.08327&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;13.8825&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;-44&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;-6&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;4&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;12&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;49&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;2018&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;1312&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;2.36662&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;13.7199&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;-48&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;-7&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;4&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;11&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;61&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;2019&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;1319&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;2.77786&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;14.3607&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;-56&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;-7&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;4&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;12&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;50&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;2020&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;1258&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;1.86248&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;13.4501&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;-41&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;-7&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;0&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;10&lt;/td&gt;
      &lt;td style=&quot;text-align: right&quot;&gt;49&lt;/td&gt;
    &lt;/tr&gt;
  &lt;/tbody&gt;
&lt;/table&gt;

&lt;p&gt;We can immediately see that the 2020 season has different summary statistics values than all other seasons. On average, the “home” team scored ~1.5 fewer points during the 2020 season (remember that &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;score_diff&lt;/code&gt; shows the score difference between the home and away team. If the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;score_diff&lt;/code&gt; value is positive, then this means that the home team scored more points than the away team.). Similarly, the median value for the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;score_diff&lt;/code&gt; was equal to &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;0&lt;/code&gt; during the 2020 season, whereas it was equal to &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;4&lt;/code&gt; for all other seasons since 2015. This indicates that until the 2020 season, 50% of teams playing at home scored 4 or more points than their opponents. In 2020, 50% of teams playing at home scored the same number of points than their opponents. If we recall that half of the 2020 season was played on neutral grounds, the numbers above indicate (but do not prove) that home-court advantage may have a significant impact on the win probability of the home team.&lt;/p&gt;

&lt;p&gt;We can also visualize the overall distribution of the score differentials between the home and away teams across different seasons:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;n&quot;&gt;ax&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;winloss_data&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;hist&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;by&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;year&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;column&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;score_diff&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;bins&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;50&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;figsize&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;18&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;layout&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt; 
        &lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;grey&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;rot&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;&lt;img src=&quot;/img/home_court_advantage_fig1.png&quot; alt=&quot;Home Court Advantage Figure 1&quot; /&gt;&lt;/p&gt;

&lt;p&gt;The distribution of the score differentials between the home and away teams also displays some interesting patterns. The distributions for seasons 2015-2019 appear to follow a bi-modal distribution, with two spikes around zero (there is no such thing as a draw in basketball). In all cases, the “positive” spike is larger than the “negative” spike, which aligns with the previous observation that home teams were more likely to win their games during those seasons. This bi-model distribution is not as clearly defined for the 2020 season, where instead we see a significantly larger “negative” spike, which indicates that home teams were more likely to lose their games during that season.&lt;/p&gt;

&lt;p&gt;When plotting the normalized cumulative distribution function for the score differentials between the home and away teams, we obtain the following figure:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;n&quot;&gt;cum_score_diff&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;winloss_data&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;groupby&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;([&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;year&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;score_diff&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;reset_index&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pivot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;index&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;score_diff&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;columns&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;year&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;values&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fillna&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;cumsum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;cum_score_diff&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;/&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;cum_score_diff&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;max&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;plot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;figsize&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;8&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;&lt;img src=&quot;/img/home_court_advantage_fig2.png&quot; alt=&quot;Home Court Advantage Figure 2&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Again, the 2020 season stands apart from all other previous seasons included in our dataset, which shows a distinct uptick of games on the negative side of the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;zero&lt;/code&gt; mark that denotes games where the “away” team won. However, if we really want to show the potential impact of home-court advantage, we can focus on the before/after distribution of score differentials during the 2020 season. To begin, we define the months during games were played inside and outside of the bubble:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;n&quot;&gt;months_before_bubble&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;october&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;november&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;december&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;january&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;february&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;months_after_bubble&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;july&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;august&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;september&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;We can then compute and plot the normalized cumulative distribution function for the score differentials before and after the bubble:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;n&quot;&gt;cum_score_diff_2020&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;winloss_data&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;assign&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;is_in_bubble&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;No&apos;&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;months_before&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;Yes&apos;&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;winloss_data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;month&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;query&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;year==2020&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;groupby&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;([&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;is_in_bubble&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;score_diff&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;reset_index&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pivot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;index&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;score_diff&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;columns&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;is_in_bubble&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;values&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fillna&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;cumsum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;ax&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;cum_score_diff_2020&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;/&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;cum_score_diff_2020&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;max&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;plot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;figsize&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;8&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;ax&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;set_xlabel&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;(Home Team Score) - (Away Team Score)&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;ax&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;set_ylabel&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;Normalized Cumulative Function&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;&lt;img src=&quot;/img/home_court_advantage_fig3.png&quot; alt=&quot;Home Court Advantage Figure 3&quot; /&gt;&lt;/p&gt;

&lt;p&gt;The figure clearly shows the impact that moving to a “bubble” environnment had on the score differentials between home and away teams. By entering a bubble in which all games were played on neutral arenas, the NBA negated the impact that fans could have on the outcome of games. As a result, we can reasonably conclude that the NBA bubble had a real impact on team performance, and that home-court advantage is a real phenomenom.&lt;/p&gt;

</description>
        <pubDate>Sun, 06 Dec 2020 00:00:00 +0000</pubDate>
        <link>http://tlfvincent.github.io//2020/12/06/nba-home-court-advantage/</link>
        <guid isPermaLink="true">http://tlfvincent.github.io//2020/12/06/nba-home-court-advantage/</guid>
        
        
      </item>
    
      <item>
        <title>Comparing rental prices in the US market</title>
        <description>&lt;style&gt;
.center-image
{
    margin: 0 auto;
    display: block;
}
&lt;/style&gt;

&lt;script type=&quot;text/javascript&quot; src=&quot;http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML&quot;&gt;&lt;/script&gt;

&lt;hr /&gt;

&lt;h2 id=&quot;rental-prices-in-the-us&quot;&gt;Rental Prices in the US&lt;/h2&gt;

&lt;p&gt;As a fortunate resident of New York City, I get to enjoy the many activities offered by a city that never really turns off its lights. The price to pay for such entertainment, however, are the crazy rental fees. I have stopped counting the number of conversations I have had with friends about some of the exhorbitant living costs in NYC. I have also drooled over multi-million mansions with sprawling views of the city, and wondered how studios the size of a shoe box could claim such high prices. Fortunately for me, I have been living in the same spot for the last few years, but am now expecting to start looking again soon.&lt;/p&gt;

&lt;p&gt;This means that I am starting to look for both a new neighborhood and a new apartment, and for that I have been primarily relying on the &lt;a href=&quot;https://streeteasy.com/&quot;&gt;Streeteasy&lt;/a&gt; and &lt;a href=&quot;https://www.zillow.com/&quot;&gt;Zillow&lt;/a&gt; wesbites. Eventually, keeping track of all this gets a little confusing, and I can only imagine  how much worse it gets for people just moving into NYC.&lt;/p&gt;

&lt;p&gt;For these reasons, I decided to see if I could leverage some open-source data in order to extract and visualize some information out of it. In the following post, I will collect and analyze some of the &lt;a href=&quot;https://www.zillow.com/research/data/#rental-data&quot;&gt;great data made available by Zillow&lt;/a&gt;, while also going through the steps that allowed me to create the &lt;a href=&quot;https://statofmind.shinyapps.io/rental-predictor/&quot;&gt;web application&lt;/a&gt; displayed below&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://statofmind.shinyapps.io/truth-o-meter/&quot;&gt;&lt;img src=&quot;/img/rental_predictor_app_screenshot.png&quot; alt=&quot;Web application screenshot&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h3 id=&quot;obtaining-zillow-data--forecasts&quot;&gt;Obtaining Zillow data &amp;amp; Forecasts&lt;/h3&gt;

&lt;p&gt;Obtaining the data for this project is very straightforward, and does not require any scraping or cleaning. All the data can be directly downloaded from the following &lt;a href=&quot;https://www.zillow.com/research/data/#rental-data&quot;&gt;link&lt;/a&gt;, and contains monthly median rental prices in neigborhoods of various US cities between 2010 and now. In order to produce forecasts of the time series represented in the Zillow dataset, I leveraged the additive &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;HoltWinters&lt;/code&gt; function, which comes as part of &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;R&lt;/code&gt;’s core packages). Briefly, the additive Holt Winters model assumes that the value of a time series \(Y\) at time \(t\) can be represented as:&lt;/p&gt;

\[y_{t} = b_{1} + b_{2}t + S_{t} + \epsilon_{t}\]

&lt;p&gt;where \(b_{1}\) represents the base signal of the time series, \(_{2}\) denotes the linear trend component, \(S_{t}\) is the additive seasonal factor and \(\epsilon_{t}\) is the random error component of the time series. The Holt Winters additive seasonal model assumes that the amplitude of the seasonal component of the time series is independent of the average level of the series itself. I thought that this assumption fit well with the Zillow data, so decided to work with that. I also assessed other methodologies for time series forecasting, but it eventually turned into a bigger project than I had intended. Instead, I have planned to write a comparative analysis for the various time series libraries available in both Python and R. In the meantime, let’s show how the app was built!&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h3 id=&quot;building-the-rental-predictor-shiny-application&quot;&gt;Building the Rental Predictor Shiny application&lt;/h3&gt;

&lt;p&gt;The next step was to build a Shiny app that allows anyone to look at forecasts and seasonality of different neighborhoods. For simplicity, I have hosted the app on &lt;a href=&quot;https://statofmind.shinyapps.io/rental-predictor/&quot;&gt;shinyapps.io&lt;/a&gt;, but in order to ensure full reproducibility, I have containerized the full application using &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Docker&lt;/code&gt;. If you have not used or heard of &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Docker&lt;/code&gt;, their own website gives a very good description:&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;Docker containers wrap up a piece of software in a complete filesystem that contains everything it needs to run: code, runtime, system tools, system libraries – anything you can install on a server. This guarantees that it will always run the same, regardless of the environment it is running in.
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;With that in mind, the development workflow used to create this Shiny app was:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Build the shiny app locally (i.e. on your local machine) and ensure that everything works just as expected.&lt;/li&gt;
  &lt;li&gt;Create a file called &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Dockerfile&lt;/code&gt;, in which we specify all the required instructions and commands, environnment variables and configurations.&lt;/li&gt;
  &lt;li&gt;Build and run the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Docker&lt;/code&gt; container to check that the app behaves as expected. If not, iterate over the first step until you are satisfied.&lt;/li&gt;
  &lt;li&gt;Reap the benefits of a fully reproducible app that can be ran on any OS platform!&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The source code for the full web app can be found at the &lt;a href=&quot;https://github.com/tlfvincent/rental-predictor&quot;&gt;following GitHub repository&lt;/a&gt;, and has the following directory structure:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-bash&quot; data-lang=&quot;bash&quot;&gt;&lt;span class=&quot;nb&quot;&gt;.&lt;/span&gt;
├── Dockerfile
├── LICENSE
├── README.md
├── app
│   ├── data
│   │   ├── Neighborhood_MedianRentalPrice_1Bedroom.csv
│   │   ├── Neighborhood_MedianRentalPrice_2Bedroom.csv
│   │   ├── Neighborhood_MedianRentalPrice_3Bedroom.csv
│   │   ├── Neighborhood_MedianRentalPrice_4Bedroom.csv
│   │   └── Neighborhood_MedianRentalPrice_Studio.csv
│   ├── server.R
│   ├── static
│   │   └── dygraph.css
│   ├── ui.R
│   └── utils.R
├── download_data.sh
├── rental_predictor.R
└── shiny-server.sh

1 directory, 10 files&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;By cloning this &lt;a href=&quot;https://github.com/tlfvincent/rental-predictor&quot;&gt;Github directory&lt;/a&gt; and typing the commands below, you will be able to run the web app yourself. You should also make sure that Docker is installed on your machine, which can be achieved by following the instructions in this &lt;a href=&quot;https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-16-04&quot;&gt;tutorial&lt;/a&gt;.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-bash&quot; data-lang=&quot;bash&quot;&gt;&lt;span class=&quot;c&quot;&gt;# build Docker container with tag name rental-predictor&lt;/span&gt;
docker build &lt;span class=&quot;nt&quot;&gt;-t&lt;/span&gt; rental-predictor &lt;span class=&quot;nb&quot;&gt;.&lt;/span&gt;

&lt;span class=&quot;c&quot;&gt;# run Docker container and mirror port 4000&lt;/span&gt;
docker run &lt;span class=&quot;nt&quot;&gt;-p&lt;/span&gt; 4000:4000 &lt;span class=&quot;nt&quot;&gt;-t&lt;/span&gt; rental-predictor

&lt;span class=&quot;c&quot;&gt;# Note: the above was tested on a Ubuntu machine hosted on DigitalOcean.&lt;/span&gt;
&lt;span class=&quot;c&quot;&gt;# For convenience, I used their Docker One-Click Applications,&lt;/span&gt;
&lt;span class=&quot;c&quot;&gt;# which automatically installs Docker during the booting process.&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;Et voila, you are done! A snapshot of the app is displayed below, or you can visit the app at the following link. It allows to select a city and neighborhood, at which point the plot described in the previous section are surfaced to the user:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/img/rental_predictor_app_screenshot.png&quot; alt=&quot;Web application screenshot&quot; /&gt;&lt;/p&gt;

</description>
        <pubDate>Mon, 11 Dec 2017 00:00:00 +0000</pubDate>
        <link>http://tlfvincent.github.io//2017/12/11/usa-rental-predictor/</link>
        <guid isPermaLink="true">http://tlfvincent.github.io//2017/12/11/usa-rental-predictor/</guid>
        
        
      </item>
    
      <item>
        <title>NFL Series</title>
        <description>&lt;p&gt;If you have previously attempted to analyze NFL data, it is likely that you have tried to scrape ESPN or football-reference, which provides a wealth on statistics surrounding game data. However, if you ever wanted to obtain truly in-depth data, then it is likely that you found yourself leveraging the API maintained by NFL.com. Unfortunately, it’s data is surfaced in a &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;JSON&lt;/code&gt; format that leaves a lot to be desired (i.e. it’s a nightmare). Lucky for me, I was recently scrolling through my Twitter feed and came across an interesting mention of a new R package called &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;nflscrapR&lt;/code&gt;. After some exploration, I came through this quote from the author of the package:&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;NFL fans and sports enthusiastic alike, I would like to introduce the nflscrapR package, an American football data aggregator that will scrape, clean, and parse play-by-play data across games, seasons, and careers.
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;The &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;nflscrapR&lt;/code&gt; essentiallys surfaces all play-by-play data for the last 7 seasons, and this has motivated me to start a deep dive on NFL data. I plan to have two main topics, one that focusses on players at specific positions, and another focussing on team dynamics and patterns. To kick this series off, we will begin with an &lt;em&gt;exploration into the performance of NFL’s best running backs&lt;/em&gt;.&lt;/p&gt;

&lt;h3 id=&quot;1-prerequisites&quot;&gt;1. Prerequisites&lt;/h3&gt;
&lt;p&gt;In order to reproduce the figures below, wou will need to have &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;R&lt;/code&gt; (v3.2.3 or above) installed on your machine. There are also a couple of additional libraries that will be required. Details on how to install those are shown in the commands below.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# install.packages(&apos;devtools&apos;)
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;devtools&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;#&amp;gt; Skipping install for github remote, the SHA1 (05815ef8) has not changed since last install.
#&amp;gt;   Use `force = TRUE` to force installation
&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;devtools&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;::&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;install_github&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;repo&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;maksimhorowitz/nflscrapR&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;force&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;TRUE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;h3 id=&quot;2-collecting-the-data&quot;&gt;2 Collecting the Data&lt;/h3&gt;
&lt;p&gt;With the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;nflscrapR&lt;/code&gt; library now installed, you are now ready to collect play-by-play data for the 2016-2017 NFL season. Start by loading the library and collect the data using the command below:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# Load the package
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;nflscrapR&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ggplot2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dplyr&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pheatmap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# Collect data for 2016 NFL season
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pbp_2016&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;season_play_by_play&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;2016&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;Overall the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;pbp_2016&lt;/code&gt; dataframe contains 100 data points for 45,737 plays, but for the purpose of this post, we will be focussing exclusively on fields related to running backs (In future posts, we will explore data relevant to other positions on the football field). In addition, we’ll focus primarily on frequently used running backs, which we empirically define as any player that has had at least 200 rushes over the course of the 2016-2017 season.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# Get all players with at least 200 rushes during the season
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;min_rush_cnt&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;200&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;rush_cnt&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pbp_2016&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;PlayType&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;Run&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;
                         &lt;span class=&quot;n&quot;&gt;group_by&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt; 
                         &lt;span class=&quot;n&quot;&gt;summarise&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rush_cnt&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;n&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(),&lt;/span&gt;
                                   &lt;span class=&quot;n&quot;&gt;total_yards&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;sum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Yards&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Gained&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;
                                   &lt;span class=&quot;n&quot;&gt;mean_yards&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;round&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Yards&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Gained&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;
                         &lt;span class=&quot;nb&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rush_cnt&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;min_rush_cnt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;
                         &lt;span class=&quot;n&quot;&gt;arrange&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;desc&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rush_cnt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# Get all rushing data for eligible players
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rushing_stats&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pbp_2016&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;
                 &lt;span class=&quot;nb&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;PlayType&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;Run&apos;&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;amp;&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&lt;/span&gt;&lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;rush_cnt&lt;/span&gt;&lt;span class=&quot;err&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;amp;&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Yards&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Gained&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;50&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;
                 &lt;span class=&quot;nb&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;down&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;!=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;4&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;amp;&lt;/span&gt; &lt;span class=&quot;err&quot;&gt;!&lt;/span&gt;&lt;span class=&quot;ow&quot;&gt;is&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;na&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;down&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;
                 &lt;span class=&quot;nb&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;err&quot;&gt;!&lt;/span&gt;&lt;span class=&quot;ow&quot;&gt;is&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;na&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;RunLocation&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;Altogether, we find that a total of 19 players rushed over 200 times during the 2016-2017 season. A short summary of their performance is show below.&lt;/p&gt;

&lt;center&gt;
  &lt;iframe width=&quot;1050&quot; height=&quot;600&quot; src=&quot;https://statofmind-blog.nyc3.digitaloceanspaces.com/images/top_rushers.html&quot; frameborder=&quot;0&quot; allowfullscreen=&quot;allowfullscreen&quot;&gt;&lt;/iframe&gt;
&lt;/center&gt;

&lt;h3 id=&quot;3-who-are-the-most-consistent-and-productive-running-backs&quot;&gt;3. Who are the most consistent and productive running backs?&lt;/h3&gt;
&lt;p&gt;When talking about the overall performance of running backs, it is common for people to report the total number of yards that were rushed for, or the average yards per run. While these are perfectly acceptable numbers to share, I’ve always felt like they did not tell the whole story. For example, a player could have a high average yards per run, only for us to realize that he actually often loses yards on a run but makes up for it with a few very long runs. Therefore, I started by looking at the overall distribution of number of yards gained/lost for each play, with the hope that this would reveal whether some players were more consistent on a play-by-play basis than others. We can use the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;ggplot2&lt;/code&gt; library to generate a density plot of yards gained per play for each of our eligible players:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# Compare distribution of rushes for eligible players
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ggplot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rushing_stats&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Yards&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Gained&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;y&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;fill&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;geom_joy&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;theme_joy&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;scale_fill_manual&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;values&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rep&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;gray&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;lightblue&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;length&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rushing_stats&lt;/span&gt;&lt;span class=&quot;err&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;scale_y_discrete&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;expand&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mf&quot;&gt;0.01&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;scale_x_continuous&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;expand&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;theme&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;legend&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;position&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;none&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;labs&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Yards gained per play&quot;&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;&lt;img src=&quot;/img/nlf-running-back-deep-dive-fig1.png&quot; alt=&quot;Yards gained by run&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Overall, we see that most running backs have a similar distribution of yards gained by run. However, we can see that LeSean McCoy (7th distribution from the top) has a much “flatter” distribution (i.e. more variance in the distribution of yards gained per run), meaning his performance can be a lot more variable/unpredictable for any given run.&lt;/p&gt;

&lt;h3 id=&quot;4-when-are-running-backs-used&quot;&gt;4. When are running backs used?&lt;/h3&gt;
&lt;p&gt;Another statement that is also commonly reported is that running backs are primarily used in early downs. To verify whether this is generall true, we can compute the total amount of runs that each player made across different downs, and go even further by breaking this down by quarter too. The code chunk below counts the number of runs that each rushing back made during pairs of downs and quarters.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# Compare when rushers are used
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;usage_stats&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pbp_2016&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;err&quot;&gt;!&lt;/span&gt;&lt;span class=&quot;ow&quot;&gt;is&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;na&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;down&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;amp;&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&lt;/span&gt;&lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;rush_cnt&lt;/span&gt;&lt;span class=&quot;err&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;amp;&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;qtr&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;!=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;
                             &lt;span class=&quot;n&quot;&gt;group_by&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;down&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;qtr&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;
                             &lt;span class=&quot;n&quot;&gt;summarise&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;cnt&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;n&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;())&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;
                             &lt;span class=&quot;n&quot;&gt;mutate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;qtr_down&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;paste&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Q&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;qtr&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;- Down: &quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;down&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sep&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;We can then leverage the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;d3heatmap&lt;/code&gt; to quickly generate a simple heatmap of how often running backs are used during specific downs and quarters.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;d3heatmap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# pivot dataframe
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;usage&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;usage_stats&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;dcast&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;~&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;qtr_down&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;value&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;var&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;cnt&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# clean data
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;row&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;names&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;usage&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;usage&lt;/span&gt;&lt;span class=&quot;err&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;usage&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;usage&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;select&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;usage&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;ow&quot;&gt;is&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;na&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;usage&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# normalize data
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;usage_norm&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;t&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;apply&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;usage&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;sum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)))&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# plot heatmap of proportions of rushes by different field locations and gaps
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;d3heatmap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;usage_norm&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
               &lt;span class=&quot;n&quot;&gt;colors&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Blues&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
               &lt;span class=&quot;n&quot;&gt;Colv&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;FALSE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
               &lt;span class=&quot;n&quot;&gt;show_grid&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;saveWidget&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;file&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;rusher_usage_down_quarter.html&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;center&gt;
   &lt;h5&gt;Proportion of rushes per quarter and downs for NFLs best running backs&lt;/h5&gt;
  &lt;iframe width=&quot;900&quot; height=&quot;450&quot; src=&quot;https://statofmind-blog.nyc3.digitaloceanspaces.com/images/rusher_usage_down_quarter.html&quot;&gt;&lt;/iframe&gt;
&lt;/center&gt;

&lt;p&gt;In the plot above, we are essentially plotting the usage of each running back as a function of what stage of the game we are in. As we can see, it is abundantly clear that running backs are primarily used in the first two downs, and rarely during the third and fourth downs. Overall, there does not appear to be significant differences between how players are used. However, it does not answer whether some running backs perform better on certains downs, which is what we will address now.&lt;/p&gt;

&lt;h3 id=&quot;5-are-some-running-backs-better-on-certain-downs&quot;&gt;5. Are some running backs better on certain downs?&lt;/h3&gt;

&lt;p&gt;Another question we can ask ourselves is whether some running backs perform better on later downs. To visualize this data, we can again generate a density plot of yards gained per play for each of our eligible players, while also facetting the data by downs.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# Compare distribution of rushes by downs
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ggplot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rushing_stats&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Yards&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Gained&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;y&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;down&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;geom_joy&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scale&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;rel_min_height&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;03&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;fill&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;black&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;scale_y_discrete&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;expand&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mf&quot;&gt;0.01&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;xlab&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;Value&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;facet_wrap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;scales&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;free&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;ncol&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;theme_joy&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;theme&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;element_blank&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;())&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;labs&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Yards gained per play&quot;&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Down&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;&lt;img src=&quot;/img/nlf-running-back-deep-dive-fig2.png&quot; alt=&quot;Yards gained by run&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Again, we do not see any striking differences between players and the distribution of yards gained by down. However, it is interesting to note that most “long runs” (10 yards or above) tend to occur on the first down. When we look closely, we can also see that some rushers such as DeMarco Murray do exhibit visual differences between yards gained by downs. In this case, the “mass” of yards gained on the third down is much closer to zero than when compared to the “mass” for the first and second downs, which suggests that he may struggle during this down (this could be attributable to many factors: stamina, weaker offensive line on 3rd downs, etc…)&lt;/p&gt;

&lt;h3 id=&quot;6-where-do-the-best-running-backs-run&quot;&gt;6. Where do the best running backs run?&lt;/h3&gt;

&lt;p&gt;It is fairly well accepted that the performance of a running back will be heavily influenced by the strength of the offensive line in front of them. With that in mind, let’s start by looking at the field location in which different running backs prefer to run. The plot below shows the number of yards gained by each running back based on which side of the field they ran towards (left, middle or right).&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;n&quot;&gt;ggplot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rushing_stats&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;RunLocation&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Yards&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Gained&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;RunLocation&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;geom_jitter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;position&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;position_jitter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mf&quot;&gt;0.2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;stat_summary&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fun&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mean_sdl&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;mult&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; 
                    &lt;span class=&quot;n&quot;&gt;geom&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;pointrange&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;black&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;scale_color_brewer&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;palette&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Dark2&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;theme_minimal&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;facet_wrap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;&lt;img src=&quot;/img/nlf-running-back-deep-dive-fig4.png&quot; alt=&quot;Yards gained by run&quot; /&gt;&lt;/p&gt;

&lt;p&gt;We can take this further by looking at the field location in which different running backs prefer to run. This can be achieved by generating a matrix that contains the proportion of rushes by field location for each player.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# Get proportions of rushes on different field locations
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rush_locations&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;rushing_stats&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;PlayType&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;==&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;Run&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;
                                    &lt;span class=&quot;nb&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;err&quot;&gt;!&lt;/span&gt;&lt;span class=&quot;ow&quot;&gt;is&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;na&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;RunLocation&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;
                                    &lt;span class=&quot;n&quot;&gt;group_by&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;RunLocation&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;
                                    &lt;span class=&quot;n&quot;&gt;summarise&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rush_cnt&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;n&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;())&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;
                                    &lt;span class=&quot;n&quot;&gt;mutate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;freq&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;rush_cnt&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;/&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;sum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rush_cnt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;loc_mat&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;rush_locations&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;dcast&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;~&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;RunLocation&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;value&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;var&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;freq&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;row&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;names&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;loc_mat&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;loc_mat&lt;/span&gt;&lt;span class=&quot;err&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;loc_mat&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;loc_mat&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;select&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;The content of the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;loc_mat&lt;/code&gt; matrix contains the preferred rush locations of each running back, and can be plotted as a clustered heatmaps using the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;pheatmap&lt;/code&gt; library in &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;R&lt;/code&gt;.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# Plot heatmap of proportions of rushes by different field locations
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pheatmap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;loc_mat&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;border&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;white&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;color&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;brewer&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pal&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;9&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Blues&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;cluster_cols&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;FALSE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;&lt;img src=&quot;/img/nlf-running-back-deep-dive-fig3a.png&quot; alt=&quot;Rushes by field location&quot; /&gt;&lt;/p&gt;

&lt;p&gt;The plot above highlights which running back are most similar in their run locations. Rushers such as J. Ajayi, E. Elliot and M. Ingram, clearly avoid running in the middle of the field. On the flipside, rushers such as M. Gordon D. Johnson, S.ware and F. Gore clearly prefer running down the middle rather than to the sides. These patterns could be attributed to the running styles of each rushers (speed, mobility, strength etc…), but also the strength of the offensive line at particular positions.&lt;/p&gt;

&lt;h3 id=&quot;7-who-creates-the-gaps-for-the-running-backs&quot;&gt;7. Who creates the gaps for the running backs?&lt;/h3&gt;

&lt;p&gt;We can also explore the number of yards gained by each running back based on the offensive line positions that created space for them.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;n&quot;&gt;ggplot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rushing_stats&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;err&quot;&gt;!&lt;/span&gt;&lt;span class=&quot;ow&quot;&gt;is&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;na&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;RunGap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)),&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;aes&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;RunGap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Yards&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Gained&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;RunGap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;geom_jitter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;position&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;position_jitter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mf&quot;&gt;0.2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;stat_summary&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fun&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mean_sdl&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;mult&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; 
                    &lt;span class=&quot;n&quot;&gt;geom&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;pointrange&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;black&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;scale_color_brewer&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;palette&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Dark2&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;theme_minimal&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;
       &lt;span class=&quot;n&quot;&gt;facet_wrap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;&lt;img src=&quot;/img/nlf-running-back-deep-dive-fig5.png&quot; alt=&quot;Yards gained by run&quot; /&gt;&lt;/p&gt;

&lt;p&gt;The proportions of run opportunities that was enabled by each offensive line position can also be summarized in a matrix using the command below.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# Get proportions of gaps created by different offensive line positions
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rush_gaps&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;rushing_stats&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;err&quot;&gt;!&lt;/span&gt;&lt;span class=&quot;ow&quot;&gt;is&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;na&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;RunGap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;
                               &lt;span class=&quot;nb&quot;&gt;filter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;err&quot;&gt;!&lt;/span&gt;&lt;span class=&quot;ow&quot;&gt;is&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;na&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;RunGap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;
                               &lt;span class=&quot;n&quot;&gt;group_by&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;RunGap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;
                               &lt;span class=&quot;n&quot;&gt;summarise&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rush_cnt&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;n&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;())&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;
                               &lt;span class=&quot;n&quot;&gt;mutate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;freq&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;rush_cnt&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;/&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;sum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rush_cnt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;gap_mat&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;rush_gaps&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;dcast&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;~&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;RunGap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;value&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;var&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;freq&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;row&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;names&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;gap_mat&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;gap_mat&lt;/span&gt;&lt;span class=&quot;err&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;gap_mat&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;gap_mat&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;select&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Rusher&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# Plot heatmap of proportions of rushes by different field gaps
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pheatmap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;gap_mat&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;border&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;white&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;color&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;brewer&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pal&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;9&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Blues&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;cluster_cols&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;FALSE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;&lt;img src=&quot;/img/nlf-running-back-deep-dive-fig3b.png&quot; alt=&quot;Gaps created by Offensive Line Position&quot; /&gt;&lt;/p&gt;

&lt;p&gt;Again, we see many differences among the leagues top running backs. Unsurprisingly, a number of players have the most run opportunities created by the guard position, but a few players such as F. Gore, L. McCoy and D. Johnson run in gaps created by the tackle position. Finally, S. Ware from the Kansas City Chiefs often runs through gaps created by tight ends, which may be more representative of the team’s formation.&lt;/p&gt;

&lt;h3 id=&quot;conclusion&quot;&gt;Conclusion&lt;/h3&gt;
&lt;p&gt;In this introductory post, we have explored the performance and patterns of some of NFL’s best running backs. Overall, it was a fairly superficial analysis, as it never considered interactions with other components of the team, or temporal patterns, but it does show the depth and power of this data. In the next series, I will dive into the performance and behavior of wide receivers, so stay tuned!&lt;/p&gt;

</description>
        <pubDate>Sun, 08 Oct 2017 00:00:00 +0000</pubDate>
        <link>http://tlfvincent.github.io//2017/10/08/nlf-running-back-deep-dive/</link>
        <guid isPermaLink="true">http://tlfvincent.github.io//2017/10/08/nlf-running-back-deep-dive/</guid>
        
        
      </item>
    
      <item>
        <title>Building a Kafka and Spark Streaming pipeline - Part I</title>
        <description>&lt;p&gt;Many companies across a multitude of industries are currently maintaining data pipelines used to ingest and analyze large data streams. In effect, the proper implementation of such pipelines belongs to the realm of “data engineering”, and represents a gateway to interesting data science-related problems. Traditional machine learning methods have been developed to work using batch or offline approaches, but there are fewer options when we start considering solutions for true streaming problems.&lt;/p&gt;

&lt;p&gt;In this series of posts, we will build a locally hosted data streaming pipeline to analyze and process data streaming in real-time, and send the processed data to a monitoring dashboard. As the figure below shows, our high-level example of a real-time data pipeline will make use of popular tools including Kafka for message passing, Spark for data processing, and one of the &lt;em&gt;many&lt;/em&gt; data storage tools that eventually feeds into internal or external facing products (websites, dashboards etc…)&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/img/kafka_spark_pipeline.png&quot; alt=&quot;Kafka and Spark streaming pipeline&quot; /&gt;&lt;/p&gt;

&lt;h2 id=&quot;1-setting-up-your-environnment&quot;&gt;1. Setting up your environnment&lt;/h2&gt;
&lt;p&gt;We will assume that you have nothing installed on your machine. To begin, it is useful to check whether you have &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Java&lt;/code&gt; installed or your machine, and if yes, whether it is at &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;version&amp;gt;=1.8&lt;/code&gt;.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;java &lt;span class=&quot;nt&quot;&gt;-version&lt;/span&gt;
java version &lt;span class=&quot;s2&quot;&gt;&quot;1.8.0_51&quot;&lt;/span&gt;
Java&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;TM&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; SE Runtime Environment &lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;build 1.8.0_51-b16&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;
Java HotSpot&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;TM&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; 64-Bit Server VM &lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;build 25.51-b03, mixed mode&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;If that is the case, then we can proceed with the next steps, otherwise you might want to install Java using the instructions here: &lt;a href=&quot;https://java.com/en/download/help/mac_install.xml&quot;&gt;https://java.com/en/download/help/mac_install.xml&lt;/a&gt;&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h2 id=&quot;2-zookeeper&quot;&gt;2. Zookeeper&lt;/h2&gt;

&lt;h4 id=&quot;21-installing-zookeeper&quot;&gt;2.1. Installing Zookeeper&lt;/h4&gt;
&lt;p&gt;Zookeeper is an Apache project specifically built with the intention of helping us build and maintain distributed applications. In short, it is an invaluable tool to take much of the heavy lifting out of building distributed processes. Some further explanations and useful links can be found at the following &lt;a href=&quot;http://stackoverflow.com/questions/3662995/explaining-apache-zookeeper&quot;&gt;StackOverflow link&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To begin, go ahead and download Zookeeper (Release 3.4.9 (stable) ) from &lt;a href=&quot;http://zookeeper.apache.org/releases.html&quot;&gt;this link&lt;/a&gt;. Once the tar-zipped file has been downloaded, move it to your working directory, unpack it, and change your working directory to the Zookeeper directory.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;mv &lt;/span&gt;zookeeper-3.4.9.tar.gz /path_to_working_directory/
TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;tar&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;-zxf&lt;/span&gt; zookeeper-3.4.9.tar.gz
TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;cd &lt;/span&gt;zookeeper-3.4.9&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h4 id=&quot;22-configuring-zookeeper&quot;&gt;2.2. Configuring Zookeeper&lt;/h4&gt;
&lt;p&gt;At this point, you can create a new directory &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;data&lt;/code&gt; using the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;mkdir&lt;/code&gt; command.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;mkdir &lt;/span&gt;data&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;and also edit the Zookeeper configuration file located in the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;conf&lt;/code&gt; directory with the command&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;vim conf/zoo.cfg&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;Note that vim will automatically create the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;zoo.cfg&lt;/code&gt; file if it does not already exist. You will usually find a heavily commented &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;conf/zoo_sample.cfg&lt;/code&gt; file in most default installations of Zookeeper, but if not, insert the following 5 lines in the configuration file.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;&lt;span class=&quot;nv&quot;&gt;tickTime&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;2000
&lt;span class=&quot;nv&quot;&gt;dataDir&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;/path_to_your_working_directory/zookeeper-3.4.9/data
&lt;span class=&quot;nv&quot;&gt;clientPort&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;2181
&lt;span class=&quot;nv&quot;&gt;initLimit&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;5
&lt;span class=&quot;nv&quot;&gt;syncLimit&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;2&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h4 id=&quot;23-starting-zookeeper&quot;&gt;2.3. Starting Zookeeper&lt;/h4&gt;
&lt;p&gt;We are now ready to start our Zookeeper server, which can be achieved by running the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;zkServer.sh&lt;/code&gt; shell script:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;bin/zkServer.sh start&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;After executing this command, you should see the following output:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;ZooKeeper JMX enabled by default
Using config: /Users/ThomasVincent/Desktop/StatOfMind/kafka_spark_pipeline/zookeeper-3.4.9/bin/../conf/zoo.cfg
Starting zookeeper ... STARTED&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;You can also launch the Zookeeper CLI, which will allow you to connect to the Zookeeper server:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;bin/zkCli.sh&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;Executing this command should generate a fair amount of output, but you should see the following:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;Connecting to localhost:2181
...
...
...
Welcome to ZooKeeper!
...
...
...
WATCHER::
WatchedEvent state:SyncConnected &lt;span class=&quot;nb&quot;&gt;type&lt;/span&gt;:None path:null&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h2 id=&quot;3-apache-kafka&quot;&gt;3. Apache Kafka&lt;/h2&gt;
&lt;p&gt;Apache Kafka is a high-throughput distributed messaging system in which multiple producers send data to a Kafka cluster and which in turn serves them to consumers. Because of its efficiency and resiliency, it has become one of the &lt;em&gt;de facto&lt;/em&gt; tool to consume and publish streaming data, with applications ranging from AdTech, IoT and logging data.&lt;/p&gt;

&lt;h4 id=&quot;31-installing-kafka&quot;&gt;3.1. Installing Kafka&lt;/h4&gt;
&lt;p&gt;Let’s start by downloading the Kafka binary and installing it on our machine. For this, you will need to get version 2.11, which can be obtained &lt;a href=&quot;http://www.webhostingjams.com/mirror/apache/kafka/0.10.0.1/kafka_2.11-0.10.0.1.tgz&quot;&gt;here&lt;/a&gt;. Once this is done, simply move the Kafka binary to your working directory (for simplicity, let’s say the one where you placed your ZooKeeper binary) and unzip the Kafka binary.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;tar&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;-zxf&lt;/span&gt; kafka_2.11-0.10.0.1.tgz
TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;cd &lt;/span&gt;kafka_2.11-0.10.0.1&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h4 id=&quot;32-starting-the-kafka-server&quot;&gt;3.2. Starting the Kafka server&lt;/h4&gt;

&lt;p&gt;Because Kafka depends on Zookeeper to maintain and distribute tasks, we need to start ZooKeeper before starting the Kafka broker.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;bin/zookeeper-server-start.sh config/zookeeper.properties
TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;bin/kafka-server-start.sh config/server.properties&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;You are now ready to start your Kafka server, using the command below&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;bin/kafka-server-start.sh config/server.properties&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;Executing this command will generate a large number of logging lines, but the start and end should look like the following:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;&lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;2016-09-25 11:26:38,298] INFO starting &lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;kafka.server.KafkaServer&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;2016-09-25 11:26:38,348] INFO Connecting to zookeeper on localhost:2181 &lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;kafka.server.KafkaServer&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;
...
...
...
&lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;2016-09-25 11:26:42,039] INFO &lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;Kafka Server 0], started &lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;kafka.server.KafkaServer&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h4 id=&quot;33-starting-your-first-kafka-topic&quot;&gt;3.3. Starting your first Kafka topic&lt;/h4&gt;

&lt;p&gt;Next, you can initialize a Kafka topic by using the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;kafka-topics.sh&lt;/code&gt; utility. In a new terminal window, type the command below to create a new topic called &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;test-topic&lt;/code&gt; with a single partition and one replica factor.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;bin/kafka-topics.sh &lt;span class=&quot;nt&quot;&gt;--create&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;--zookeeper&lt;/span&gt; localhost:2181 &lt;span class=&quot;nt&quot;&gt;--replication-factor&lt;/span&gt; 1 &lt;span class=&quot;nt&quot;&gt;--partitions&lt;/span&gt; 1 &lt;span class=&quot;nt&quot;&gt;--topic&lt;/span&gt; test-topic

Created topic &lt;span class=&quot;s2&quot;&gt;&quot;topic-name&quot;&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;.&lt;/span&gt;
...
...
...
&lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;2016-09-25 11:34:32,245] INFO Partition &lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;test-topic,0] on broker 0: No checkpointed highwatermark is found &lt;span class=&quot;k&quot;&gt;for &lt;/span&gt;partition &lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;test-topic,0] &lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;kafka.cluster.Partition&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;We can also list the topics currently in the Kafka server by using the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;kafka-topics.sh&lt;/code&gt; utility script&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;bin/kafka-topics.sh &lt;span class=&quot;nt&quot;&gt;--list&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;--zookeeper&lt;/span&gt; localhost:2181
test-topic&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h4 id=&quot;34-producing-and-consuming-messages-with-kafka&quot;&gt;3.4. Producing and consuming messages with Kafka&lt;/h4&gt;

&lt;p&gt;None of what we have done is very useful if no data is sent to the Kafka brokers. Here, we will configure a producer to send messages to our broker. Configurations for a single producer can be found in &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;config/server.properties&lt;/code&gt;. A quick check in this file tells us that our broker listens to &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;localhost:9092&lt;/code&gt;. Therefore, we use the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;kafka-console-producer.sh&lt;/code&gt; utility to create a producer to send messages to &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;localhost:9092&lt;/code&gt; under our topic of choice. Once the producer is running, it will wait for input from &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;stdin&lt;/code&gt; and publish to the Kafka cluster. The default setting is to have every new line be published as a new message, but tailored producer properties can be specified in the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;config/producer.properties&lt;/code&gt; file. The command below starts a producer and writes a couple of messages to stdin:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;bin/kafka-console-producer.sh &lt;span class=&quot;nt&quot;&gt;--broker-list&lt;/span&gt; localhost:9092 &lt;span class=&quot;nt&quot;&gt;--topic&lt;/span&gt; test-topic
Hello
This is a &lt;span class=&quot;nb&quot;&gt;test
&lt;/span&gt;Hello again&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;We can then consume those messages using the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;kafka-console-consumer.sh&lt;/code&gt; utility script&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;bin/kafka-console-consumer.sh &lt;span class=&quot;nt&quot;&gt;--zookeeper&lt;/span&gt; localhost:2181 &lt;span class=&quot;nt&quot;&gt;--from-beginning&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;--topic&lt;/span&gt; test-topic
Hello
This is a &lt;span class=&quot;nb&quot;&gt;test
&lt;/span&gt;Hello again&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;So our consumer is successfully reading messages from our producer (via the broker). If you continue typing random messages in the producer terminal window, you will see them be printed out in the consumer terminal window.&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h2 id=&quot;4-setting-up-spark&quot;&gt;4. Setting up Spark&lt;/h2&gt;
&lt;p&gt;So far we have initialized Zookeeper, set up a Kafka cluster, started a producer that sends messages to a Kafka broker, and a a consumer that reads all messages send by the producer. In a real-world setting, this last step would be used to ingest, transform and possibly analyze the incoming data. Tools such as Spark or Storm work are some of the popular options used with Kafka for this type of use-case. In this series, we will leverage Spark Streaming to process incoming data. To begin we can download the Spark binary at the link &lt;a href=&quot;Download http://spark.apache.org/downloads.html&quot;&gt;here&lt;/a&gt; (click on option 4) and go ahead and install Spark. Note, it may also be wortwhile to include the following in your &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;.bashrc&lt;/code&gt; file so that you do not have to repeat these steps every time you launch a new shell:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;&lt;span class=&quot;nb&quot;&gt;export &lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;SPARK_HOME&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;/your_path_to_spark_directory/spark
&lt;span class=&quot;nb&quot;&gt;export &lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;PYTHONPATH&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;$SPARK_HOME&lt;/span&gt;/python/:&lt;span class=&quot;nv&quot;&gt;$PYTHONPATH&lt;/span&gt;
&lt;span class=&quot;nv&quot;&gt;PYTHONPATH&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;nv&quot;&gt;$SPARK_HOME&lt;/span&gt;/python/lib/py4j-0.8.2.1-src.zip:&lt;span class=&quot;nv&quot;&gt;$PYTHONPATH&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h2 id=&quot;4-word-count-with-kafka-and-spark-streaming&quot;&gt;4. Word count with Kafka and Spark Streaming&lt;/h2&gt;

&lt;p&gt;In this first part of the series, we will implement a very simplistic word count script (the “Hello World!” equivalent for Spark). However, it also seems vapid to limit ourselves to such an easy example when we have such great technology at our disposal, so the second part of this series will focus on implementing more complicated examples that may be applicable in real life scenarios.&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h4 id=&quot;41-the-most-vanilla-word-count-script&quot;&gt;4.1. The most vanilla word count script&lt;/h4&gt;

&lt;p&gt;First, let’s start by writing our word count script using the Spark Python API (PySpark), which conveniently exposes the Spark programming model to Python. You can copy the chunk of code below into a file called &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;kafka_wordcount.py&lt;/code&gt; to be placed in your working directory. While the code is self-explanatory, it is important to note that we are making use of Spark Streaming, a module built on top of Spark Core. Spark Streaming leverages Spark Core’s fast scheduling capability to perform streaming analytics and ingests data in mini-batches while performing RDD transformations on those mini-batches of data.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;sys&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pyspark&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;SparkContext&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pyspark&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;SparkConf&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pyspark.streaming&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;StreamingContext&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pyspark.streaming.kafka&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;KafkaUtils&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pyspark.sql.context&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;SQLContext&lt;/span&gt;

&lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;__name__&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;__main__&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;len&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sys&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;argv&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;!=&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;print&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Usage: kafka_wordcount.py &amp;lt;zk&amp;gt; &amp;lt;topic&amp;gt;&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;file&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sys&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;stderr&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;nb&quot;&gt;exit&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

    &lt;span class=&quot;n&quot;&gt;sc&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;SparkContext&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;appName&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;PythonStreamingKafkaWordCount&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;ssc&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;StreamingContext&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sc&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

    &lt;span class=&quot;n&quot;&gt;zkQuorum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;topic&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sys&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;argv&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:]&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;kvs&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;KafkaUtils&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;createStream&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ssc&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;zkQuorum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;spark-streaming-consumer&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;topic&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;})&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;lines&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;kvs&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;map&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;lambda&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;lines&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pprint&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;

    &lt;span class=&quot;n&quot;&gt;counts&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;lines&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;flatMap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;lambda&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;split&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot; &quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; \
                  &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;map&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;lambda&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;word&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;word&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; \
                  &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;reduceByKey&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;lambda&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;a&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;b&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;a&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;b&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;counts&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pprint&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;

    &lt;span class=&quot;n&quot;&gt;ssc&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;start&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;ssc&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;awaitTermination&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;You can now open up a new terminal window and from your working directory, input the following command:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;bin/spark-submit &lt;span class=&quot;nt&quot;&gt;--jars&lt;/span&gt; external/kafka-assembly/target/scala-&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;/spark-streaming-kafka-assembly-&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;.jar /Users/ThomasVincent/Desktop/kafka_wordcount.py localhost:2181 test-topic&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;If you continue typing random sentences in the producer terminal window, you will now see the output of your wordcount script being returned in your consumer terminal window! Congratulations, you have just successfully ran your first Kafka / Spark Streaming pipeline.&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h4 id=&quot;42-leveraging-dataframe-and-sparksql&quot;&gt;4.2. Leveraging DataFrame and SparkSQL&lt;/h4&gt;

&lt;p&gt;PySpark comes with a number of useful modules that make working with data a whole lot easier. Two particurlaly oft-used modules are SparkSQL and DataFrame, which both provide support for processing structured and semi-structured data. For more information on the many useful features of these two modules, please refer to this &lt;a href=&quot;https://www.tutorialspoint.com/spark_sql/spark_sql_quick_guide.htm&quot;&gt;link&lt;/a&gt;. For now, we can further extend our word count example by integrating the DataFrame and SparkSQL features of Spark.&lt;/p&gt;

&lt;p&gt;Copy the chunk of code below into a file called &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;kafka_spark_dataframes.py&lt;/code&gt; and place it in your working directory.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;sys&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pyspark&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;SparkContext&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pyspark&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;SparkConf&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pyspark.streaming&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;StreamingContext&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pyspark.streaming.kafka&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;KafkaUtils&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pyspark.sql&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Row&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;DataFrame&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;SQLContext&lt;/span&gt;


&lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;getSqlContextInstance&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sparkContext&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;):&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;sqlContextSingletonInstance&apos;&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;not&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;globals&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()):&lt;/span&gt;
        &lt;span class=&quot;nb&quot;&gt;globals&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;sqlContextSingletonInstance&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;SQLContext&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sparkContext&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;globals&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;sqlContextSingletonInstance&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;


&lt;span class=&quot;c1&quot;&gt;# Convert RDDs of the words DStream to DataFrame and run SQL query
&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;process&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;time&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;rdd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;):&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;print&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;========= %s =========&quot;&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;str&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;time&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;try&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;c1&quot;&gt;# Get the singleton instance of SparkSession
&lt;/span&gt;        &lt;span class=&quot;n&quot;&gt;sqlContext&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;getSqlContextInstance&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rdd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;context&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

        &lt;span class=&quot;c1&quot;&gt;# Convert RDD[String] to RDD[Row] to DataFrame
&lt;/span&gt;        &lt;span class=&quot;c1&quot;&gt;#rowRdd = rdd.map(lambda w: Row(word=w))
&lt;/span&gt;        &lt;span class=&quot;n&quot;&gt;rowRdd&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;rdd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;map&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;lambda&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;w&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Row&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;word&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;w&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;cnt&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;w&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]))&lt;/span&gt;
        &lt;span class=&quot;c1&quot;&gt;#rowRdd.pprint()
&lt;/span&gt;        &lt;span class=&quot;n&quot;&gt;wordsDataFrame&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sqlContext&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;createDataFrame&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rowRdd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;wordsDataFrame&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;show&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;

        &lt;span class=&quot;c1&quot;&gt;# Creates a temporary view using the DataFrame.
&lt;/span&gt;        &lt;span class=&quot;n&quot;&gt;wordsDataFrame&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;createOrReplaceTempView&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;words&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

        &lt;span class=&quot;c1&quot;&gt;# Do word count on table using SQL and print it
&lt;/span&gt;        &lt;span class=&quot;n&quot;&gt;wordCountsDataFrame&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; \
             &lt;span class=&quot;n&quot;&gt;spark&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sql&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;select SUM(cnt) as total from words&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;wordCountsDataFrame&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;show&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;except&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
       &lt;span class=&quot;k&quot;&gt;pass&lt;/span&gt;

&lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;__name__&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;__main__&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;len&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sys&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;argv&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;!=&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;print&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Usage: kafka_spark_dataframes.py &amp;lt;zk&amp;gt; &amp;lt;topic&amp;gt;&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;file&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sys&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;stderr&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;nb&quot;&gt;exit&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

    &lt;span class=&quot;n&quot;&gt;sc&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;SparkContext&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;appName&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;PythonStreamingKafkaWordCount&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;sqlContext&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;SQLContext&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sc&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;ssc&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;StreamingContext&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sc&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;


    &lt;span class=&quot;n&quot;&gt;zkQuorum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;topic&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sys&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;argv&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:]&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;kvs&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;KafkaUtils&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;createStream&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ssc&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;zkQuorum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;spark-streaming-consumer&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;topic&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;})&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;lines&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;kvs&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;map&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;lambda&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;words&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;lines&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;flatMap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;lambda&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;split&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot; &quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; \
        &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;map&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;lambda&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;word&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;word&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; \
        &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;reduceByKey&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;lambda&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;a&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;b&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;a&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;b&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

    &lt;span class=&quot;n&quot;&gt;words&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;foreachRDD&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;process&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

    &lt;span class=&quot;n&quot;&gt;ssc&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;start&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;ssc&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;awaitTermination&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;In a new terminal window, input the following command (and make sure you stop the previous word count script!):&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;TLV-private:ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;bin/spark-submit &lt;span class=&quot;nt&quot;&gt;--jars&lt;/span&gt; external/kafka-assembly/target/scala-&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;/spark-streaming-kafka-assembly-&lt;span class=&quot;k&quot;&gt;*&lt;/span&gt;.jar /Users/ThomasVincent/Desktop/kafka_spark_dataframes.py localhost:2181 test-topic&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;Once again, typing random sentences in the producer terminal window will return a wordcount in your consumer terminal window! The only difference to the previous script is that we are now leveraging the SparkSQL module to perform this task.&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h2 id=&quot;next-steps&quot;&gt;Next Steps&lt;/h2&gt;

&lt;p&gt;As mentioned previously, the word count script represents a basic use of the technology at hand, and does not do justice to the capabilities of the tools. In the next part of this blog series, we will look to implement some more complicated scenarios, with a focus on data science rather than straightforward engineering pipeline.&lt;/p&gt;
</description>
        <pubDate>Sun, 25 Sep 2016 00:00:00 +0000</pubDate>
        <link>http://tlfvincent.github.io//2016/09/25/kafka-spark-pipeline-part-1/</link>
        <guid isPermaLink="true">http://tlfvincent.github.io//2016/09/25/kafka-spark-pipeline-part-1/</guid>
        
        
      </item>
    
      <item>
        <title>A map of elevators in NYC</title>
        <description>&lt;script type=&quot;text/javascript&quot; src=&quot;http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML&quot;&gt;&lt;/script&gt;

&lt;p&gt;Not too long ago, I came across a random tweet pointing to a &lt;a href=&quot;https://github.com/datanews&quot;&gt;GitHub repository&lt;/a&gt; full of miscallaneous datasets. I was imemdiately excited by the various data science and visualization problems tha I could take on and immediately decided to get my hands dirty. One of the first datasets that I saw was a dataset called &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;eleavtors&lt;/code&gt;. As stated on the github repo, it contains&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;A list of registered elevator devices in New York City provided by the Department of Buildings in response to a September 2015 FOIL request. The data was received on a DVD in November 2015. The spreadsheet contains information on 76,088 elevators in New York City.
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;As a resident of NYC, and someone who has mayny times complained abut going to friends houses with no elevators (admittedly a first-world problem…), I wanted to take a look at that data. (Full disclosure, half-way through this little project, I realized that fivethirtyeight had already beaten me to the punch and performed an &lt;a href=&quot;http://fivethirtyeight.com/features/new-yorks-elevators-define-the-city/&quot;&gt;analysis of its own&lt;/a&gt;.&lt;/p&gt;

&lt;center&gt;
   &lt;h4&gt;A map of elevators in NYC&lt;/h4&gt;
  &lt;iframe width=&quot;900&quot; height=&quot;600&quot; src=&quot;https://statofmind-blog.nyc3.digitaloceanspaces.com/images/elevator_map_nyc.html&quot; frameborder=&quot;0&quot; allowfullscreen=&quot;allowfullscreen&quot;&gt;&lt;/iframe&gt;
&lt;/center&gt;

&lt;p&gt;The main point of this post is to illustrate how simple it is to produce interactive leaflet map using the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;leaflet&lt;/code&gt; and &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;htmlwidgets&lt;/code&gt; package in &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;R&lt;/code&gt;. in fact, it is only a single line of code to produce the map above, the rest is just processing the data into the correct format. A word of advice when using the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;leaflet&lt;/code&gt; package at the zipcode level: the library expects 5 digits for all US-based zipcode, while many databases produce zipcodes that sometimes contain 4 digits. If that happens, it is necessary to pad “0”s to the zipcode until the string in question has a length of five. This can be achieved using a neat little trick that is shown in line 11 of the code below!&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dplyr&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;table&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;leaflet&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;htmlwidgets&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# read in prison details and zip coordinates
# load required libraries
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;table&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rCharts&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dplyr&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;leaflet&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# read in source data and process
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;elevators_dt&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;fread&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;nyc_elevators.csv&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;elevators_dt&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;elevators_dt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;elevators_dt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;STREET_NAME&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;!=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;DUMMY RECORD&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# define function to extract zip code of elevators
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;extract_zip&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;nchar&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;9&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;substring&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;as&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;character&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;else&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# count frequency of elevators by zip code and coordinates
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;zip_cnt&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;elevators_dt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[,&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;N&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;by&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ZIP_CODE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;zip_cnt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;zip&apos;&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;unlist&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sapply&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;zip_cnt&lt;/span&gt;&lt;span class=&quot;err&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ZIP_CODE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;extract_zip&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)))]&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;coord_pairs&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;elevators_dt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[,&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;N&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;by&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;list&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;LATITUDE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;LONGITUDE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)]&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# generate interactive leaflet map of elevators in NYC
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;leaflet&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;coord_pairs&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;
     &lt;span class=&quot;n&quot;&gt;addTiles&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;http://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; 
     &lt;span class=&quot;n&quot;&gt;attribution&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;Map tiles by &amp;lt;a href=&quot;http://stamen.com&quot;&amp;gt;Stamen Design&amp;lt;/a&amp;gt;,
     &amp;lt;a href=&quot;http://creativecommons.org/licenses/by/3.0&quot;&amp;gt;CC BY 3.0&amp;lt;/a&amp;gt; Map data
     &amp;lt;a href=&quot;http://www.openstreetmap.org/copyright&quot;&amp;gt;OpenStreetMap&amp;lt;/a&amp;gt;&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt; 
     &lt;span class=&quot;n&quot;&gt;setView&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;mf&quot;&gt;73.977896&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mf&quot;&gt;40.731724&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;zoom&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;12&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt; 
     &lt;span class=&quot;n&quot;&gt;addCircles&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;LONGITUDE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;~&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;LATITUDE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;weight&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;radius&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;#ffa500&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;stroke&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;TRUE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;fillOpacity&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;mf&quot;&gt;0.8&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;addLegend&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;bottomright&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;colors&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;#ffa500&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;labels&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Dunkin&apos;&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;In Connecticut&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;saveWidget&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;file&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;elevator_map_nyc.html&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

</description>
        <pubDate>Wed, 31 Aug 2016 00:00:00 +0000</pubDate>
        <link>http://tlfvincent.github.io//2016/08/31/elevators-in-nyc/</link>
        <guid isPermaLink="true">http://tlfvincent.github.io//2016/08/31/elevators-in-nyc/</guid>
        
        
      </item>
    
      <item>
        <title>The biggest liars in US politics</title>
        <description>&lt;style&gt;
.center-image
{
    margin: 0 auto;
    display: block;
}
&lt;/style&gt;

&lt;script type=&quot;text/javascript&quot; src=&quot;http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML&quot;&gt;&lt;/script&gt;

&lt;hr /&gt;

&lt;h2 id=&quot;who-lies-the-most-in-us-politics&quot;&gt;Who lies the most in US politics?&lt;/h2&gt;

&lt;p&gt;Most Americans, and anyone that follows US politics, will be aware of the tremendous changes and volatility that has struck the US political landscape in the past year. The ascent of Donald Trump from a billionaire entertainer to a fully fledged presidential candidate, alongside the unexpected popularity of Bernie Sanders and the nomination of Hillary Clinton as the first female presidential candidate, has catapulted this political season into one of the most entertaining, vicious and confusing year.&lt;/p&gt;

&lt;p&gt;There have been a number of outlandish claims made recently, and one of the most important contribution of journalistic work is to comment and verify the veracity of statements made by those major political figures. One example of such work is published and maintained by &lt;a href=&quot;http://www.politifact.com/truth-o-meter/&quot;&gt;Politifact&lt;/a&gt;, which regularly fact-checks statements made by a variety of sources, and displays the information in the following way:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/img/politifact_example.png&quot; alt=&quot;Politifact example&quot; /&gt;&lt;/p&gt;

&lt;p&gt;I have casually browsed this website for a while, but I recently decided to try and surface some more information out of it. In particular, I wanted to:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;visualize a summary of the overall distribution of &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;statement veracity&lt;/code&gt; for each individual.&lt;/li&gt;
  &lt;li&gt;build a &lt;a href=&quot;https://statofmind.shinyapps.io/truth-o-meter/&quot;&gt;web app&lt;/a&gt; to visualize direct comparisons of statements between individuals.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In the following post, I will collect and analyze some of the Politifact data, while also going through the steps that allowed me to create the &lt;a href=&quot;https://statofmind.shinyapps.io/truth-o-meter/&quot;&gt;web application&lt;/a&gt; displayed below&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://statofmind.shinyapps.io/truth-o-meter/&quot;&gt;&lt;img src=&quot;/img/politifact_app_screenshot.png&quot; alt=&quot;Web application screenshot&quot; /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h3 id=&quot;obtaining-data-on-political-statements&quot;&gt;Obtaining data on political statements&lt;/h3&gt;

&lt;p&gt;To begin, I wrote a Python script to scrape all the required data on Politifact. The code snippet below iterates through each page of the Politifact website to extract and process the HTML source code containing the following data points:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;the individual that made the statement&lt;/li&gt;
  &lt;li&gt;a URL to a headshot of the individual&lt;/li&gt;
  &lt;li&gt;a categorical variable that states whether the statement is deemed to belong in one of the following categories (True; Mostly True; Half-True; Mostly False;  False; Pants on Fire!; No Flip; Half Flip; Full Flop).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Below is the source code used to scrape the Politifact data
 &lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;urllib2&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;bs4&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;BeautifulSoup&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pandas&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;re&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;json&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;string&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;itertools&lt;/span&gt;


&lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;get_page_source&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;page&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;):&lt;/span&gt;
    &lt;span class=&quot;s&quot;&gt;&apos;&apos;&apos;
    get HTML content of page
    Params
    args: 
    returns:
    &apos;&apos;&apos;&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;try&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;url&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;http://www.politifact.com/truth-o-meter/statements/?page={}&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;format&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;page&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;response&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;urllib2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;urlopen&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;page_source&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;response&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;read&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;soup&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;BeautifulSoup&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;page_source&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;html5lib&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;soup&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;except&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;print&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;Could not obtain data for page {}&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;format&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;page&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;bp&quot;&gt;None&lt;/span&gt;


&lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;extract_truth&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;table&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                  &lt;span class=&quot;n&quot;&gt;truth_meter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                  &lt;span class=&quot;n&quot;&gt;image_source&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                  &lt;span class=&quot;n&quot;&gt;statement_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;):&lt;/span&gt;
    &lt;span class=&quot;s&quot;&gt;&apos;&apos;&apos;extract statement text, image of candidate and truth of statement&apos;&apos;&apos;&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;truth&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;table&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;fact&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;item&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;alt&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;item&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;truth&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;findAll&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;img&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)]&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;images&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;item&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;src&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;item&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;truth&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;findAll&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;img&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;.jpg&apos;&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;item&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;src&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]]&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;statement&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;item&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;strip&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;item&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;truth&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;findAll&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;a&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;class&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;link&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;})]&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;fact&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;truth_meter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;truth_meter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fact&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]].&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;append&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fact&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;statement_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fact&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]].&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;append&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;statement&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;else&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;truth_meter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fact&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[]&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;truth_meter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fact&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]].&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;append&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fact&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;statement_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fact&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[]&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;statement_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fact&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]].&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;append&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;statement&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;image_source&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fact&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;images&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;truth_meter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;image_source&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;statement_text&lt;/span&gt;


&lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;process_page_data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;soup&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                      &lt;span class=&quot;n&quot;&gt;truth_meter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                      &lt;span class=&quot;n&quot;&gt;image_source&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                      &lt;span class=&quot;n&quot;&gt;statement_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;):&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;try&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;table&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;soup&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;findAll&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;div&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;class&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;scoretable__item&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;})&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;truth_meter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;image_source&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;statement_text&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;extract_truth&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;table&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                                                                  &lt;span class=&quot;n&quot;&gt;truth_meter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                                                                  &lt;span class=&quot;n&quot;&gt;image_source&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                                                                  &lt;span class=&quot;n&quot;&gt;statement_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;truth_meter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;image_source&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;statement_text&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;except&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;truth_meter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;image_source&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;statement_text&lt;/span&gt;


&lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;main&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;():&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;truth_meter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;image_source&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;statement_text&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{},&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{},&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{}&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;page&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;range&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;198&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;):&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;print&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;page&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;soup&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;get_page_source&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;page&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;soup&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;is&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;not&lt;/span&gt; &lt;span class=&quot;bp&quot;&gt;None&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;truth_meter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;image_source&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;statement_text&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;process_page_data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;soup&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                                                                          &lt;span class=&quot;n&quot;&gt;truth_meter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                                                                          &lt;span class=&quot;n&quot;&gt;image_source&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                                                                          &lt;span class=&quot;n&quot;&gt;statement_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

    &lt;span class=&quot;c1&quot;&gt;# process statement strings for R
&lt;/span&gt;    &lt;span class=&quot;n&quot;&gt;statement_text_processed&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{}&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;k&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;val&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;statement_text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;items&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;():&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;val_no_punctuation&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;join&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;l&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;l&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sent&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;l&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;not&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;string&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;punctuation&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; \
                              &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sent&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;val&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;val_lower&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sent&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;lower&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sent&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;val_no_punctuation&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;len&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;val_lower&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;val_tokenized&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos; &apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;join&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;val_lower&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;split&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos; &apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;else&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;val_tokenized&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;val_lower&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;].&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;split&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos; &apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;statement_text_processed&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;k&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;val_tokenized&lt;/span&gt;

    &lt;span class=&quot;k&quot;&gt;with&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;open&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;politifact_statements.txt&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;w&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;outfile&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;json&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dump&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;truth_meter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;outfile&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

    &lt;span class=&quot;k&quot;&gt;with&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;open&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;politifact_statements_text.txt&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;w&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;outfile&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;json&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dump&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;statement_text_processed&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;outfile&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

    &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;DataFrame&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;from_dict&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;image_source&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;items&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;())&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;to_csv&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;politifact_image_source.csv&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;index&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;False&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;encoding&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;utf-8&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;


&lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;__name__&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;__main__&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;main&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt; &lt;/p&gt;

&lt;h3 id=&quot;a-quick-analysis-of-the-politifact-data&quot;&gt;A quick analysis of the Politifact data&lt;/h3&gt;

&lt;p&gt;With the data all gathered, I proceeded to perform a small analysis of the data. To begin, I looked at the different types of comments stated by the entities in the Politifact data. For example, what proportion of Donald Trump’s comments were True or False? Or what proportion of Donald Trump’s comments were a complete U-turn to his previous comments? For the sake of simplicity, I restricted the analysis to the 20 most common entities in the Politifact data, which produced the plot below:&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/img/proportion_veracity_comments_politifact.png&quot; alt=&quot;Web application screenshot&quot; /&gt;&lt;/p&gt;

&lt;p&gt;So what do we see? As expected, “facts” reported through blogs or social media networks (Facebook posts) tend to be predominantly false. On the reverse, Democrats (Hillary Clinton, Barack Obama, Bernie Sanders) tend to speak truthful comments. It is interesting to note that establishment Republicans such as Jeb Bush, Marco Rubio, Scott Walker and Rick Scott also trend towards true comments, but have a non-negligible proportion of “Mostly False” comments. The conservative-leaning democrat Charlie Crist follows a similar pattern. Finally, the two most “anti-establishement” Republicans, Donald Trump and Ted Cruz, blow out their fellow politicians with a majority of “False” or “Mostly False” comments.&lt;/p&gt;

&lt;p&gt;The figure below shows an aggregated view of the total proportion of True and False comments made by each entity, which clearly shows the disparities between Democrats and Republicans.&lt;/p&gt;

&lt;p&gt;&lt;img src=&quot;/img/proportion_false_true_comments_politifact.png&quot; alt=&quot;Web application screenshot&quot; /&gt;&lt;/p&gt;

&lt;p&gt;At this point, it is important to raise a potential caveat of this analysis, which is that we are unaware of amy potential bias within the Politifact data. It is conceivable that the people curating the comments are democratic-leaning, or that the sample of comments taken for each entity is not representative. My prior opinion makes me think that this is not the case, but unfortunately I have no data to back this up.&lt;/p&gt;

&lt;h3 id=&quot;building-the-politifact-web-app&quot;&gt;Building the Politifact web app&lt;/h3&gt;

&lt;p&gt;The next step was to build a Shiny app that would allow anyone to perform head-to-head comparisons between individuals in the Politifact data. For simplicity, I have &lt;a href=&quot;https://statofmind.shinyapps.io/truth-o-meter/&quot;&gt;hosted the app on shinyapps.io&lt;/a&gt;, but in order to ensure full reproducibility, I have also “containerized” the app using Docker. If you have not used or heard of Docker, their own website gives a very good description:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;Docker containers wrap up a piece of software in a complete filesystem that contains everything it needs to run: code, runtime, system tools, system libraries – anything you can install on a server. This guarantees that it will always run the same, regardless of the environment it is running in.`&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;With that in mind, the simplistic development workflow used to create the web app was:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Build the shiny app locally (i.e. on your local machine) and ensure that everything works just as expected.&lt;/li&gt;
  &lt;li&gt;Create a file called &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Dockerfile&lt;/code&gt;, which we will use to place all the relevant instructions and commands, as well as the environnment variables and configurations that will define our container.&lt;/li&gt;
  &lt;li&gt;Build and run the Docker container to check that the app behaves as expected. If not, iterate over the steps above until you are satisfied.&lt;/li&gt;
  &lt;li&gt;Reap the benefits of fully reproducible software across any computing platform!&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The source code for the full web app can be found at the &lt;a href=&quot;https://github.com/tlfvincent/political_liars&quot;&gt;following GitHub repository&lt;/a&gt;, and has the following directory structure:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-bash&quot; data-lang=&quot;bash&quot;&gt;&lt;span class=&quot;nb&quot;&gt;.&lt;/span&gt;
├── Dockerfile
├── README.md
├── app
│   ├── politifact_image_source.csv
│   ├── politifact_statements.txt
│   ├── politifact_statements_text.txt
│   ├── server.R
│   └── ui.R
├── requirements.txt
├── scrape_politifact.py
└── shiny-server.sh

1 directory, 10 files&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;By cloning this &lt;a href=&quot;https://github.com/tlfvincent/political_liars&quot;&gt;Github directory&lt;/a&gt; and typing the commands below, you will be able to have a fully working web app.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-bash&quot; data-lang=&quot;bash&quot;&gt;&lt;span class=&quot;c&quot;&gt;# build Docker container with tag name pol_app&lt;/span&gt;
docker build &lt;span class=&quot;nt&quot;&gt;-t&lt;/span&gt; pol_app &lt;span class=&quot;nb&quot;&gt;.&lt;/span&gt;

&lt;span class=&quot;c&quot;&gt;# run Docker container and mirror port 3838&lt;/span&gt;
docker run &lt;span class=&quot;nt&quot;&gt;-p&lt;/span&gt; 3838:3838 &lt;span class=&quot;nt&quot;&gt;-t&lt;/span&gt; pol_app&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;&lt;sub&gt; Note: the above was tested on a Ubuntu machine hosted on DigitlOcean, I’m assuming you will have to slightly tweak things when working on a local machine (i.e. if using something like Boot2Docker.&lt;/sub&gt;&lt;/p&gt;

&lt;p&gt;A snapshot of the app is displayed below. It allows to select two political entities and highlights words most often stated by each, along with the overall distribution of types of comments (true, false, etc…) that they made.
&lt;img src=&quot;/img/politifact_app_screenshot.png&quot; alt=&quot;Web application screenshot&quot; /&gt;&lt;/p&gt;

&lt;h3 id=&quot;conclusions&quot;&gt;Conclusions&lt;/h3&gt;
&lt;p&gt;We scraped and analyzed Politifact data, a resource that fact-checks statements made by various political entities. We found that statements conveyed via blogs or social media were often misleading. Interestingly, we also uncovered distinct differences between major political figureheads within the Republican and Democratic parties. While it is important to note that the inherent source data may be biased, we found that Democrats were generally more truthful in their political statements. To enable further deep dive of the data, we also build a light-weight app that enables head-to-head comparisons between any pair of entities in the Politifact data. In doing so, we obtained summarized views of the veracity of comments made by entities, as well as the broad topics that they cover.&lt;/p&gt;
</description>
        <pubDate>Sat, 11 Jun 2016 00:00:00 +0000</pubDate>
        <link>http://tlfvincent.github.io//2016/06/11/biggest-political-liars/</link>
        <guid isPermaLink="true">http://tlfvincent.github.io//2016/06/11/biggest-political-liars/</guid>
        
        
      </item>
    
      <item>
        <title>Data science with Docker</title>
        <description>&lt;style&gt;
.center-image
{
    margin: 0 auto;
    display: block;
}
&lt;/style&gt;

&lt;script type=&quot;text/javascript&quot; src=&quot;http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML&quot;&gt;&lt;/script&gt;

&lt;hr /&gt;

&lt;h2 id=&quot;using-docker-to-facilitate-your-data-science-pipelines&quot;&gt;Using docker to facilitate your data science pipelines&lt;/h2&gt;

&lt;p&gt;Until recently, and like many other fellow data scientists I have talked to, I built data science pipelines on my local machine or a remote host while relying on virtual environments. In doing so, I ensured some degree of replicability by keeping check of language versions, library versions, and so on. While this is a fairly efficient process that facilitated shared coding and portability, I do occasionally run into a common, recurring error.&lt;/p&gt;

&lt;p&gt;For better or for worse, much of my development is performed on my local machine, and on the occasion where datasets or RAM requirements are too large, I will rely on a DigitalOcean droplet or EC2 instance to resolve that problem. However, neither of these cases tend to be the final step, as I will often refactor/modify my code in order to productionalize it into something that won’t terrify the code delivery team. In many cases, this will involve transitioning to a different machine or OS, such as moving from MAC OS to Ubuntu 14.04, and this is where the pain points with virtual environments appear. Often I will find myself configuring the OS to my requirements, installing the correct Python version, gcc compilers and BLAS libraries, which invariably leads to minor (sometimes major) conflicts, bugs and annoyances. More importantly, there is no way to really persist all these efforts should you wish to run this on another machine or have someone reproduce your code independently.&lt;/p&gt;

&lt;p&gt;Docker solves all these issues!&lt;/p&gt;

&lt;h3 id=&quot;what-does-docker-do&quot;&gt;What does Docker do?&lt;/h3&gt;

&lt;p&gt;Paraphrasing from their website,&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;Docker containers wrap up a piece of software in a complete filesystem that contains everything it needs to run: code, runtime, system tools, system libraries – anything you can install on a server. This guarantees that it will always run the same, regardless of the environment it is running in.
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;In other words, Docker offers the ability to &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;contain&lt;/code&gt; ALL your code and dependencies into a single &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;container&lt;/code&gt;, and never have to worry about it ever again (actually those were exactly the same words, but less well-written…). This was an intriguing concept, and the more qualified engineers around me assured me that it was also a &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;good&lt;/code&gt; concept, so I decided to integrate this as part of my regular workflow. In the following, I will go through the steps to get started and create your first Docker container for a data science project, and hopefully convince you that Docker should be integrated as part of your regular workflow along the way!&lt;/p&gt;

&lt;p&gt;If you haven’t already, you can install Docker on your local machine using the instructions at the following link &lt;a href=&quot;https://docs.docker.com/engine/installation/mac/&quot;&gt;https://docs.docker.com/engine/installation/mac/&lt;/a&gt;. Once that is done, you can go ahead and find the Docker Quickstart Terminal icon, double-click on it, and see a new terminal window appear with the following output:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;Last login: Tue Feb 16 21:43:51 on ttys005
bash &lt;span class=&quot;nt&quot;&gt;--login&lt;/span&gt; &lt;span class=&quot;s1&quot;&gt;&apos;/Applications/Docker/Docker Quickstart Terminal.app/Contents/Resources/Scripts/start.sh&apos;&lt;/span&gt;
TLV-private:~ ThomasVincent&lt;span class=&quot;nv&quot;&gt;$ &lt;/span&gt;bash &lt;span class=&quot;nt&quot;&gt;--login&lt;/span&gt; &lt;span class=&quot;s1&quot;&gt;&apos;/Applications/Docker/Docker Quickstart Terminal.app/Contents/Resources/Scripts/start.sh&apos;&lt;/span&gt;
Machine default already exists &lt;span class=&quot;k&quot;&gt;in &lt;/span&gt;VirtualBox.
Starting machine default...
&lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;default&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt; Starting VM...
Started machines may have new IP addresses. You may need to re-run the &lt;span class=&quot;sb&quot;&gt;`&lt;/span&gt;docker-machine &lt;span class=&quot;nb&quot;&gt;env&lt;/span&gt;&lt;span class=&quot;sb&quot;&gt;`&lt;/span&gt; command.

Regenerate TLS machine certs?  Warning: this is irreversible. &lt;span class=&quot;o&quot;&gt;(&lt;/span&gt;y/n&lt;span class=&quot;o&quot;&gt;)&lt;/span&gt;: Regenerating TLS certificates
Detecting the provisioner...
Copying certs to the &lt;span class=&quot;nb&quot;&gt;local &lt;/span&gt;machine directory...
Copying certs to the remote machine...
Setting Docker configuration on the remote daemon...
Setting environment variables &lt;span class=&quot;k&quot;&gt;for &lt;/span&gt;machine default...&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;                    ##         .
              ## ## ##        ==
           ## ## ## ## ##    ===
       /&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;&quot;\___/ ===
  ~~~ {~~ ~~~~ ~~~ ~~~~ ~~~ ~ /  ===- ~~~
       \______ o           __/
         \    \         __/
          \____\_______/
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;docker is configured to use the default machine with IP XXX.XXX.XX.XXX
For &lt;span class=&quot;nb&quot;&gt;help &lt;/span&gt;getting started, check out the docs at https://docs.docker.com

TLV-private:~ ThomasVincent&lt;span class=&quot;err&quot;&gt;$&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;Now that Docker is up and running, we can begin to build the main components of our container. For now, we will assume that you have a Python script that you want to automatically run every time you run a Docker container (although as we will see, other use cases can easily be adapted).&lt;/p&gt;

&lt;h3 id=&quot;the-basics&quot;&gt;The basics&lt;/h3&gt;

&lt;p&gt;The very simplistic workflow for creating your own Docker container is the following:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Create a file called &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Dockerfile&lt;/code&gt;, which we will use to place the relevant instructions and commands that will define what our container can do.&lt;/li&gt;
  &lt;li&gt;Build the Docker container, this will install and apply all the environnment variables and configurations that you have specified in the Dockerfile.&lt;/li&gt;
  &lt;li&gt;Run the Dockerfile and reap the benefits of fully reproducible research across any computing platform!&lt;/li&gt;
&lt;/ul&gt;

&lt;h4 id=&quot;writing-your-own-dockerfile&quot;&gt;Writing your own Dockerfile&lt;/h4&gt;
&lt;p&gt;A Dockerfile is usually started by specifying a base image from which you would like to start. Here, we will use the Ubuntu 14.04 image. It is also customary to specify the maintainer/creator of the Docker container you are about to create.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;&lt;span class=&quot;c&quot;&gt;# specifiy base image&lt;/span&gt;
FROM ubuntu:14.04

&lt;span class=&quot;c&quot;&gt;# provide creator/maintainer of this Dockerfile&lt;/span&gt;
MAINTAINER Thomas Vincent &amp;lt;your_email_address@something.com&amp;gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;The ubuntu:14.04 image comes as a very barebones implementation of the Linux OS, so it is up to us to specify some of the useful system tools and libraries that we would like to include:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;&lt;span class=&quot;c&quot;&gt;# Update the sources list&lt;/span&gt;
RUN apt-get update

&lt;span class=&quot;c&quot;&gt;# install useful system tools and libraries&lt;/span&gt;
RUN apt-get &lt;span class=&quot;nb&quot;&gt;install&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;-y&lt;/span&gt; libfreetype6-dev &lt;span class=&quot;o&quot;&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
    apt-get &lt;span class=&quot;nb&quot;&gt;install&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;-y&lt;/span&gt; libglib2.0-0 &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       libxext6 &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       libsm6 &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       libxrender1 &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       libblas-dev &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       liblapack-dev &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       gfortran &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       libfontconfig1 &lt;span class=&quot;nt&quot;&gt;--fix-missing&lt;/span&gt;

RUN apt-get &lt;span class=&quot;nb&quot;&gt;install tar&lt;/span&gt; &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                    git &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                    curl &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                    nano &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                    wget &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                    dialog &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                    net-tools &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                    build-essential&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;At this point, we are in a good position to also install the Python and the &lt;em&gt;pip&lt;/em&gt; Python package manager.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;&lt;span class=&quot;c&quot;&gt;# install Python and pip package manager&lt;/span&gt;
RUN apt-get &lt;span class=&quot;nb&quot;&gt;install&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;-y&lt;/span&gt; python &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       python-dev &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       python-distribute &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       python-pip&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;As &lt;em&gt;pip&lt;/em&gt; is installed, we can now go ahead and install commonly used Python libraries and other more specific ones that may be required by your Python script or web app.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;&lt;span class=&quot;c&quot;&gt;# intall useful and/or required Python libraries to run your script&lt;/span&gt;
RUN pip &lt;span class=&quot;nb&quot;&gt;install &lt;/span&gt;matplotlib &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                seaborn &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                pandas &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                numpy &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                scipy &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                sklearn &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                python-dateutil &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                gensim&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;Once you are sure that all the required Python libraries have been added, you can go ahead and define the command that you would like to when your Docker conatiner starts. In this case, we specify to run your Python script.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;&lt;span class=&quot;c&quot;&gt;# define command to when Docker container starts&lt;/span&gt;
ENTRYPOINT &lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;python&quot;&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;]&lt;/span&gt;
CMD &lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;my_script.py&quot;&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;]&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;In all, your Dockerfile should look like this&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;&lt;span class=&quot;c&quot;&gt;# specifiy base image&lt;/span&gt;
FROM ubuntu:14.04

&lt;span class=&quot;c&quot;&gt;# provide creator/maintainer of this Dockerfile&lt;/span&gt;
MAINTAINER Thomas Vincent &amp;lt;your_email_address@something.com&amp;gt;

&lt;span class=&quot;c&quot;&gt;# Update the sources list&lt;/span&gt;
RUN apt-get update

&lt;span class=&quot;c&quot;&gt;# install useful system tools and libraries&lt;/span&gt;
RUN apt-get &lt;span class=&quot;nb&quot;&gt;install&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;-y&lt;/span&gt; libfreetype6-dev &lt;span class=&quot;o&quot;&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
    apt-get &lt;span class=&quot;nb&quot;&gt;install&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;-y&lt;/span&gt; libglib2.0-0 &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       libxext6 &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       libsm6 &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       libxrender1 &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       libblas-dev &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       liblapack-dev &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       gfortran &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       libfontconfig1 &lt;span class=&quot;nt&quot;&gt;--fix-missing&lt;/span&gt;

RUN apt-get &lt;span class=&quot;nb&quot;&gt;install tar&lt;/span&gt; &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                    git &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                    curl &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                    nano &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                    wget &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                    dialog &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                    net-tools &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                    build-essential

&lt;span class=&quot;c&quot;&gt;# install Python and pip package manager&lt;/span&gt;
RUN apt-get &lt;span class=&quot;nb&quot;&gt;install&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;-y&lt;/span&gt; python &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       python-dev &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       python-distribute &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                       python-pip

&lt;span class=&quot;c&quot;&gt;# intall useful and/or required Python libraries to run your script&lt;/span&gt;
RUN pip &lt;span class=&quot;nb&quot;&gt;install &lt;/span&gt;matplotlib &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                seaborn &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                pandas &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                numpy &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                scipy &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                sklearn &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                python-dateutil &lt;span class=&quot;se&quot;&gt;\&lt;/span&gt;
                gensim

&lt;span class=&quot;c&quot;&gt;# define command to when Docker container starts&lt;/span&gt;
ENTRYPOINT &lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;python&quot;&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;]&lt;/span&gt;
CMD &lt;span class=&quot;o&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;my_script.py&quot;&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;]&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;Considering how much Docker can simplify your life, this is a pretty small and straighforward amount of code to have to write!&lt;/p&gt;

&lt;h3 id=&quot;building-and-running-your-docker-container&quot;&gt;Building and running your Docker container&lt;/h3&gt;
&lt;p&gt;Now that you have written your own Dockerfile, you can go ahead and build the entire image. If you haven’t already, follow the instructions at the beginning of this post to ensure that you are running from within the Docker Terminal. Be sure that you are also working from within the directory in which your Dockerfile and Python script are located. You can then build your first Docker image by simply typing:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;docker build &lt;span class=&quot;nt&quot;&gt;-t&lt;/span&gt; your_image_name .&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;The &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;-t&lt;/code&gt; flag allows you to name the docker container as whatever pleases you. When pressing enter, you should see a fair amount of logging information and other miscallaneous output displayed to your console. Once the build is finished, you can then go straight ahead and run your Docker image, which will compute or output whatever your Python script was intended to do!&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;docker run &lt;span class=&quot;nt&quot;&gt;-t&lt;/span&gt; your_image_name&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;h3 id=&quot;shutting-down-your-docker-container&quot;&gt;Shutting down your docker container&lt;/h3&gt;
&lt;p&gt;Once you are done with your docker container, you can shut it down by using the command&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;docker &lt;span class=&quot;nb&quot;&gt;rm&lt;/span&gt; &lt;span class=&quot;nt&quot;&gt;-f&lt;/span&gt; CONTAINER_ID&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;where the CONTAINER_ID value can be found by running&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-sh&quot; data-lang=&quot;sh&quot;&gt;docker ps&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;h3 id=&quot;conclusions&quot;&gt;Conclusions&lt;/h3&gt;
&lt;p&gt;We have covered a simple use case for Docker that allowed us to produce a running instance of a Python script that - along with all of its required dependencies - can be seamlessly ran across any system. In many ways, we have only scratched the surface of what can be done with Docker, but hopefully this demonstrates how useful it can be (and that is why it has seen an explosive growth in adoption across all segments of the tech industry!)&lt;/p&gt;
</description>
        <pubDate>Sat, 30 Apr 2016 00:00:00 +0000</pubDate>
        <link>http://tlfvincent.github.io//2016/04/30/data-science-with-docker/</link>
        <guid isPermaLink="true">http://tlfvincent.github.io//2016/04/30/data-science-with-docker/</guid>
        
        
      </item>
    
      <item>
        <title>Player and roster similarity in the NBA</title>
        <description>&lt;style&gt;
.center-image
{
    margin: 0 auto;
    display: block;
}
&lt;/style&gt;

&lt;script type=&quot;text/javascript&quot; src=&quot;http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML&quot;&gt;&lt;/script&gt;

&lt;hr /&gt;

&lt;p&gt;Recently, professional sports associations and teams have made big strides towards leveraging data to inform both personel and on-the-field decision making. While the four major leagues (NBA, NFL, MLB, NHL) vary in terms of where they are in that process, most people would argue that the NBA is at the forefront of this movement. If you have never heard of SportVu before, they are a company that has partnered with the NBA to “utilize a six-camera system installed in basketball arenas to track the real-time positions of players and the ball 25 times per second. Utilizing this tracking data, SportVu is able to create a wealth of innovative statistics based on speed, distance, player separation and ball possession.” As stated, the release of aggregated SportsVu data has offered brand new insights into how the game of basketball is played, and more importantly, how each individual plays the game.&lt;/p&gt;

&lt;p&gt;In this post, I looked at the SportVu data available for all NBA players active during the 2014-2015 season. More particularly, I was interested in finding out whether SportVu data could be leveraged to discover players with similar playing styles, but also to discover teams with similar rosters. To begin, I started off by writing a quick Python script to scrape SportsVu data from &lt;a href=&quot;stats.nba.com&quot;&gt;http://www.stats.com/sportvu/sportvu-basketball-media/&lt;/a&gt;&lt;/p&gt;

&lt;h3 id=&quot;collections-and-scraping-the-data&quot;&gt;Collections and scraping the data&lt;/h3&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# import required libraries for scraping and analysis
&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;urllib2&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;json&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pandas&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;time&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;time&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;numpy&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;np&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;matplotlib.pyplot&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;plt&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;matplotlib&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;offsetbox&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;sklearn.decomposition&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;TruncatedSVD&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;sklearn&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;manifold&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;datasets&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;decomposition&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;ensemble&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;lda&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                     &lt;span class=&quot;n&quot;&gt;random_projection&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# define endpoints from stats.nba.com that we wish to scrape
&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;addressList&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;
    &lt;span class=&quot;s&quot;&gt;&quot;pullup_address&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;http://stats.nba.com/js/data/sportvu/2014/pullUpShootData.json&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;s&quot;&gt;&quot;drives_address&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;http://stats.nba.com/js/data/sportvu/2014/drivesData.json&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;s&quot;&gt;&quot;defense_address&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;http://stats.nba.com/js/data/sportvu/2014/defenseData.json&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;s&quot;&gt;&quot;passing_address&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;http://stats.nba.com/js/data/sportvu/2014/passingData.json&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;s&quot;&gt;&quot;touches_address&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;http://stats.nba.com/js/data/sportvu/2014/touchesData.json&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;s&quot;&gt;&quot;speed_address&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;http://stats.nba.com/js/data/sportvu/2014/speedData.json&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;s&quot;&gt;&quot;rebounding_address&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;http://stats.nba.com/js/data/sportvu/2014/reboundingData.json&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;s&quot;&gt;&quot;catchshoot_address&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;http://stats.nba.com/js/data/sportvu/2014/catchShootData.json&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
    &lt;span class=&quot;s&quot;&gt;&quot;shooting_address&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;http://stats.nba.com/js/data/sportvu/2014/shootingData.json&quot;&lt;/span&gt;
    &lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# download and format SportVu data, data for each endpoint is placed in a dictionnary
&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;sportsvu_data&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{}&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;key&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;val&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;addressList&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;items&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;():&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;print&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;key&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;url&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;val&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;response&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;urllib2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;urlopen&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;url&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;raw&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;response&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;read&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;data&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;json&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;loads&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;raw&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;headers&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;resultSets&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;][&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;][&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;headers&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;table&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;resultSets&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;][&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;][&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;rowSet&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;DataFrame&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;table&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;columns&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;headers&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;set_index&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;([&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;PLAYER_ID&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;TEAM_ABBREVIATION&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;columns&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;{}_{}&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;format&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;key&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;columns&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;sportsvu_data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;key&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# concatenate all sportsvu data
&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;sportvu&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;bp&quot;&gt;None&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;suffix&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;input_df&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sportsvu_data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;items&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;():&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;print&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;suffix&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sportvu&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;is&lt;/span&gt; &lt;span class=&quot;bp&quot;&gt;None&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;sportvu&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;input_df&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;else&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;sportvu&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;merge&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sportvu&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                           &lt;span class=&quot;n&quot;&gt;input_df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                           &lt;span class=&quot;n&quot;&gt;how&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;inner&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                           &lt;span class=&quot;n&quot;&gt;left_index&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;True&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                           &lt;span class=&quot;n&quot;&gt;right_index&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;True&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# filter out dataframe to players who have had relevant playing time
&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sportvu&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pullup_address_GP&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;gt;=&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;41&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;pullup_address_MIN&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;gt;=&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# set index of final dataframe
&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df_final&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;T&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;drop_duplicates&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;().&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;T&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;reset_index&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df_final&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df_final&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;set_index&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;([&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;PLAYER_ID&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;TEAM_ABBREVIATION&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;pullup_address_PLAYER&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# remove those columns because they are redundant
&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;cols_to_remove&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;pullup_address_FIRST_NAME&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;pullup_address_LAST_NAME&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                  &lt;span class=&quot;s&quot;&gt;&apos;pullup_address_GP&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;pullup_address_MIN&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df_final&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;drop&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;cols_to_remove&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;axis&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;inplace&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;True&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# remove duplicate columns
&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df_final&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;T&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;drop_duplicates&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;().&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;T&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;There is nothing extraordinary in the code above, I essentially scraped some data from publicly (I hope) available data, and after a small clean-up, concatenated all the data into a single Pandas dataframe. The only thing of note is that I restricted the data collection to players who averaged at least 15 minutes per game and played in at least half the games in the season. In total, this leaves us with 329 NBA players, each  with 80 unique Sportvu data points.&lt;/p&gt;

&lt;h3 id=&quot;inferring-and-visualizing-similarities-between-nba-players&quot;&gt;Inferring and visualizing similarities between NBA players&lt;/h3&gt;
&lt;p&gt;With the data now in our hands (or RAM), we can proceed to the original intent of this blog post, which is finding players with the most similar playing styles. After some trial and error, I obtained the best results when computing the correlation matrix between Sportvu metrics for all players, and then applying the t-SNE dimensionality reduction algorithm. Roughly, t-SNE is considered to be useful because of its property to conserve the overall topology of the data, so that neighboring (i.e. similar) players are mapped to neighboring locations in a two-dimensional space (It is this property that makes it so amenable to image analysis). Other well-known clustering techniques such as k-means or MDS would also be adequate for this exercise, but I’ve had good fortune when using t-SNE, so am perhaps unwisely sticking to it here.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# compute the correlation matrix between SportsVu metrics for all NBA players
# note: Pearson or Spearman showed little differences in results
&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df_final&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df_final&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;convert_objects&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;convert_numeric&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;True&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df_final&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df_final&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;astype&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;float&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;corr&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df_final&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;T&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;corr&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;X&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;corr&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;as_matrix&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# perform t-SNE dimensionality reduction and print to file
&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;X_reduced&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;TruncatedSVD&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;n_components&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;random_state&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fit_transform&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;X&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;tsne&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;manifold&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;TSNE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;n_components&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;perplexity&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;verbose&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;X_tsne&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;tsne&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fit_transform&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;X_reduced&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;DataFrame&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;X_tsne&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;player&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df_final&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;index&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;team&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df_final&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;index&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;columns&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;x&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;y&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;player&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;team&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;to_csv&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;tsne_clusters.csv&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;index&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;False&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;The advantage of using t-SNE in this context is that we are effectively taking an unsupervised approach, with the hopes that we can infer natural groupings of players based on their Sportvu statistics. Now that the data has been processed, we can start to visualize it. From there on, I will proceed to some nasty context switching and use R (I love both R and Python but hate using both in a single projetc. However, I am justifying my decision on the fact that, despite recent progress for Python, R still currently has far better wrappers around JS/D3).&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-r&quot; data-lang=&quot;r&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# import required R libraries&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;data.table&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scatterD3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;d3heatmap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ggplot2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ggrepel&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;htmlwidgets&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;c1&quot;&gt;# read in tsne representations&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fread&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;&apos;tsne_clusters.csv&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;header&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;TRUE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;team&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;!=&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;&apos;TOTAL&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-r&quot; data-lang=&quot;r&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# Use k-means to uncover natural clusters of players&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;c1&quot;&gt;# Compute sum of squares for different values of k&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;wss&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;for&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;k&quot;&gt;in&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;wss&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;wss&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;sum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;kmeans&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;list&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)],&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;centers&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;withinss&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;c1&quot;&gt;# plot sum of squares as a function of cluster count in order&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;c1&quot;&gt;# to find the &quot;elbow&quot;. Optimal cluster count was found to be 7&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;plot&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;wss&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;type&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;b&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
     &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;xlab&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Number of Clusters&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
     &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ylab&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Within groups sum of squares&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;c1&quot;&gt;# add cluster assigments to data.table object&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;cl&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;kmeans&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;list&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)],&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;centers&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;7&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;positions&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;&apos;Shooting Guard&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;&apos;Dynamic C/PF&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
               &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;&apos;Slow C/PF&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;&apos;Dynamic SF/PF&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
               &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;&apos;Slow SF/PF&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;&apos;Point Guard&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;&apos;Stretch C/PF&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;&apos;cluster&apos;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;:=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;cl&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;cluster&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;&apos;position&apos;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;:=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;positions&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;cluster&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]]&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-r&quot; data-lang=&quot;r&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# plot and save interactive D3 scatter plot&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tooltips&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;paste&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&amp;lt;strong&amp;gt;&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;player&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;strong&amp;gt;&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;team&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;&amp;lt;/strong&amp;gt;&amp;lt;br /&amp;gt;&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scatterD3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
          &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
          &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;lab&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;player&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
          &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;col_var&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;team&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
          &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;symbol_var&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;position&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
          &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;point_opacity&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;0.7&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
          &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tooltip_text&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tooltips&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
          &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;col_lab&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Team&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
          &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;symbol_lab&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Position Group&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
          &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;width&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1000&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
          &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;height&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1000&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;saveWidget&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;file&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;&apos;nba_player_similarity.html&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;The plot below shows the natural groupings of players, where the shape represents the cluster they belong to and the color represent their respective teams. Feel free to zoom, highlight certain teams or clusters (by hovering over the legends) and generally just playing around it.&lt;/p&gt;

&lt;center&gt;
   &lt;h4&gt;NBA player similarity&lt;/h4&gt;
  &lt;iframe width=&quot;1200&quot; height=&quot;1000&quot; src=&quot;https://statofmind-blog.nyc3.digitaloceanspaces.com/images/nba_player_similarity.html&quot; frameborder=&quot;0&quot; allowfullscreen=&quot;allowfullscreen&quot;&gt;&lt;/iframe&gt;
&lt;/center&gt;

&lt;p&gt;Upon investigation, we can see that this approach makes a lot of sense. For example, players such as Damian Lillard, Mario Chalmers, Eric Bledsoe or Derick Rose are very to each other in space. There are many other examples like this (Serge Ibaka and Lamarcus Aldridge; Jimmy Butler and Andre Iguodola) but it is interesting to note how the shooting and point guard have well-defined positions, whereas the Center, Power Forward and Small Forward positions show a lot more heterogeneity and complexity. There are some mis-assignments here and there but these tend to be on the boundary of clusters, which could be probably be fixed after some further optimization and tinkering of the cluster assignments.&lt;/p&gt;

&lt;h2 id=&quot;team-roster-similarity&quot;&gt;Team roster similarity&lt;/h2&gt;
&lt;p&gt;We can also leverage the results obtained from the dimensionality reduction part to discover teams that share the most similar roster of players. Given two teams &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;X&lt;/code&gt; and &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Y&lt;/code&gt; with players &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;[x1,..., xn]&lt;/code&gt; and &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;[y1,...,yn]&lt;/code&gt; respectively, one way of achieving this is through the following steps:&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;Select player from team X (say x1)&lt;/li&gt;
  &lt;li&gt;Compute point-to-point distance between player x1 and all players [y1,…,yn] in team Y&lt;/li&gt;
  &lt;li&gt;Select and record the minimum value between player x1 and all players [y1,…,yn] in team Y. We are effectively finding the player in team Y that is most similar to player x1&lt;/li&gt;
  &lt;li&gt;Repeat step 1 to 3 for all remaining players in team X and sum the total point distance to get a “distance” value between team X and Y&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;By summing distances between pairs of players that are most similar in each teams, we can then assume that pairs of teams with low total distance between one another have more similar rosters than pairs of teams with high total distance.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-r&quot; data-lang=&quot;r&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# get point-point distance between teams&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;&apos;point_distance&apos;&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;k&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dx&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;^&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dy&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;^&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;return&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;sqrt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dx&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dy&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-r&quot; data-lang=&quot;r&quot;&gt;&lt;span class=&quot;n&quot;&gt;unique.teams&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sort&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;unique&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;team&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;roster_distance&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mat.or.vec&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;length&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;unique.teams&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;length&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;unique.teams&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;row.names&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;roster_distance&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;unique.teams&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;colnames&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;roster_distance&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;unique.teams&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;for&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;k&quot;&gt;in&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;length&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;unique.teams&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;print&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;unique.teams&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;k&quot;&gt;for&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;j&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;k&quot;&gt;in&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;length&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;unique.teams&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;t1&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;team&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;==&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;unique.teams&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]]&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;t2&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;team&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;==&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;unique.teams&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;j&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]]&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sim&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;apply&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;t1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;k&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; 
                            &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;apply&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;t2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
                              &lt;/span&gt;&lt;span class=&quot;k&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;point_distance&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;as.numeric&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]),&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;nf&quot;&gt;as.numeric&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;:&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]))))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
    &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;roster_distance&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;j&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;mean&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;apply&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sim&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;min&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-r&quot; data-lang=&quot;r&quot;&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;d3heatmap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;roster_distance&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;colors&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Spectral&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dendrogram&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;none&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;saveWidget&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;file&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s1&quot;&gt;&apos;nba_team_similarity.html&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;center&gt;
   &lt;h4&gt;NBA team roster similarity&lt;/h4&gt;
  &lt;iframe width=&quot;800&quot; height=&quot;800&quot; src=&quot;https://statofmind-blog.nyc3.digitaloceanspaces.com/images/nba_team_similarity.html&quot; frameborder=&quot;0&quot; allowfullscreen=&quot;allowfullscreen&quot;&gt;&lt;/iframe&gt;
&lt;/center&gt;

</description>
        <pubDate>Thu, 17 Mar 2016 00:00:00 +0000</pubDate>
        <link>http://tlfvincent.github.io//2016/03/17/clustering-NBA-players/</link>
        <guid isPermaLink="true">http://tlfvincent.github.io//2016/03/17/clustering-NBA-players/</guid>
        
        
      </item>
    
      <item>
        <title>Tracking Social Issues and Topics in Presidential Speeches</title>
        <description>&lt;style&gt;
.center-image
{
    margin: 0 auto;
    display: block;
}
&lt;/style&gt;

&lt;script type=&quot;text/javascript&quot; src=&quot;http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML&quot;&gt;&lt;/script&gt;

&lt;hr /&gt;

&lt;h2 id=&quot;scraping-presidential-transcripts&quot;&gt;Scraping presidential transcripts&lt;/h2&gt;

&lt;p&gt;To begin, we must scrape the content of all &lt;a href=&quot;http://millercenter.org/president/speeches&quot;&gt;presidential speeches recorded in American history&lt;/a&gt;. To do that, I’ll rely on the very handy BeautifulSoup library, and eventually store all data in a pandas dataframe that will be persisted in a pickle file.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;c1&quot;&gt;# import required libraries to scrape presidential transcripts
&lt;/span&gt;&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;bs4&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;BeautifulSoup&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pandas&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pickle&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;urllib2&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;re&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;get_speech_links&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;():&lt;/span&gt;
    &lt;span class=&quot;s&quot;&gt;&apos;&apos;&apos;
    scrape content of pages with all presidential transcript links
    &apos;&apos;&apos;&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;home_url&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;http://millercenter.org/president/speeches&apos;&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;try&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;response&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;urllib2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;urlopen&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;home_url&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;page_source&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;response&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;read&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;soup&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;BeautifulSoup&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;page_source&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;html5lib&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;transcript_links&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;soup&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;findAll&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;a&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;class&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;transcript&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;})&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;transcript_links&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;except&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;urllib2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;HTTPError&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;print&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;Homepage not available!&apos;&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;bp&quot;&gt;None&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;get_transcript&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;speech_link&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;):&lt;/span&gt;
    &lt;span class=&quot;s&quot;&gt;&apos;&apos;&apos;
    scrape title of speech, date of speech and full transcipt
    contained in the input speech_link URL
    &apos;&apos;&apos;&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;speaking&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;speech_link&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;split&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;/&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;new_link&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;base_url&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;str&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;speech_link&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;try&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;response&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;urllib2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;urlopen&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;new_link&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;page_source&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;response&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;read&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;soup&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;BeautifulSoup&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;page_source&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;html5lib&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;title&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;soup&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;find&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;title&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;text&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;speech_date&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;split&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;(&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;].&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;split&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;)&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;transcript&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;soup&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;find&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;div&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;id&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;transcript&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;}).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;text&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;transcript&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;transcript&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;replace&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;&lt;/span&gt;&lt;span class=&quot;se&quot;&gt;\n&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos; &apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;replace&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;&lt;/span&gt;&lt;span class=&quot;se&quot;&gt;\r&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;replace&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;&lt;/span&gt;&lt;span class=&quot;se&quot;&gt;\t&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;speaker&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;speaking&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                &lt;span class=&quot;s&quot;&gt;&apos;date&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;speech_date&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                &lt;span class=&quot;s&quot;&gt;&apos;title&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;title&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                &lt;span class=&quot;s&quot;&gt;&apos;transcript&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;transcript&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;}&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;except&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;urllib2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;HTTPError&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;print&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;skipped &apos;&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;str&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;speech_link&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;bp&quot;&gt;None&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# iterate through all links and extract content
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;transcript_links&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;get_speech_links&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;base_url&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;http://millercenter.org/&apos;&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;transcript_dict&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{}&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;link&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;enumerate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;transcript_links&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;):&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;i&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;100&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;print&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;Scraped &apos;&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;str&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;/&apos;&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;str&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;len&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;transcript_links&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos; of links...&apos;&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;link&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;has_attr&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;href&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;):&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;transcript_data&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;get_transcript&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;link&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;href&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;transcript_data&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;is&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;not&lt;/span&gt; &lt;span class=&quot;bp&quot;&gt;None&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;key&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;transcript_data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;speaker&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;|&apos;&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;transcript_data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;date&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;transcript_dict&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;key&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;transcript_data&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;c1&quot;&gt;# dump dataframe to pickle object
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;DataFrame&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;from_dict&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;transcript_dict&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;orient&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;index&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;pickle&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dump&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;open&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;presidential_speeches.pickle&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;wb&quot;&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;hr /&gt;

&lt;h2 id=&quot;topic-modeling-and-visualization&quot;&gt;Topic modeling and visualization&lt;/h2&gt;

&lt;p&gt;Now that the raw text of all presidential speeches in American history has been retrieved, we can proceed to light preprocessing before applying Latent Dirichlet Allocation.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;o&quot;&gt;%&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;matplotlib&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;inline&lt;/span&gt;  
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;gensim.parsing.preprocessing&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;STOPWORDS&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;gensim.utils&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;simple_preprocess&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;gensim.models&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;TfidfModel&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;LsiModel&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;gensim.models.ldamodel&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;LdaModel&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;gensim&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;corpora&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;gensim&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;matutils&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;matplotlib.pyplot&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;plt&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;sklearn.cluster&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;KMeans&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;collections&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;defaultdict&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pyLDAvis.gensim&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;gensimvis&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pyLDAvis&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pandas&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;numpy&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;np&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;pickle&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;lda&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;In the following 5 cells, we effectively tokenize and remove stopwords from each document (i.e. presidential speech), compute the frequency of each token, and filter out all those that appear less than 10 times in the entire corpus of presidential speeches. Note that I used an ad-hoc threshold of 10, but this should be a parameter that could be played around. Also, the amount of porcessing on each document is intentionally simplistic. Finally, we set up gensim-specific objects that include a dictionary mapping words to integer ids, and a corpus that simply counts the number of occurences of each distinct word, converts the word to its integer word id and returns the result as a sparse vector.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;tokenize&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;):&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;token&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;token&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;simple_preprocess&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;token&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;not&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;STOPWORDS&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pickle&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;load&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;open&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;presidential_speeches.pickle&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;rb&quot;&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;speeches&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;transcript&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;documents&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;speeches&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tolist&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;texts&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tokenize&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;document&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;document&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;documents&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;n&quot;&gt;frequency&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;defaultdict&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;int&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;text&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;texts&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;token&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;frequency&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;token&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+=&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;n&quot;&gt;texts&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;token&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;token&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;text&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;frequency&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;token&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;text&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;texts&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;n&quot;&gt;dictionary&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;corpora&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Dictionary&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;texts&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;corpus&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dictionary&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;doc2bow&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;text&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;text&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;texts&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;h2 id=&quot;finding-the-optimum-number-of-topics&quot;&gt;Finding the Optimum Number of Topics&lt;/h2&gt;

&lt;p&gt;Now that the data is ready, we can run a batch LDA (because of the small size of the dataset that we are working with) to discover the main topics in our document.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# fit LDA model
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;speeches_topics&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;LdaModel&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;corpus&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;corpus&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                           &lt;span class=&quot;n&quot;&gt;id2word&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dictionary&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                           &lt;span class=&quot;n&quot;&gt;num_topics&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                           &lt;span class=&quot;n&quot;&gt;passes&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# print out first 10 topics
&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;topic&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;enumerate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;speeches_topics&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;print_topics&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)):&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;print&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;{} --- {}&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;format&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;topic&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;0 --- 0.025*states + 0.017*united + 0.017*shall + 0.014*state + 0.010*constitution + 0.009*president + 0.009*act + 0.009*congress + 0.008*laws + 0.007*law
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;1 — 0.026&lt;em&gt;government + 0.007&lt;/em&gt;states + 0.007&lt;em&gt;chilean + 0.007&lt;/em&gt;men + 0.006&lt;em&gt;sailors + 0.006&lt;/em&gt;united + 0.005&lt;em&gt;mr + 0.005&lt;/em&gt;german + 0.005&lt;em&gt;police + 0.004&lt;/em&gt;vessels&lt;/p&gt;

&lt;p&gt;2 — 0.012&lt;em&gt;world + 0.011&lt;/em&gt;peace + 0.009&lt;em&gt;people + 0.008&lt;/em&gt;america + 0.008&lt;em&gt;freedom + 0.007&lt;/em&gt;soviet + 0.006&lt;em&gt;united + 0.006&lt;/em&gt;new + 0.005&lt;em&gt;states + 0.005&lt;/em&gt;nations&lt;/p&gt;

&lt;p&gt;3 — 0.050&lt;em&gt;president + 0.030&lt;/em&gt;mr + 0.024&lt;em&gt;think + 0.008&lt;/em&gt;secretary + 0.008&lt;em&gt;general + 0.008&lt;/em&gt;people + 0.007&lt;em&gt;time + 0.007&lt;/em&gt;viet + 0.007&lt;em&gt;going + 0.007&lt;/em&gt;nam&lt;/p&gt;

&lt;p&gt;4 — 0.011&lt;em&gt;government + 0.007&lt;/em&gt;people + 0.007&lt;em&gt;business + 0.006&lt;/em&gt;country + 0.005&lt;em&gt;economic + 0.005&lt;/em&gt;congress + 0.005&lt;em&gt;world + 0.005&lt;/em&gt;federal + 0.005&lt;em&gt;tax + 0.005&lt;/em&gt;public&lt;/p&gt;

&lt;p&gt;5 — 0.006&lt;em&gt;people + 0.004&lt;/em&gt;government + 0.004&lt;em&gt;united + 0.004&lt;/em&gt;states + 0.003&lt;em&gt;country + 0.003&lt;/em&gt;public + 0.003&lt;em&gt;congress + 0.003&lt;/em&gt;question + 0.003&lt;em&gt;going + 0.002&lt;/em&gt;time&lt;/p&gt;

&lt;p&gt;6 — 0.013&lt;em&gt;states + 0.012&lt;/em&gt;government + 0.009&lt;em&gt;united + 0.008&lt;/em&gt;congress + 0.007&lt;em&gt;public + 0.005&lt;/em&gt;country + 0.005&lt;em&gt;great + 0.005&lt;/em&gt;year + 0.004&lt;em&gt;general + 0.004&lt;/em&gt;people&lt;/p&gt;

&lt;p&gt;7 — 0.011&lt;em&gt;peace + 0.010&lt;/em&gt;vietnam + 0.010&lt;em&gt;people + 0.009&lt;/em&gt;war + 0.009&lt;em&gt;world + 0.008&lt;/em&gt;united + 0.007&lt;em&gt;south + 0.007&lt;/em&gt;american + 0.007&lt;em&gt;nations + 0.006&lt;/em&gt;states&lt;/p&gt;

&lt;p&gt;8 — 0.009&lt;em&gt;world + 0.009&lt;/em&gt;congress + 0.008&lt;em&gt;new + 0.008&lt;/em&gt;year + 0.007&lt;em&gt;america + 0.006&lt;/em&gt;people + 0.006&lt;em&gt;energy + 0.006&lt;/em&gt;american + 0.006&lt;em&gt;nation + 0.005&lt;/em&gt;government&lt;/p&gt;

&lt;p&gt;9 — 0.014&lt;em&gt;government + 0.012&lt;/em&gt;people + 0.007&lt;em&gt;states + 0.007&lt;/em&gt;union + 0.007&lt;em&gt;constitution + 0.006&lt;/em&gt;great + 0.006&lt;em&gt;shall + 0.006&lt;/em&gt;men + 0.006&lt;em&gt;country + 0.005&lt;/em&gt;free&lt;/p&gt;

&lt;p&gt;The display of inferred topics shown above does not really lend itself very well to interpretation. Aside from the fact that you have to read through all the topics, most people will interpret the main themes of each topics differently. This hits right to the core of my mixed feelings towards topic modeling. To be given the ability and opportunity to infer topics from a large set of documents is truly amazing, but I have always personally felt (and maybe that is just me) that the ensuing display of information was lacking. Indeed, I have found that the output of typical topic modeling techniques does not lend itself very well to visualization and - in the case of presentations to the uninitiated - interpretation. However, I recently came across the &lt;a href=&quot;https://github.com/benmarwick/LDAviz&quot;&gt;LDAviz R library developed by Kenny Shirley and Carson Sievert&lt;/a&gt;, which to paraphrase their words is &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;a D3.js interactive visualization that&apos;s designed help you interpret the topics in a topic model fit to a corpus of text using LDA.&lt;/code&gt; Here, we use the great Python extension port of the LDAviz R library, available on GitHub at the following URL &lt;a href=&quot;https://github.com/bmabey/pyLDAvis&quot;&gt;https://github.com/bmabey/pyLDAvis&lt;/a&gt;. Two attractive features of pyLDAviz are its ability to help interpret the topics extracted from a fitted LDA model, but also the fact that it can be easily incorporated within an iPython notebook in nothing more than two lines of code!&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;n&quot;&gt;vis_data&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;gensimvis&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;prepare&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;speeches_topics&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;corpus&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;dictionary&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;pyLDAvis&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;display&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;vis_data&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;https://cdn.rawgit.com/bmabey/pyLDAvis/files/ldavis.v1.0.0.css&quot; /&gt;

&lt;div id=&quot;ldavis_el2981044999446561546706059&quot;&gt;&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;

var ldavis_el2981044999446561546706059_data = {&quot;plot.opts&quot;: {&quot;xlab&quot;: &quot;PC1&quot;, &quot;ylab&quot;: &quot;PC2&quot;}, &quot;topic.order&quot;: [16, 9, 14, 6, 17, 11, 12, 13, 5, 10, 4, 8, 15, 1, 7, 18, 19, 20, 2, 3], &quot;token.table&quot;: {&quot;Topic&quot;: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 2, 12, 1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 1, 2, 3, 4, 5, 7, 10, 12, 3, 19, 3, 4, 5, 6, 8, 9, 10, 12, 13, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 2, 4, 5, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 14, 16, 1, 2, 3, 4, 5, 11, 1, 2, 6, 7, 1, 9, 11, 1, 2, 4, 5, 7, 8, 11, 12, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 15, 19, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 1, 4, 5, 7, 9, 14, 15, 17, 3, 1, 2, 3, 4, 10, 19, 1, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 3, 4, 7, 9, 1, 2, 3, 12, 1, 4, 5, 6, 7, 1, 2, 1, 2, 4, 11, 12, 1, 2, 5, 7, 9, 11, 12, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 20, 3, 5, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 17, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 5, 12, 3, 1, 2, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 19, 2, 3, 6, 8, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 18, 1, 2, 5, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 18, 1, 2, 4, 5, 7, 10, 11, 4, 7, 10, 1, 2, 3, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17, 18, 20, 3, 6, 8, 9, 8, 16, 3, 5, 8, 16, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 18, 1, 2, 3, 4, 6, 8, 10, 11, 12, 1, 2, 3, 4, 6, 8, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 4, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 4, 9, 10, 15, 1, 2, 4, 7, 12, 3, 9, 14, 3, 6, 1, 2, 3, 4, 12, 1, 2, 3, 4, 1, 2, 4, 8, 10, 11, 13, 15, 1, 4, 7, 8, 3, 1, 2, 6, 16, 18, 1, 2, 4, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 1, 2, 7, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 1, 3, 5, 6, 7, 9, 14, 15, 1, 3, 4, 9, 1, 2, 3, 4, 5, 8, 9, 10, 15, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 15, 16, 18, 3, 4, 6, 8, 9, 19, 1, 2, 3, 4, 6, 8, 13, 14, 19, 1, 2, 3, 7, 1, 7, 9, 12, 1, 3, 4, 7, 9, 12, 18, 1, 2, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 16, 1, 2, 3, 4, 5, 6, 8, 9, 10, 17, 1, 2, 3, 4, 5, 6, 7, 9, 11, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 17, 18, 1, 3, 4, 5, 6, 7, 8, 9, 20, 3, 6, 8, 9, 16, 17, 19, 1, 2, 4, 12, 1, 3, 5, 6, 1, 2, 4, 18, 1, 5, 7, 8, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 17, 1, 4, 5, 6, 7, 1, 2, 4, 5, 6, 7, 8, 10, 11, 12, 14, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 7, 8, 9, 1, 2, 3, 1, 2, 3, 4, 6, 8, 11, 14, 15, 16, 18, 19, 1, 2, 3, 4, 6, 7, 8, 10, 11, 12, 19, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 18, 19, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 15, 18, 3, 8, 9, 1, 2, 8, 10, 12, 19, 1, 2, 4, 12, 1, 2, 3, 4, 6, 8, 11, 1, 2, 4, 7, 10, 11, 12, 18, 1, 2, 3, 4, 6, 7, 9, 10, 11, 12, 15, 3, 5, 6, 7, 8, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 13, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 2, 3, 7, 8, 15, 16, 1, 2, 3, 4, 6, 8, 9, 10, 12, 13, 15, 16, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 19, 1, 2, 3, 5, 1, 2, 3, 10, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 18, 1, 2, 8, 11, 12, 1, 2, 3, 4, 5, 6, 7, 9, 11, 12, 15, 3, 4, 1, 2, 5, 8, 10, 11, 3, 5, 6, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 19, 1, 4, 8, 3, 4, 8, 3, 8, 1, 2, 3, 6, 8, 9, 17, 3, 4, 8, 3, 6, 19, 3, 13, 1, 2, 3, 6, 17, 1, 2, 3, 8, 9, 12, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 1, 3, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 17, 18, 3, 4, 6, 9, 10, 13, 19, 1, 2, 4, 2, 3, 4, 5, 6, 9, 13, 14, 16, 18, 2, 3, 5, 14, 1, 3, 14, 1, 2, 3, 4, 5, 6, 7, 8, 13, 15, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 18, 20, 2, 3, 4, 5, 7, 3, 1, 3, 4, 5, 6, 8, 3, 4, 8, 19, 15, 1, 2, 3, 4, 6, 7, 8, 9, 10, 13, 17, 1, 3, 7, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 4, 8, 10, 13, 17, 19, 1, 1, 2, 3, 4, 8, 12, 13, 1, 3, 4, 5, 7, 9, 12, 18, 1, 2, 6, 1, 2, 3, 4, 5, 7, 1, 2, 5, 10, 18, 1, 2, 3, 4, 6, 7, 8, 9, 13, 15, 18, 1, 2, 3, 4, 6, 3, 1, 5, 7, 3, 19, 1, 3, 4, 8, 13, 19, 6, 17, 1, 3, 4, 5, 6, 7, 8, 9, 13, 14, 16, 17, 19, 3, 4, 5, 13, 16, 1, 2, 3, 4, 6, 8, 10, 12, 19, 1, 2, 12, 1, 3, 4, 6, 8, 1, 3, 4, 6, 8, 10, 1, 3, 4, 8, 1, 2, 3, 6, 8, 9, 15, 3, 4, 6, 8, 9, 17, 3, 4, 8, 9, 16, 1, 3, 4, 10, 11, 1, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 18, 19, 1, 2, 4, 1, 3, 4, 5, 6, 7, 8, 9, 10, 18, 6, 7, 9, 13, 1, 9, 15, 3, 5, 3, 1, 2, 3, 4, 5, 6, 8, 9, 10, 13, 16, 1, 4, 5, 7, 6, 8, 1, 3, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 1, 2, 3, 4, 5, 6, 7, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 3, 4, 5, 6, 7, 8, 9, 13, 14, 16, 17, 18, 19, 4, 5, 13, 1, 3, 4, 8, 1, 2, 6, 8, 9, 4, 8, 9, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 18, 1, 2, 3, 4, 5, 7, 1, 1, 12, 3, 5, 13, 3, 8, 16, 17, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 4, 5, 6, 7, 8, 13, 19, 3, 4, 5, 8, 9, 13, 1, 3, 4, 10, 1, 2, 3, 4, 5, 6, 8, 9, 12, 16, 1, 3, 4, 7, 8, 9, 2, 4, 8, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 15, 16, 18, 1, 3, 6, 8, 9, 10, 12, 3, 6, 8, 9, 10, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 13, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 3, 4, 6, 8, 1, 2, 3, 4, 5, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 2, 3, 4, 7, 8, 10, 12, 1, 2, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 8, 9, 18, 1, 2, 3, 4, 10, 11, 12, 15, 1, 2, 3, 1, 2, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 10, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 16, 1, 2, 4, 5, 7, 9, 10, 13, 14, 1, 2, 3, 4, 6, 7, 8, 9, 1, 2, 4, 5, 7, 8, 10, 11, 17, 1, 2, 6, 11, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 3, 4, 1, 3, 4, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 3, 12, 1, 3, 8, 11, 12, 16, 3, 12, 1, 2, 3, 4, 5, 6, 9, 16, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 3, 5, 7, 8, 10, 11, 16, 1, 2, 3, 6, 7, 8, 9, 10, 12, 13, 16, 18, 1, 3, 4, 5, 6, 7, 9, 14, 1, 2, 13, 1, 2, 3, 4, 8, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 5, 6, 8, 9, 13, 17, 1, 6, 17, 1, 2, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 18, 19, 1, 2, 3, 4, 5, 6, 7, 12, 19, 1, 3, 5, 6, 7, 1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 17, 19, 1, 2, 3, 4, 6, 7, 8, 12, 13, 19, 1, 2, 4, 5, 6, 7, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 4, 5, 6, 7, 8, 9, 3, 4, 7, 8, 9, 12, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 15, 18, 19, 1, 2, 1, 2, 3, 4, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 14, 15, 16, 18, 3, 4, 5, 6, 8, 9, 19, 1, 3, 4, 5, 8, 9, 1, 3, 4, 5, 6, 7, 9, 12, 17, 1, 2, 3, 4, 6, 10, 11, 12, 1, 2, 3, 9, 3, 4, 9, 19, 1, 3, 7, 9, 11, 12, 1, 3, 4, 19, 2, 3, 13, 14, 2, 3, 4, 5, 13, 14, 1, 2, 3, 4, 5, 6, 7, 8, 12, 13, 14, 17, 1, 2, 5, 7, 3, 1, 2, 3, 4, 11, 12, 15, 1, 2, 3, 6, 8, 9, 10, 1, 2, 19, 2, 4, 8, 16, 1, 3, 1, 3, 4, 5, 6, 7, 8, 9, 12, 13, 15, 17, 19, 1, 2, 3, 4, 5, 6, 7, 11, 12, 2, 3, 4, 9, 10, 11, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 1, 2, 3, 8, 13, 1, 2, 4, 11, 12, 1, 2, 3, 4, 5, 7, 9, 15, 18, 1, 2, 9, 15, 1, 5, 7, 15, 3, 6, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 18, 1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 15, 3, 4, 6, 8, 9, 1, 3, 6, 7, 10, 18, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 15, 1, 2, 4, 5, 7, 12, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 11, 12, 1, 2, 4, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 18, 1, 4, 10, 16, 1, 2, 3, 4, 6, 8, 9, 10, 12, 18, 1, 2, 3, 4, 6, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 19, 1, 2, 3, 4, 6, 7, 8, 9, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 1, 2, 4, 5, 6, 7, 8, 9, 12, 13, 14, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 5, 6, 13, 1, 2, 3, 6, 8, 9, 10, 11, 12, 15, 16, 17, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 15, 16, 3, 4, 6, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 19, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 19, 1, 2, 3, 4, 6, 8, 18, 1, 2, 3, 4, 6, 7, 11, 12, 17, 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 14, 1, 2, 3, 4, 5, 7, 11, 12, 1, 2, 4, 5, 7, 9, 10, 13, 1, 2, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 19, 1, 11, 1, 2, 3, 7, 12, 1, 2, 4, 5, 4, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 14, 19, 1, 2, 3, 4, 7, 10, 16, 1, 2, 3, 5, 6, 8, 1, 2, 4, 10, 11, 12, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 1, 2, 3, 4, 5, 7, 8, 11, 15, 18, 3, 4, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 1, 2, 3, 4, 5, 7, 8, 9, 12, 15, 19, 1, 2, 4, 5, 6, 7, 8, 9, 10, 1, 2, 10, 11, 12, 1, 2, 3, 4, 6, 8, 10, 15, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 1, 2, 11, 1, 2, 4, 10, 11, 12, 1, 2, 3, 4, 5, 8, 9, 11, 18, 1, 2, 4, 5, 6, 7, 10, 11, 12, 17, 1, 2, 1, 2, 3, 4, 6, 7, 8, 10, 11, 12, 1, 2, 3, 4, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 17, 18, 2, 3, 4, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 16, 18, 19, 3, 4, 5, 7, 8, 1, 2, 3, 4, 5, 7, 9, 10, 4, 8, 15, 1, 3, 4, 5, 6, 7, 13, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 17, 18, 1, 2, 3, 4, 5, 6, 8, 9, 10, 15, 17, 19, 1, 2, 3, 4, 5, 8, 9, 10, 11, 14, 5, 9, 1, 2, 3, 4, 5, 10, 11, 18, 19, 1, 2, 4, 5, 7, 8, 9, 10, 11, 12, 18, 1, 2, 4, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 1, 2, 3, 4, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 1, 2, 5, 15, 1, 2, 3, 5, 6, 7, 8, 9, 12, 1, 6, 8, 15, 1, 2, 4, 5, 6, 7, 8, 9, 10, 3, 4, 5, 7, 8, 13, 16, 1, 2, 3, 4, 5, 6, 7, 8, 10, 14, 4, 6, 1, 2, 5, 6, 8, 9, 10, 11, 12, 14, 1, 2, 5, 7, 8, 10, 15, 1, 2, 4, 5, 7, 8, 10, 11, 12, 13, 18, 1, 2, 12, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 2, 3, 6, 8, 9, 11, 15, 17, 1, 2, 3, 4, 6, 11, 12, 15, 1, 5, 8, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 3, 4, 5, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 1, 12, 12, 1, 2, 3, 7, 10, 15, 19, 1, 2, 3, 4, 5, 7, 8, 9, 11, 13, 14, 15, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 19, 1, 3, 4, 6, 8, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 5, 6, 9, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 3, 6, 1, 4, 7, 1, 2, 3, 9, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 1, 2, 3, 4, 6, 7, 8, 9, 12, 16, 17, 18, 4, 1, 3, 7, 8, 9, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 13, 15, 18, 1, 2, 1, 2, 5, 7, 1, 2, 4, 13, 19, 1, 2, 3, 4, 6, 7, 8, 13, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 19, 1, 3, 5, 6, 7, 8, 9, 14, 1, 2, 3, 5, 6, 7, 8, 9, 10, 3, 4, 6, 8, 1, 3, 4, 5, 6, 7, 8, 9, 13, 14, 15, 17, 20, 4, 5, 7, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 17, 19, 2, 3, 4, 5, 8, 1, 3, 8, 9, 10, 12, 16, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 3, 8, 9, 14, 1, 3, 5, 10, 1, 2, 3, 4, 6, 1, 3, 5, 7, 8, 19, 1, 2, 3, 4, 6, 8, 9, 11, 12, 1, 2, 3, 5, 7, 18, 1, 3, 8, 13, 1, 2, 3, 5, 6, 7, 8, 9, 11, 13, 15, 1, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 1, 3, 5, 14, 1, 2, 3, 4, 6, 7, 8, 10, 12, 13, 15, 18, 1, 3, 4, 10, 1, 2, 3, 4, 5, 6, 8, 10, 12, 17, 19, 3, 7, 11, 16, 1, 2, 3, 4, 5, 6, 8, 9, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 3, 4, 8, 16, 17, 5, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 17, 18, 19, 4, 5, 4, 5, 1, 2, 3, 4, 5, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 13, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 17, 19, 1, 2, 4, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 15, 17, 18, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 18, 19, 3, 8, 9, 10, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 16, 18, 1, 2, 4, 5, 8, 9, 1, 2, 4, 5, 8, 10, 11, 12, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 5, 7, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 10, 14, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 19, 1, 2, 3, 4, 6, 7, 9, 13, 3, 6, 8, 1, 2, 3, 4, 5, 6, 18, 1, 2, 3, 4, 5, 6, 7, 8, 13, 17, 18, 5, 9, 1, 3, 4, 11, 13, 17, 18, 1, 2, 8, 9, 11, 12, 1, 2, 4, 5, 6, 7, 9, 10, 11, 12, 1, 2, 11, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 16, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 17, 1, 2, 3, 4, 5, 6, 10, 11, 12, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 18, 1, 3, 4, 8, 18, 1, 2, 3, 12, 15, 3, 6, 8, 1, 2, 3, 4, 6, 7, 8, 9, 12, 16, 3, 6, 8, 17, 1, 2, 3, 5, 7, 8, 13, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 16, 17, 1, 3, 5, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 12, 13, 1, 2, 3, 4, 5, 6, 7, 11, 19, 1, 2, 11, 12, 1, 2, 6, 11, 3, 6, 8, 17, 2, 3, 4, 6, 8, 9, 15, 3, 4, 5, 6, 8, 1, 2, 3, 4, 6, 8, 9, 1, 4, 5, 8, 9, 10, 11, 1, 2, 3, 8, 7, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 14, 15, 16, 17, 18, 1, 3, 6, 8, 9, 1, 2, 3, 4, 5, 7, 8, 12, 1, 2, 3, 4, 3, 4, 5, 6, 7, 8, 9, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 19, 1, 2, 12, 1, 2, 9, 12, 15, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 15, 16, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 15, 17, 18, 19, 1, 2, 4, 5, 7, 13, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 18, 20, 1, 2, 4, 6, 8, 9, 15, 1, 4, 10, 12, 1, 2, 4, 5, 11, 12, 1, 3, 11, 12, 15, 1, 2, 5, 7, 10, 11, 13, 1, 2, 10, 13, 14, 1, 2, 3, 4, 6, 8, 13, 1, 2, 4, 8, 11, 18, 1, 4, 11, 12, 13, 1, 2, 3, 4, 5, 7, 8, 11, 12, 13, 15, 18, 1, 2, 4, 5, 9, 14, 18, 19, 1, 2, 4, 5, 7, 8, 9, 11, 12, 15, 1, 2, 4, 10, 1, 2, 3, 5, 9, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 15, 17, 1, 3, 5, 8, 3, 4, 5, 6, 8, 1, 3, 4, 6, 8, 16, 18, 1, 2, 3, 4, 5, 7, 8, 9, 14, 1, 2, 4, 12, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 18, 1, 3, 6, 9, 10, 1, 2, 3, 4, 5, 14, 1, 2, 3, 4, 5, 6, 8, 9, 11, 14, 17, 1, 2, 4, 7, 10, 15, 16, 1, 3, 4, 10, 3, 4, 1, 2, 3, 4, 5, 6, 8, 10, 13, 14, 19, 2, 3, 4, 5, 7, 8, 13, 18, 19, 3, 6, 8, 15, 17, 1, 3, 5, 6, 7, 8, 14, 19, 9, 3, 1, 2, 3, 4, 8, 1, 2, 4, 7, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 7, 13, 3, 5, 6, 8, 17, 1, 2, 3, 4, 5, 6, 7, 8, 11, 3, 5, 6, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 9, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 7, 8, 9, 10, 13, 1, 3, 5, 7, 8, 13, 4, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 4, 11, 12, 1, 17, 1, 2, 3, 4, 6, 8, 9, 16, 17, 9, 15, 3, 4, 6, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 1, 3, 6, 11, 13, 1, 3, 4, 5, 8, 9, 14, 19, 1, 4, 5, 18, 1, 12, 3, 1, 2, 3, 4, 5, 9, 10, 12, 13, 1, 2, 9, 11, 12, 1, 2, 4, 1, 3, 6, 8, 9, 1, 3, 4, 6, 19, 1, 2, 3, 4, 5, 6, 8, 11, 3, 6, 13, 1, 2, 3, 4, 10, 1, 3, 4, 5, 6, 7, 8, 9, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 19, 1, 3, 4, 12, 1, 2, 4, 5, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 6, 8, 10, 11, 3, 6, 8, 9, 10, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 18, 1, 2, 3, 4, 6, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 1, 2, 4, 8, 9, 1, 2, 3, 4, 5, 7, 9, 1, 2, 3, 4, 5, 6, 10, 16, 1, 2, 4, 12, 3, 4, 6, 13, 16, 1, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 1, 2, 4, 5, 6, 7, 1, 2, 3, 7, 3, 6, 8, 9, 1, 3, 4, 7, 1, 2, 3, 4, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 8, 16, 1, 2, 3, 4, 5, 6, 8, 9, 11, 16, 17, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 16, 18, 19, 1, 2, 4, 5, 9, 11, 15, 1, 2, 4, 7, 1, 2, 4, 10, 11, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 14, 16, 18, 1, 2, 3, 4, 5, 7, 11, 12, 1, 2, 3, 5, 7, 8, 9, 10, 11, 12, 17, 1, 9, 12, 1, 2, 3, 4, 9, 15, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 16, 1, 2, 7, 10, 12, 1, 2, 3, 4, 5, 7, 8, 12, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 4, 12, 1, 2, 3, 7, 8, 11, 12, 1, 2, 4, 10, 11, 1, 2, 6, 1, 2, 1, 5, 12, 1, 3, 4, 18, 1, 2, 3, 5, 1, 10, 1, 3, 4, 5, 6, 8, 9, 2, 3, 4, 5, 6, 8, 15, 1, 2, 4, 5, 15, 1, 2, 4, 5, 6, 7, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 3, 4, 5, 7, 8, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 12, 1, 2, 3, 5, 6, 8, 4, 5, 6, 9, 13, 1, 2, 3, 6, 8, 3, 6, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 18, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 13, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 18, 19, 1, 2, 3, 4, 5, 6, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 1, 2, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 14, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 6, 1, 2, 4, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 16, 17, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 14, 1, 2, 3, 4, 5, 6, 7, 9, 10, 3, 4, 15, 1, 2, 4, 5, 7, 8, 10, 11, 12, 1, 2, 3, 4, 6, 8, 9, 10, 12, 13, 16, 19, 1, 2, 3, 4, 6, 8, 9, 10, 11, 12, 13, 16, 19, 1, 2, 3, 4, 9, 12, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17, 18, 19, 1, 2, 4, 15, 19, 1, 2, 3, 4, 6, 7, 8, 9, 12, 13, 1, 2, 4, 6, 1, 2, 6, 7, 9, 10, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 16, 17, 18, 19, 3, 4, 5, 6, 8, 9, 10, 14, 1, 4, 5, 7, 1, 4, 5, 7, 1, 2, 3, 4, 6, 7, 8, 10, 13, 4, 1, 2, 3, 4, 6, 8, 12, 15, 16, 17, 18, 1, 3, 5, 6, 7, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 18, 19, 1, 3, 4, 5, 6, 7, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 13, 15, 1, 2, 3, 4, 5, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 18, 1, 3, 5, 6, 8, 10, 16, 1, 3, 4, 5, 6, 8, 1, 2, 4, 5, 7, 3, 4, 5, 6, 8, 9, 14, 1, 2, 3, 4, 5, 7, 19, 1, 2, 3, 4, 5, 7, 8, 1, 3, 4, 5, 7, 8, 2, 3, 4, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 18, 19, 1, 2, 3, 4, 6, 7, 8, 10, 13, 1, 2, 4, 5, 6, 7, 8, 10, 13, 14, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 15, 17, 18, 19, 1, 3, 4, 8, 9, 19, 1, 2, 4, 7, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 5, 6, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 4, 5, 7, 19, 1, 5, 7, 1, 2, 3, 4, 5, 7, 8, 13, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 1, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 17, 19, 1, 2, 3, 4, 5, 8, 10, 12, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 18, 19, 1, 2, 4, 7, 8, 12, 16, 18, 1, 2, 4, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 18, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 18, 19, 1, 2, 3, 4, 6, 7, 11, 12, 13, 19, 1, 2, 3, 1, 2, 3, 4, 5, 7, 10, 11, 12, 18, 1, 2, 3, 4, 10, 11, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 18, 19, 1, 6, 1, 2, 4, 9, 10, 13, 14, 1, 2, 4, 6, 7, 11, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 4, 7, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 4, 6, 8, 14, 1, 2, 3, 6, 10, 19, 3, 6, 8, 16, 19, 1, 4, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 17, 18, 1, 2, 1, 2, 1, 2, 3, 4, 6, 8, 9, 12, 13, 16, 3, 4, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 11, 14, 16, 17, 1, 2, 10, 12, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 3, 4, 5, 7, 8, 9, 18, 1, 2, 4, 5, 7, 8, 10, 11, 14, 1, 3, 4, 6, 7, 8, 9, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 5, 8, 1, 3, 5, 6, 7, 8, 9, 14, 17, 1, 3, 4, 6, 7, 8, 13, 17, 19, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 3, 4, 5, 6, 7, 8, 9, 16, 17, 19, 1, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 15, 19, 3, 8, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 15, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 15, 18, 19, 1, 3, 6, 7, 8, 9, 10, 17, 8, 9, 19, 1, 2, 3, 5, 6, 7, 8, 10, 19, 1, 3, 7, 8, 19, 1, 2, 4, 7, 3, 5, 6, 8, 9, 13, 14, 15, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 17, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 6, 17, 3, 9, 13, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 19, 3, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 5, 8, 10, 1, 2, 3, 4, 6, 11, 12, 1, 2, 3, 4, 5, 6, 7, 9, 10, 14, 17, 2, 3, 8, 9, 3, 6, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 1, 4, 5, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 2, 3, 6, 16, 2, 3, 4, 8, 10, 15, 1, 5, 10, 11, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 17, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 16, 17, 1, 2, 4, 7, 1, 4, 8, 15, 3, 1, 2, 4, 1, 4, 5, 7, 1, 2, 3, 4, 9, 3, 4, 6, 8, 2, 3, 9, 12, 15, 3, 8, 3, 5, 7, 19, 3, 6, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 4, 10, 3, 4, 12, 14, 4, 6, 8, 9, 1, 2, 3, 4, 6, 8, 13, 14, 18, 3, 8, 9, 14, 1, 2, 3, 4, 10, 12, 17, 3, 4, 7, 16, 1, 2, 3, 4, 5, 6, 7, 8, 12, 18, 1, 2, 4, 7, 18, 5, 7, 12, 15, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 1, 2, 4, 5, 7, 8, 19, 1, 3, 4, 7, 8, 12, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 1, 2, 3, 4, 5, 6, 7, 8, 13, 14, 6, 8, 17, 1, 2, 7, 14, 1, 3, 7, 1, 7, 12, 12, 3, 4, 6, 8, 16, 19, 1, 2, 3, 4, 5, 7, 8, 16, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 1, 3, 10, 14, 2, 3, 3, 3, 1, 7, 8, 9, 1, 2, 4, 12, 16, 1, 7, 8, 9, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 18, 19, 1, 2, 3, 4, 6, 8, 15, 3, 6, 8, 16, 5, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 16, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 3, 8, 9, 6, 8, 9, 9, 15, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 15, 18, 19, 1, 4, 5, 10, 3, 4, 5, 6, 8, 9, 10, 13, 15, 3, 7, 8, 9, 15, 1, 2, 3, 12, 1, 2, 3, 4, 5, 13, 1, 2, 3, 8, 19, 4, 6, 8, 3, 4, 5, 6, 8, 13, 19, 1, 3, 4, 5, 6, 7, 8, 9, 12, 13, 16, 19, 3, 4, 6, 9, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 1, 3, 4, 6, 8, 1, 2, 3, 7, 8, 9, 10, 12, 13, 15, 19, 3, 4, 6, 8, 1, 2, 3, 4, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 20, 2, 3, 4, 10, 9, 11, 9, 11, 1, 2, 4, 5, 12, 1, 2, 4, 8, 12, 1, 2, 3, 4, 7, 12, 18, 3, 8, 9, 17, 3, 8, 9, 13, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 1, 2, 3, 4, 5, 6, 10, 11, 12, 14, 16, 1, 2, 4, 7, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 9, 11, 13, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 13, 14, 1, 2, 10, 11, 1, 2, 3, 4, 5, 19, 1, 2, 10, 1, 2, 3, 4, 5, 7, 8, 11, 12, 1, 2, 3, 4, 5, 8, 10, 14, 15, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 14, 15, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14, 16, 17, 1, 2, 4, 7, 11, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 14, 1, 3, 4, 5, 6, 7, 8, 9, 14, 16, 19, 1, 2, 3, 5, 6, 7, 11, 12, 1, 2, 7, 12, 1, 3, 4, 5, 6, 9, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 17, 1, 2, 4, 7, 8, 9, 10, 18, 1, 2, 4, 1, 2, 3, 4, 5, 7, 8, 9, 10, 12, 18, 1, 2, 4, 10, 13, 1, 2, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 3, 5, 7, 9, 16, 4, 5, 6, 8, 3, 19, 1, 2, 3, 4, 10, 11, 3, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 16, 17, 18, 1, 2, 3, 4, 6, 7, 11, 3, 1, 2, 4, 5, 10, 11, 3, 6, 7, 10, 11, 1, 3, 4, 6, 7, 8, 9, 1, 2, 7, 12, 14, 19, 1, 2, 4, 7, 11, 1, 2, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 3, 1, 2, 4, 8, 4, 5, 6, 7, 9, 1, 5, 6, 7, 1, 3, 12, 15, 1, 4, 5, 6, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 18, 1, 2, 3, 4, 5, 6, 7, 9, 12, 1, 2, 4, 5, 6, 7, 10, 11, 12, 15, 3, 5, 6, 8, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 17, 19, 1, 2, 12, 13, 1, 2, 4, 6, 8, 9, 1, 3, 8, 19, 1, 2, 4, 5, 7, 10, 11, 12, 15, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 3, 6, 8, 14, 3, 1, 2, 3, 5, 8, 2, 1, 2, 3, 4, 5, 7, 9, 14, 15, 16, 1, 2, 4, 5, 6, 7, 18, 1, 3, 4, 1, 2, 3, 4, 6, 7, 8, 11, 16, 1, 4, 5, 7, 1, 4, 6, 19, 1, 2, 3, 4, 6, 7, 8, 9, 10, 1, 2, 3, 4, 6, 7, 8, 11, 1, 2, 19, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 14, 17, 19, 1, 3, 10, 11, 14, 1, 3, 4, 5, 12, 13, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 1, 2, 3, 4, 6, 7, 12, 14, 3, 6, 8, 17, 19, 3, 6, 8, 3, 3, 4, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 14, 1, 2, 3, 6, 8, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 3, 8, 3, 4, 6, 8, 9, 16, 17, 3, 6, 16, 17, 3, 6, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 16, 17, 19, 1, 2, 4, 5, 7, 15, 1, 2, 4, 5, 7, 10, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 16, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 14, 17, 19, 3, 1, 2, 3, 4, 7, 8, 9, 10, 12, 15, 18, 1, 3, 4, 6, 7, 8, 18, 3, 1, 2, 3, 4, 5, 6, 7, 8, 13, 3, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 16, 19, 3, 4, 5, 6, 8, 9, 11, 13, 14, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 3, 8, 16, 17, 1, 2, 3, 4, 11, 1, 2, 3, 8, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 19, 3, 4, 5, 6, 7, 8, 3, 5, 8, 1, 4, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 7, 9, 12, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 18, 8, 1, 2, 3, 5, 6, 7, 8, 10, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 4, 5, 12, 3, 6, 8, 9, 13, 3, 6, 8, 9, 3, 3, 1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 13, 18, 19, 9, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 3, 4, 12, 8, 1, 3, 8, 3, 6, 9, 3, 6, 8, 3, 6, 8, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 4, 6, 8, 9, 13, 16, 17, 1, 2, 3, 5, 6, 7, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 6, 8, 13, 17, 19, 1, 3, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 7, 8, 9, 10, 11, 12, 14, 15, 16, 19, 1, 3, 4, 7, 8, 9, 11, 20, 7, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 12, 1, 2, 3, 4, 5, 7, 8, 11, 1, 2, 3, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 18, 3, 16, 3, 4, 6, 8, 9, 16, 17, 1, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 19, 1, 2, 3, 4, 5, 7, 10, 11, 12, 14, 2, 3, 5, 6, 16, 1, 2, 3, 6, 7, 11, 3, 1, 2, 3, 4, 5, 7, 8, 9, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 5, 6, 8, 10, 14, 1, 3, 8, 10, 19, 1, 2, 4, 10, 1, 2, 5, 6, 11, 3, 4, 1, 2, 3, 4, 6, 8, 19, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 1, 2, 3, 4, 5, 7, 8, 9, 10, 3, 5, 6, 7, 1, 1, 2, 3, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 7, 8, 10, 13, 15, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 18, 1, 3, 4, 7, 10, 1, 2, 3, 4, 9, 5, 6, 17, 1, 2, 3, 5, 7, 9, 10, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 6, 7, 3, 4, 5, 6, 8, 13, 3, 4, 5, 6, 8, 9, 13, 16, 17, 1, 3, 4, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 9, 12, 18, 3, 5, 7, 15, 1, 2, 4, 5, 7, 14, 3, 13, 1, 2, 3, 4, 5, 8, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 18, 3, 5, 6, 10, 1, 2, 4, 7, 10, 11, 12, 1, 2, 3, 4, 5, 7, 8, 9, 10, 3, 8, 1, 2, 3, 4, 8, 9, 3, 8, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 7, 8, 3, 4, 6, 14, 17, 1, 5, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 16, 18, 19, 1, 2, 4, 3, 4, 6, 8, 9, 1, 2, 3, 4, 5, 6, 7, 14, 18, 1, 2, 3, 4, 5, 7, 10, 12, 14, 1, 2, 3, 4, 5, 7, 14, 2, 3, 4, 6, 7, 8, 13, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 15, 16, 18, 3, 4, 5, 1, 2, 3, 5, 7, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 1, 2, 3, 4, 6, 8, 11, 12, 2, 3, 8, 12, 13, 3, 4, 6, 8, 3, 1, 2, 3, 4, 5, 7, 10, 12, 3, 5, 6, 8, 13, 14, 1, 3, 7, 13, 3, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 11, 1, 2, 3, 4, 6, 8, 9, 17, 3, 6, 8, 9, 11, 12, 13, 15, 20, 3, 9, 3, 8, 9, 1, 3, 4, 2, 5, 13, 3, 5, 6, 8, 14, 1, 2, 3, 4, 6, 7, 8, 9, 10, 14, 3, 4, 5, 7, 9, 17, 3, 4, 6, 17, 3, 3, 9, 1, 2, 3, 4, 6, 7, 8, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 10, 15, 1, 2, 3, 4, 5, 7, 9, 10, 13, 14, 1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 15, 1, 2, 3, 4, 9, 14, 1, 2, 3, 4, 5, 7, 8, 10, 11, 12, 13, 1, 2, 4, 7, 9, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 1, 2, 3, 8, 9, 10, 12, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 16, 17, 2, 3, 4, 8, 9, 1, 2, 4, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 8, 1, 4, 8, 1, 2, 4, 10, 12, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 1, 2, 4, 5, 7, 8, 9, 11, 13, 14, 17, 1, 2, 3, 4, 6, 7, 8, 10, 13, 19, 1, 7, 1, 2, 8, 10, 3, 6, 8, 9, 16, 17, 19, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 3, 4, 5, 16, 1, 2, 3, 4, 6, 10, 11, 12, 1, 2, 3, 10, 18, 1, 2, 3, 1, 2, 3, 4, 5, 6, 7, 11, 14, 15, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 18, 19, 1, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 15, 16, 17, 18, 20, 1, 3, 4, 6, 8, 9, 16, 3, 5, 6, 9, 16, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 8, 17, 6, 8, 17, 3, 6, 8, 16, 2, 3, 7, 10, 12, 15, 1, 2, 3, 7, 8, 15, 1, 2, 3, 12, 15, 2, 3, 5, 6, 1, 2, 3, 4, 6, 12, 1, 2, 3, 4, 8, 10, 15, 1, 4, 6, 7, 8, 10, 3, 4, 6, 8, 9, 13, 3, 6, 8, 13, 4, 10, 13, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 3, 4, 18, 1, 2, 3, 4, 6, 8, 11, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 5, 6, 8, 13, 14, 1, 2, 7, 12, 3, 6, 8, 9, 1, 2, 12, 1, 3, 4, 5, 1, 2, 1, 2, 4, 5, 6, 7, 8, 10, 12, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 3, 4, 6, 8, 18, 3, 4, 8, 1, 6, 8, 10, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 4, 7, 12, 1, 3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 15, 1, 2, 3, 5, 7, 8, 9, 10, 11, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 16, 17, 18, 19, 3, 7, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 14, 18, 1, 2, 3, 6, 7, 12, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 8, 1, 2, 3, 8, 1, 4, 12, 3, 6, 8, 9, 3, 9, 15, 1, 2, 7, 8, 15, 3, 15, 1, 3, 4, 5, 6, 7, 8, 9, 13, 14, 16, 18, 6, 16, 3, 4, 6, 8, 9, 19, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 2, 3, 4, 5, 10, 13, 14, 1, 2, 3, 4, 6, 7, 8, 9, 10, 12, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 14, 1, 2, 3, 6, 8, 1, 4, 5, 6, 8, 9, 10, 12, 15, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 3, 4, 5, 6, 8, 9, 13, 16, 17, 19, 2, 1, 2, 4, 7, 8, 12, 3, 6, 8, 14, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 15, 17, 19, 2, 4, 9, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 1, 2, 3, 4, 9, 10, 11, 12, 1, 2, 3, 4, 5, 7, 10, 11, 12, 17, 18, 1, 3, 4, 5, 9, 10, 1, 2, 3, 4, 5, 6, 8, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 16, 17, 18, 19, 1, 2, 3, 4, 5, 7, 8, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 17, 1, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 20, 3, 8, 9, 16, 4, 1, 2, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 14, 16, 17, 1, 3, 4, 5, 7, 9, 12, 1, 2, 4, 5, 6, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 18, 19, 1, 4, 10, 11, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 10, 12, 13, 19, 1, 2, 3, 6, 7, 9, 10, 1, 1, 2, 4, 5, 10, 11, 12, 12, 1, 2, 4, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 3, 4, 5, 8, 9, 16, 1, 1, 3, 4, 5, 6, 1, 3, 4, 6, 7, 8, 9, 16, 17, 1, 3, 4, 6, 17, 3, 4, 5, 6, 7, 8, 9, 13, 1, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 14, 16, 1, 3, 5, 6, 7, 13, 1, 4, 1, 5, 1, 2, 4, 6, 8, 10, 3, 4, 5, 6, 8, 9, 1, 6, 10, 12, 18, 1, 2, 3, 4, 5, 9, 10, 18, 1, 2, 5, 7, 11, 12, 15, 16, 18, 1, 2, 3, 4, 5, 7, 10, 11, 18, 19, 3, 4, 7, 9, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 1, 2, 3, 4, 6, 7, 8, 10, 13, 16, 1, 2, 3, 4, 7, 9, 10, 11, 12, 1, 4, 6, 15, 18, 3, 16, 17, 3, 16, 17, 1, 2, 7, 10, 11, 18, 1, 2, 10, 11, 19, 1, 3, 4, 5, 7, 13, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 18, 3, 8, 15, 1, 5, 3, 1, 2, 7, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 2, 3, 4, 5, 6, 2, 1, 2, 10, 19, 1, 3, 5, 6, 7, 8, 9, 10, 13, 15, 16, 19, 1, 3, 4, 5, 7, 8, 13, 3, 4, 5, 7, 8, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 3, 5, 7, 8, 10, 18, 1, 2, 3, 5, 6, 7, 8, 9, 1, 3, 4, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 4, 8, 9, 10, 18, 1, 2, 4, 5, 7, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 16, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 3, 7, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 12, 1, 2, 1, 2, 3, 5, 7, 11, 18, 1, 2, 4, 5, 1, 2, 3, 4, 5, 7, 8, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 1, 2, 3, 4, 7, 1, 2, 3, 4, 5, 6, 10, 1, 2, 3, 4, 5, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 9, 10, 12, 14, 16, 1, 2, 11, 3, 1, 2, 4, 10, 12, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 1, 2, 3, 4, 6, 7, 8, 9, 11, 15, 19, 1, 3, 4, 8, 11, 9, 1, 3, 7, 9, 19, 1, 2, 3, 1, 3, 5, 6, 8, 9, 14, 1, 2, 15, 1, 2, 4, 5, 7, 8, 18, 1, 2, 3, 4, 5, 6, 7, 8, 14, 1, 2, 1, 3, 4, 8, 17, 1, 2, 8, 1, 4, 6, 19, 1, 2, 4, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 4, 5, 6, 8, 9, 1, 2, 3, 4, 5, 6, 8, 10, 13, 1, 3, 4, 5, 7, 8, 9, 10, 14, 1, 3, 4, 5, 6, 7, 8, 9, 10, 14, 16, 17, 18, 19, 3, 8, 16, 3, 4, 6, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 15, 16, 17, 18, 20, 3, 5, 7, 8, 13, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 4, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 4, 8, 10, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 17, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 1, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 18, 1, 2, 4, 5, 7, 13, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 1, 2, 4, 5, 6, 7, 12, 1, 2, 5, 7, 12, 1, 2, 3, 4, 5, 7, 9, 1, 2, 4, 9, 14, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 4, 8, 9, 12, 19, 1, 3, 9, 10, 11, 12, 1, 2, 4, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 17, 18, 19, 1, 4, 7, 8, 10, 15, 3, 1, 2, 4, 5, 6, 8, 9, 10, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 19, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 1, 3, 4, 5, 6, 7, 8, 9, 1, 2, 4, 11, 16, 1, 2, 4, 6, 11, 19, 3, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 18, 3, 4, 9, 1, 2, 3, 4, 6, 7, 8, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 4, 7, 9, 12, 14, 1, 2, 3, 4, 5, 12, 19, 1, 12, 1, 2, 12, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 1, 2, 3, 4, 5, 8, 9, 10, 11, 12, 13, 14, 15, 18, 1, 2, 5, 8, 12, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 4, 7, 3, 4, 5, 6, 8, 9, 13, 14, 16, 17, 1, 4, 5, 7, 10, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 14, 17, 1, 2, 1, 2, 3, 4, 6, 9, 10, 11, 5, 6, 7, 8, 9, 1, 3, 9, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 18, 3, 6, 7, 9, 19, 2, 3, 4, 6, 13, 3, 4, 11, 1, 2, 3, 4, 6, 8, 10, 12, 15, 18, 1, 2, 3, 4, 5, 6, 7, 8, 15, 1, 2, 4, 5, 7, 9, 11, 12, 15, 16, 18, 1, 2, 4, 1, 2, 4, 6, 7, 9, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 7, 9, 3, 8, 9, 16, 7, 14, 1, 5, 7, 1, 2, 3, 4, 5, 6, 8, 9, 13, 1, 4, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 4, 5, 10, 11, 12, 15, 18, 1, 2, 5, 7, 9, 12, 14, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 18, 3, 8, 3, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 6, 7, 12, 18, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 2, 3, 4, 9, 3, 5, 8, 18, 3, 6, 8, 9, 3, 7, 8, 9, 10, 19, 3, 13, 19, 1, 2, 3, 4, 6, 7, 18, 19, 4, 8, 15, 18, 1, 2, 3, 4, 5, 7, 8, 9, 12, 13, 15, 18, 1, 2, 3, 4, 5, 7, 8, 10, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 19, 1, 3, 5, 6, 8, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 15, 18, 1, 2, 12, 1, 2, 3, 4, 7, 8, 10, 11, 2, 3, 6, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 18, 3, 6, 8, 9, 13, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 10, 13, 15, 16, 17, 19, 1, 2, 4, 5, 7, 8, 9, 10, 11, 14, 3, 7, 14, 1, 4, 8, 10, 12, 1, 2, 4, 8, 10, 11, 12, 13, 1, 2, 5, 6, 9, 18, 1, 2, 3, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 1, 2, 3, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 12, 1, 2, 3, 4, 5, 6, 7, 8, 10, 13, 18, 1, 5, 1, 2, 3, 4, 10, 1, 2, 4, 6, 10, 11, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 18, 1, 3, 5, 6, 7, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 1, 2, 4, 5, 6, 9, 12, 18, 1, 2, 3, 5, 6, 8, 9, 10, 11, 15, 1, 2, 3, 4, 5, 6, 8, 10, 11, 1, 4, 5, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 4, 5, 6, 7, 8, 11, 12, 13, 14, 15, 1, 2, 4, 7, 10, 13, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 16, 17, 18, 3, 4, 5, 6, 8, 13, 17, 1, 2, 3, 4, 5, 6, 7, 8, 10, 13, 19, 1, 2, 3, 7, 9, 11, 12, 13, 1, 3, 4, 5, 9, 12, 1, 2, 3, 4, 5, 7, 8, 9, 11, 12, 1, 2, 3, 4, 5, 7, 8, 10, 11, 12, 14, 15, 18, 1, 3, 4, 5, 8, 14, 19, 1, 2, 5, 8, 9, 11, 16, 1, 2, 4, 1, 2, 4, 5, 6, 8, 9, 11, 12, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 8, 9, 11, 12, 15, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 4, 6, 8, 13, 19, 1, 2, 4, 5, 6, 7, 8, 9, 10, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 16, 18, 19, 1, 2, 3, 4, 6, 7, 11, 18, 19, 1, 2, 3, 4, 6, 8, 10, 15, 17, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 19, 1, 2, 3, 19, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 16, 1, 2, 4, 5, 6, 7, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 19, 1, 2, 6, 11, 14, 1, 2, 3, 4, 5, 6, 7, 14, 1, 2, 3, 4, 5, 1, 2, 3, 5, 8, 12, 4, 5, 8, 18, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 5, 6, 7, 8, 9, 12, 1, 2, 4, 9, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 1, 6, 8, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 1, 8, 10, 2, 3, 4, 5, 8, 9, 10, 12, 13, 14, 1, 2, 3, 4, 5, 6, 7, 8, 10, 15, 17, 1, 2, 3, 7, 10, 1, 2, 12, 1, 2, 3, 5, 6, 7, 8, 12, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 17, 1, 3, 4, 5, 1, 2, 5, 6, 7, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 1, 3, 4, 5, 6, 7, 8, 17, 1, 2, 3, 4, 5, 7, 8, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 15, 17, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 1, 2, 3, 4, 6, 7, 8, 9, 1, 3, 4, 8, 1, 2, 3, 4, 5, 7, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 15, 18, 1, 2, 3, 4, 5, 6, 8, 9, 11, 14, 16, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 18, 19, 1, 2, 6, 12, 1, 2, 3, 4, 5, 6, 7, 9, 10, 18, 19, 1, 3, 4, 8, 10, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 1, 2, 3, 4, 6, 10, 12, 19, 1, 2, 3, 4, 5, 6, 7, 9, 12, 14, 1, 2, 3, 4, 5, 6, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 18, 19, 1, 2, 3, 4, 5, 6, 8, 3, 7, 8, 1, 2, 3, 8, 10, 1, 13, 3, 6, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 3, 4, 7, 8, 10, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 3, 8, 1, 3, 5, 8, 1, 2, 3, 4, 5, 6, 8, 9, 10, 13, 1, 3, 4, 5, 6, 7, 8, 13, 18, 1, 3, 4, 6, 1, 3, 6, 7, 8, 9, 13, 15, 18, 3, 6, 8, 1, 2, 3, 5, 8, 12, 13, 1, 2, 4, 6, 8, 3, 13, 17, 2, 3, 5, 7, 8, 13, 3, 4, 5, 6, 7, 13, 3, 1, 2, 3, 4, 5, 6, 7, 10, 11, 13, 15, 16, 1, 2, 5, 7, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 18, 19, 2, 3, 7, 8, 13, 16, 17, 18, 19, 4, 6, 8, 9, 19, 3, 19, 3, 8, 19, 3, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 1, 2, 3, 4, 5, 6, 7, 8, 10, 14, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 12, 13, 17, 1, 2, 11, 1, 2, 3, 6, 7, 8, 18, 1, 3, 4, 5, 6, 10, 14, 19, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 18, 1, 2, 4, 8, 10, 11, 12, 3, 7, 8, 1, 4, 5, 7, 12, 1, 4, 5, 7, 8, 13, 3, 6, 8, 17, 1, 2, 5, 7, 9, 11, 12, 1, 2, 3, 4, 5, 9, 1, 2, 8, 3, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 1, 2, 3, 4, 5, 6, 7, 8, 12, 14, 17, 3, 5, 6, 8, 9, 1, 2, 3, 4, 5, 7, 14, 3, 8, 9, 1, 17, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 1, 2, 3, 8, 10, 3, 6, 1, 2, 3, 4, 5, 7, 12, 13, 1, 7, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 18, 5, 6, 9, 1, 3, 4, 10, 11, 13, 1, 2, 11, 12, 1, 8, 10, 11, 1, 10, 1, 10, 11, 12, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 7, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 1, 2, 4, 5, 7, 10, 13, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 16, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 3, 5, 13, 1, 1, 2, 3, 4, 5, 7, 8, 9, 10, 13, 3, 9, 13, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 13, 14, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 1, 4, 7, 13, 3, 10, 1, 2, 4, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 4, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 4, 1, 3, 4, 8, 10, 11, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 5, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 16, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 2, 3, 7, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 18, 1, 2, 3, 4, 5, 9, 10, 11, 12, 18, 1, 1, 2, 3, 18, 1, 2, 3, 4, 5, 6, 7, 8, 18, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 8, 9, 1, 3, 4, 8, 15, 19, 1, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 14, 17, 7, 1, 2, 5, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 15, 16, 17, 18, 3, 4, 5, 7, 10, 2, 3, 5, 1, 3, 4, 6, 8, 10, 16, 1, 2, 3, 4, 6, 8, 10, 12, 15, 17, 18, 3, 4, 8, 15, 1, 4, 1, 2, 3, 4, 5, 7, 8, 9, 10, 12, 14, 3, 6, 8, 16, 3, 16, 4, 8, 2, 3, 4, 5, 7, 10, 18, 1, 3, 7, 14, 1, 2, 3, 4, 5, 6, 8, 9, 11, 14, 3, 6, 16, 17, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 12, 1, 2, 3, 4, 6, 8, 9, 10, 11, 15, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 10, 3, 4, 8, 9, 1, 2, 5, 7, 10, 11, 12, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 5, 7, 8, 10, 13, 1, 2, 3, 4, 6, 8, 9, 10, 11, 12, 13, 19, 1, 2, 10, 11, 12, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 15, 18, 19, 1, 2, 4, 8, 9, 10, 12, 13, 3, 7, 16, 3, 4, 5, 6, 8, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 1, 2, 7, 3, 6, 1, 2, 11, 18, 1, 2, 4, 5, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 18, 1, 3, 4, 5, 6, 7, 8, 9, 13, 14, 16, 3, 6, 8, 1, 6, 8, 3, 4, 5, 8, 14, 2, 3, 4, 6, 8, 9, 10, 14, 1, 2, 5, 9, 12, 19, 3, 6, 10, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 1, 2, 3, 4, 5, 6, 8, 9, 10, 16, 17, 18, 19, 3, 6, 8, 9, 16, 17, 19, 3, 9, 16, 1, 2, 3, 4, 11, 12, 1, 9, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 18, 19, 2, 3, 4, 5, 6, 8, 9, 10, 13, 1, 3, 4, 5, 6, 7, 8, 9, 13, 14, 16, 1, 2, 3, 4, 6, 7, 8, 9, 11, 17, 1, 2, 4, 11, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 3, 4, 5, 6, 8, 12, 13, 19, 1, 3, 4, 5, 1, 2, 5, 3, 5, 6, 9, 13, 1, 2, 4, 6, 7, 8, 18, 3, 6, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 10, 13, 14, 16, 1, 2, 4, 6, 7, 10, 1, 2, 3, 4, 5, 7, 8, 9, 1, 3, 4, 7, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 4, 5, 6, 7, 8, 9, 15, 9, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 17, 19, 2, 8, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 6, 8, 15, 18, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 14, 15, 18, 19, 1, 2, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 1, 5, 7, 9, 18, 3, 4, 6, 8, 10, 3, 6, 8, 9, 1, 3, 4, 5, 7, 8, 15, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 18, 1, 2, 3, 4, 5, 6, 8, 9, 11, 13, 14, 15, 16, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 14, 16, 17, 1, 3, 4, 5, 6, 7, 8, 10, 13, 15, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 2, 3, 4, 5, 6, 8, 11, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 14, 16, 1, 4, 5, 7, 10, 1, 3, 4, 5, 6, 7, 8, 10, 13, 15, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 3, 4, 7, 8, 9, 13, 14, 1, 2, 3, 8, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 3, 4, 5, 6, 8, 18, 1, 4, 5, 6, 7, 8, 18, 1, 2, 4, 5, 6, 7, 10, 11, 12, 18, 1, 2, 3, 5, 6, 8, 9, 10, 12, 1, 2, 4, 11, 12, 1, 2, 5, 7, 15, 1, 2, 5, 7, 10, 1, 3, 4, 5, 1, 2, 4, 7, 9, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 1, 2, 6, 8, 9, 11, 12, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 14, 2, 3, 4, 6, 8, 10, 16, 1, 2, 3, 4, 7, 13, 1, 2, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 18, 19, 3, 4, 8, 9, 16, 1, 2, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 1, 10, 1, 2, 4, 5, 7, 8, 18, 19, 1, 2, 3, 5, 7, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 18, 6, 9, 1, 5, 7, 8, 11, 1, 2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 1, 7, 8, 11, 13, 1, 3, 4, 5, 6, 7, 8, 12, 13, 1, 3, 4, 6, 8, 9, 10, 11, 14, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 17, 18, 19, 1, 2, 3, 4, 10, 1, 2, 4, 5, 6, 7, 8, 10, 11, 12, 14, 1, 2, 4, 5, 6, 7, 8, 1, 2, 5, 8, 9, 1, 2, 3, 4, 6, 8, 19, 3, 11, 12, 1, 3, 4, 5, 19, 3, 4, 6, 8, 13, 1, 2, 4, 6, 12, 4, 6, 9, 1, 3, 4, 5, 7, 8, 13, 15, 3, 4, 6, 8, 16, 17, 1, 3, 4, 5, 7, 8, 9, 14, 18, 3, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 18, 19, 3, 5, 6, 7, 8, 9, 13, 17, 3, 4, 6, 8, 9, 13, 14, 16, 17, 3, 3, 4, 8, 9, 13, 9, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 19, 1, 3, 4, 6, 7, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 3, 5, 1, 2, 3, 5, 7, 10, 11, 12, 14, 1, 3, 5, 9, 11, 1, 2, 3, 5, 6, 7, 8, 9, 13, 3, 4, 5, 6, 8, 10, 6, 8, 9, 16, 3, 4, 5, 6, 7, 8, 9, 17, 3, 1, 4, 1, 2, 11, 1, 3, 4, 9, 15, 1, 8, 15, 1, 2, 3, 4, 8, 10, 11, 19, 1, 1, 2, 3, 5, 6, 7, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 13, 19, 3, 4, 6, 8, 9, 13, 1, 2, 3, 4, 12, 14, 19, 1, 2, 3, 7, 8, 10, 11, 15, 1, 2, 4, 5, 6, 8, 10, 11, 12, 17, 1, 3, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 17, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 17, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 3, 6, 8, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 17, 19, 1, 2, 4, 5, 7, 10, 11, 12, 14, 15, 19, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 4, 7, 15, 2, 3, 4, 6, 8, 9, 10, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 19, 1, 2, 3, 4, 5, 6, 1, 3, 4, 5, 8, 9, 10, 15, 3, 4, 5, 8, 9, 13, 16, 17, 1, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3, 1, 3, 4, 5, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 12, 20, 1, 2, 3, 4, 8, 14, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 10, 1, 2, 3, 4, 9, 11, 1, 5, 10, 14, 1, 4, 5, 7, 1, 2, 3, 4, 5, 6, 7, 8, 13, 16, 19, 1, 2, 3, 4, 5, 6, 7, 8, 13, 17, 19, 1, 2, 4, 19, 1, 9, 1, 2, 6, 11, 12, 1, 2, 3, 5, 6, 7, 9, 15, 1, 2, 3, 4, 13, 15, 17, 1, 2, 5, 6, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 4, 10, 11, 12, 15, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 1, 2, 3, 4, 6, 7, 8, 12, 15, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 2, 3, 4, 6, 7, 8, 10, 1, 2, 4, 6, 8, 1, 2, 3, 7, 12, 1, 2, 3, 4, 5, 7, 10, 12, 16, 19, 1, 2, 3, 4, 5, 6, 8, 9, 13, 19, 3, 2, 3, 6, 10, 4, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 6, 8, 3, 4, 8, 16, 3, 5, 6, 8, 9, 12, 14, 15, 18, 3, 3, 1, 3, 4, 6, 8, 16, 19, 1, 1, 2, 3, 4, 5, 6, 7, 8, 12, 13, 19, 3, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 15, 20, 1, 2, 10, 1, 2, 4, 1, 2, 4, 6, 7, 8, 9, 14, 1, 3, 4, 5, 7, 1, 3, 6, 7, 1, 2, 9, 12, 2, 3, 4, 5, 6, 8, 14, 1, 2, 3, 10, 1, 2, 4, 5, 6, 7, 1, 4, 5, 7, 1, 2, 3, 4, 6, 7, 9, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 1, 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 13, 17, 3, 4, 5, 6, 8, 9, 13, 14, 17, 18, 1, 2, 5, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 18, 7, 1, 4, 5, 6, 8, 9, 17, 3, 4, 5, 6, 8, 13, 16, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 16, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 15, 19, 1, 2, 4, 1, 2, 3, 4, 5, 7, 8, 11, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 3, 1, 2, 3, 4, 5, 7, 8, 9, 12, 13, 1, 2, 3, 7, 9, 10, 19, 4, 5, 7, 5, 7, 8, 12, 1, 7, 9, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 10, 11, 13, 6, 1, 2, 3, 4, 5, 6, 7, 8, 9, 13, 1, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 3, 8, 20, 1, 13, 1, 3, 4, 6, 13, 17, 1, 2, 3, 4, 5, 6, 7, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 1, 2, 8, 1, 2, 1, 2, 3, 5, 6, 12, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 18, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 15, 1, 4, 1, 2, 3, 4, 5, 7, 8, 9, 11, 19, 3, 5, 6, 9, 10, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 16, 17, 19, 2, 3, 4, 6, 7, 8, 16, 1, 2, 3, 4, 5, 6, 7, 8, 10, 16, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 19, 3, 4, 6, 8, 9, 13, 8, 3, 4, 5, 6, 8, 9, 14, 17, 18, 3, 6, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 1, 2, 3, 4, 5, 6, 7, 8, 12, 16, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13, 15, 1, 3, 7, 9, 12, 16, 1, 2, 11, 12, 3, 4, 5, 9, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 16, 18, 19, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 1, 2, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 12, 13, 14, 7, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 16, 17, 18, 19, 3, 4, 5, 1, 3, 10, 8, 9, 3, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 12, 16, 18, 3, 6, 8, 3, 6, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 5, 7, 3, 8, 9, 1, 2, 3, 4, 5, 6, 7, 8, 10, 12, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 4, 11, 1, 3, 7, 1, 3, 4, 5, 6, 7, 8, 10, 12, 17, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 15, 16, 17, 18, 19, 3, 5, 8, 9, 12, 14, 15, 18, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 19, 1, 2, 1, 2, 10, 12, 1, 2, 4, 10, 11, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 13, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 16, 17, 18, 3, 10, 1, 3, 12, 15, 17, 1, 2, 5, 7, 14, 2, 3, 4, 6, 15, 19, 1, 2, 3, 4, 5, 7, 8, 9, 13, 14, 3, 4, 6, 8, 9, 16, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 1, 2, 3, 4, 5, 6, 9, 10, 11, 18, 19, 1, 2, 1, 2, 3, 4, 5, 6, 8, 9, 10, 13, 16, 19, 1, 3, 4, 5, 6, 8, 9, 10, 11, 12, 15, 17, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 19, 3, 8, 9, 1, 2, 3, 4, 5, 7, 9, 14, 18, 3, 4, 5, 6, 8, 12, 13, 1, 2, 4, 5, 7, 14, 1, 2, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 16, 17, 1, 4, 5, 7, 13, 14, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 3, 5, 7, 9, 1, 3, 4, 6, 8, 15, 18, 1, 4, 5, 7, 1, 7, 3, 4, 5, 7, 8, 9, 1, 5, 6, 9, 17, 4, 6, 1, 2, 3, 4, 5, 12, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 1, 2, 3, 5, 6, 7, 8, 1, 2, 3, 5, 7, 8, 13, 3, 4, 5, 6, 8, 9, 17, 1, 2, 4, 8, 12, 19], &quot;Freq&quot;: [0.093023255813953487, 0.046511627906976744, 0.15116279069767441, 0.32558139534883723, 0.058139534883720929, 0.023255813953488372, 0.093023255813953487, 0.034883720930232558, 0.023255813953488372, 0.023255813953488372, 0.069767441860465115, 0.046511627906976744, 0.25, 0.66666666666666663, 0.17808219178082191, 0.21917808219178081, 0.041095890410958902, 0.027397260273972601, 0.082191780821917804, 0.027397260273972601, 0.17808219178082191, 0.1095890410958904, 0.068493150684931503, 0.041095890410958902, 0.33766233766233766, 0.18181818181818182, 0.025974025974025976, 0.025974025974025976, 0.12987012987012986, 0.090909090909090912, 0.15584415584415584, 0.03896103896103896, 0.88461538461538458, 0.076923076923076927, 0.46296296296296297, 0.12962962962962962, 0.018518518518518517, 0.018518518518518517, 0.037037037037037035, 0.1111111111111111, 0.07407407407407407, 0.037037037037037035, 0.055555555555555552, 0.018518518518518517, 0.018518518518518517, 0.19883040935672514, 0.19298245614035087, 0.26315789473684209, 0.046783625730994149, 0.064327485380116955, 0.023391812865497075, 0.13450292397660818, 0.0058479532163742687, 0.0058479532163742687, 0.017543859649122806, 0.023391812865497075, 0.011695906432748537, 0.0058479532163742687, 0.0058479532163742687, 0.0058479532163742687, 0.052631578947368418, 0.052631578947368418, 0.052631578947368418, 0.73684210526315785, 0.052631578947368418, 0.026315789473684209, 0.32299741602067183, 0.19121447028423771, 0.043927648578811367, 0.095607235142118857, 0.074935400516795869, 0.031007751937984496, 0.10077519379844961, 0.043927648578811367, 0.018087855297157621, 0.0077519379844961239, 0.012919896640826873, 0.031007751937984496, 0.0025839793281653748, 0.0077519379844961239, 0.0077519379844961239, 0.0051679586563307496, 0.0025839793281653748, 0.22641509433962265, 0.32075471698113206, 0.037735849056603772, 0.15094339622641509, 0.11320754716981132, 0.018867924528301886, 0.018867924528301886, 0.018867924528301886, 0.037735849056603772, 0.037735849056603772, 0.22500000000000001, 0.27500000000000002, 0.27500000000000002, 0.125, 0.025000000000000001, 0.050000000000000003, 0.25, 0.4375, 0.09375, 0.125, 0.045454545454545456, 0.045454545454545456, 0.86363636363636365, 0.21276595744680851, 0.25531914893617019, 0.1702127659574468, 0.085106382978723402, 0.10638297872340426, 0.021276595744680851, 0.042553191489361701, 0.063829787234042548, 0.20143884892086331, 0.5611510791366906, 0.021582733812949641, 0.050359712230215826, 0.0071942446043165471, 0.0071942446043165471, 0.0071942446043165471, 0.014388489208633094, 0.043165467625899283, 0.014388489208633094, 0.043165467625899283, 0.014388489208633094, 0.0071942446043165471, 0.92307692307692313, 0.25063371356147024, 0.19518377693282637, 0.10773130544993663, 0.030418250950570342, 0.045627376425855515, 0.016159695817490494, 0.057667934093789605, 0.021546261089987327, 0.018060836501901139, 0.030735107731305451, 0.072877059569074781, 0.12357414448669202, 0.0095057034220532317, 0.0044359949302915083, 0.0041191381495564007, 0.0015842839036755386, 0.0047528517110266158, 0.0034854245880861852, 0.0019011406844106464, 0.16304347826086957, 0.16847826086956522, 0.125, 0.059782608695652176, 0.010869565217391304, 0.005434782608695652, 0.065217391304347824, 0.14130434782608695, 0.081521739130434784, 0.11413043478260869, 0.010869565217391304, 0.005434782608695652, 0.010869565217391304, 0.010869565217391304, 0.010869565217391304, 0.19822921790457451, 0.06640432857845549, 0.07476635514018691, 0.090506640432857846, 0.12001967535661584, 0.049680275454992623, 0.099852434825381212, 0.078701426463354651, 0.081652729955730446, 0.019183472700442697, 0.045253320216428923, 0.010821446138711265, 0.027053615346778161, 0.0093457943925233638, 0.0088539104771273979, 0.0024594195769798328, 0.00049188391539596653, 0.014264633546483029, 0.0019675356615838661, 0.00049188391539596653, 0.23884514435695539, 0.23228346456692914, 0.040682414698162729, 0.030183727034120734, 0.020997375328083989, 0.028871391076115485, 0.020997375328083989, 0.040682414698162729, 0.0091863517060367453, 0.03805774278215223, 0.10104986876640421, 0.17454068241469817, 0.0065616797900262466, 0.0026246719160104987, 0.0013123359580052493, 0.0013123359580052493, 0.0091863517060367453, 0.0026246719160104987, 0.09375, 0.0625, 0.4375, 0.125, 0.09375, 0.03125, 0.03125, 0.0625, 0.91666666666666663, 0.14285714285714285, 0.5, 0.071428571428571425, 0.071428571428571425, 0.071428571428571425, 0.071428571428571425, 0.33333333333333331, 0.5, 0.17790622992935132, 0.093770070648683368, 0.17854849068721901, 0.064868336544637126, 0.097623635195889527, 0.030828516377649325, 0.048811817597944764, 0.038535645472061654, 0.20423892100192678, 0.012845215157353885, 0.023763648041104687, 0.010918432883750802, 0.0057803468208092483, 0.0051380860629415539, 0.00064226075786769424, 0.0012845215157353885, 0.00064226075786769424, 0.002569043031470777, 0.0012845215157353885, 0.083333333333333329, 0.16666666666666666, 0.083333333333333329, 0.5, 0.083333333333333329, 0.055555555555555552, 0.61111111111111116, 0.1111111111111111, 0.1111111111111111, 0.33333333333333331, 0.16666666666666666, 0.083333333333333329, 0.16666666666666666, 0.25, 0.13043478260869565, 0.82608695652173914, 0.125, 0.625, 0.0625, 0.0625, 0.0625, 0.46464646464646464, 0.31313131313131315, 0.050505050505050504, 0.060606060606060608, 0.030303030303030304, 0.020202020202020204, 0.030303030303030304, 0.010101010101010102, 0.40566037735849059, 0.075471698113207544, 0.009433962264150943, 0.04716981132075472, 0.10377358490566038, 0.018867924528301886, 0.018867924528301886, 0.018867924528301886, 0.12264150943396226, 0.009433962264150943, 0.11320754716981132, 0.028301886792452831, 0.009433962264150943, 0.009433962264150943, 0.009433962264150943, 0.18181818181818182, 0.36363636363636365, 0.36363636363636365, 0.18324607329842932, 0.18848167539267016, 0.09947643979057591, 0.09947643979057591, 0.062827225130890049, 0.031413612565445025, 0.04712041884816754, 0.041884816753926704, 0.1256544502617801, 0.04712041884816754, 0.041884816753926704, 0.015706806282722512, 0.005235602094240838, 0.005235602094240838, 0.36774193548387096, 0.19354838709677419, 0.0064516129032258064, 0.051612903225806452, 0.051612903225806452, 0.025806451612903226, 0.17419354838709677, 0.025806451612903226, 0.012903225806451613, 0.0064516129032258064, 0.058064516129032261, 0.0064516129032258064, 0.0064516129032258064, 0.011627906976744186, 0.046511627906976744, 0.13953488372093023, 0.011627906976744186, 0.011627906976744186, 0.10465116279069768, 0.10465116279069768, 0.011627906976744186, 0.023255813953488372, 0.011627906976744186, 0.023255813953488372, 0.47674418604651164, 0.023255813953488372, 0.021276595744680851, 0.95744680851063835, 0.96825396825396826, 0.043956043956043959, 0.01098901098901099, 0.02197802197802198, 0.032967032967032968, 0.87912087912087911, 0.044247787610619468, 0.10619469026548672, 0.14749262536873156, 0.017699115044247787, 0.0029498525073746312, 0.24778761061946902, 0.014749262536873156, 0.15339233038348082, 0.085545722713864306, 0.091445427728613568, 0.085545722713864306, 0.45454545454545453, 0.045454545454545456, 0.13636363636363635, 0.090909090909090912, 0.22727272727272727, 0.11347517730496454, 0.031914893617021274, 0.15957446808510639, 0.067375886524822695, 0.48581560283687941, 0.0035460992907801418, 0.042553191489361701, 0.021276595744680851, 0.028368794326241134, 0.0035460992907801418, 0.0070921985815602835, 0.028368794326241134, 0.0035460992907801418, 0.0035460992907801418, 0.29931972789115646, 0.34693877551020408, 0.047619047619047616, 0.044217687074829932, 0.013605442176870748, 0.013605442176870748, 0.078231292517006806, 0.01020408163265306, 0.01020408163265306, 0.0034013605442176869, 0.047619047619047616, 0.071428571428571425, 0.0034013605442176869, 0.0034013605442176869, 0.0034013605442176869, 0.18181818181818182, 0.54545454545454541, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.015521064301552107, 0.073170731707317069, 0.05543237250554324, 0.079822616407982258, 0.004434589800443459, 0.37472283813747226, 0.008869179600886918, 0.30820399113082042, 0.064301552106430154, 0.004434589800443459, 0.004434589800443459, 0.0022172949002217295, 0.20909090909090908, 0.081818181818181818, 0.054545454545454543, 0.027272727272727271, 0.10909090909090909, 0.48181818181818181, 0.018181818181818181, 0.090909090909090912, 0.81818181818181823, 0.090909090909090912, 0.095238095238095233, 0.095238095238095233, 0.14285714285714285, 0.047619047619047616, 0.14285714285714285, 0.047619047619047616, 0.047619047619047616, 0.19047619047619047, 0.19047619047619047, 0.27098321342925658, 0.095923261390887291, 0.016786570743405275, 0.047961630695443645, 0.34292565947242204, 0.011990407673860911, 0.1079136690647482, 0.011990407673860911, 0.045563549160671464, 0.0047961630695443642, 0.0023980815347721821, 0.0095923261390887284, 0.023980815347721823, 0.0047961630695443642, 0.0023980815347721821, 0.19959677419354838, 0.12298387096774194, 0.028225806451612902, 0.088709677419354843, 0.38104838709677419, 0.0020161290322580645, 0.094758064516129031, 0.0060483870967741934, 0.048387096774193547, 0.0020161290322580645, 0.0060483870967741934, 0.0040322580645161289, 0.0020161290322580645, 0.0080645161290322578, 0.0095238095238095247, 0.0023809523809523812, 0.20238095238095238, 0.057142857142857141, 0.090476190476190474, 0.22142857142857142, 0.0095238095238095247, 0.29761904761904762, 0.088095238095238101, 0.0023809523809523812, 0.0095238095238095247, 0.0023809523809523812, 0.0023809523809523812, 0.0023809523809523812, 0.066666666666666666, 0.73333333333333328, 0.066666666666666666, 0.066666666666666666, 0.72727272727272729, 0.18181818181818182, 0.25925925925925924, 0.07407407407407407, 0.037037037037037035, 0.59259259259259256, 0.0625, 0.875, 0.32307692307692309, 0.0076923076923076927, 0.046153846153846156, 0.030769230769230771, 0.0076923076923076927, 0.015384615384615385, 0.50769230769230766, 0.030769230769230771, 0.0076923076923076927, 0.034285714285714287, 0.045714285714285714, 0.068571428571428575, 0.097142857142857142, 0.0057142857142857143, 0.60571428571428576, 0.074285714285714288, 0.045714285714285714, 0.011428571428571429, 0.0079522862823061622, 0.0059642147117296221, 0.22465208747514911, 0.05168986083499006, 0.0019880715705765406, 0.38767395626242546, 0.0019880715705765406, 0.26640159045725648, 0.0099403578528827041, 0.0019880715705765406, 0.0039761431411530811, 0.019880715705765408, 0.0039761431411530811, 0.0059642147117296221, 0.0039761431411530811, 0.098214285714285712, 0.075892857142857137, 0.33035714285714285, 0.040178571428571432, 0.044642857142857144, 0.066964285714285712, 0.044642857142857144, 0.089285714285714288, 0.053571428571428568, 0.040178571428571432, 0.080357142857142863, 0.0089285714285714281, 0.004464285714285714, 0.0089285714285714281, 0.0089285714285714281, 0.004464285714285714, 0.30029154518950435, 0.16326530612244897, 0.10204081632653061, 0.052478134110787174, 0.011661807580174927, 0.037900874635568516, 0.087463556851311949, 0.026239067055393587, 0.023323615160349854, 0.040816326530612242, 0.040816326530612242, 0.093294460641399415, 0.0058309037900874635, 0.0087463556851311956, 0.055555555555555552, 0.29166666666666669, 0.013888888888888888, 0.47222222222222221, 0.013888888888888888, 0.013888888888888888, 0.013888888888888888, 0.027777777777777776, 0.097222222222222224, 0.21739130434782608, 0.2608695652173913, 0.13043478260869565, 0.086956521739130432, 0.21739130434782608, 0.043478260869565216, 0.90909090909090906, 0.030855916286557553, 0.041320096592433596, 0.54038100348806006, 0.090152938019855106, 0.018781862087469816, 0.077810571505232087, 0.01314730346122887, 0.092031124228602088, 0.028172793131204722, 0.0056345586262409441, 0.0010732492621411322, 0.023074859136034343, 0.012610678830158305, 0.0010732492621411322, 0.003756372417493963, 0.0050979339951703782, 0.0026831231553528308, 0.0016098738932116983, 0.010732492621411323, 0.13920770085153647, 0.077748981858570904, 0.26786375416512404, 0.11495742317660126, 0.064235468345057389, 0.064050351721584603, 0.056460570159200293, 0.11754905590522029, 0.034061458718992965, 0.0085153646797482413, 0.0072195483154387265, 0.0038874490929285449, 0.020547945205479451, 0.0044427989633469087, 0.0031469825990373935, 0.0029618659755646058, 0.0029618659755646058, 0.0079600148093298771, 0.0020362828582006663, 0.00018511662347278786, 0.69230769230769229, 0.23076923076923078, 0.076923076923076927, 0.011494252873563218, 0.0036572622779519333, 0.58986415882967602, 0.032915360501567396, 0.0083594566353187051, 0.060083594566353184, 0.022466039707419019, 0.17136886102403343, 0.019331243469174503, 0.0083594566353187051, 0.00052246603970741907, 0.00052246603970741907, 0.044932079414838039, 0.0010449320794148381, 0.0020898641588296763, 0.010449320794148381, 0.0010449320794148381, 0.0036572622779519333, 0.0067920585161964468, 0.24390243902439024, 0.69918699186991873, 0.016260162601626018, 0.008130081300813009, 0.008130081300813009, 0.008130081300813009, 0.34615384615384615, 0.61538461538461542, 0.083333333333333329, 0.83333333333333337, 0.9285714285714286, 0.6071428571428571, 0.32142857142857145, 0.035714285714285712, 0.25, 0.71875, 0.19230769230769232, 0.65384615384615385, 0.038461538461538464, 0.038461538461538464, 0.038461538461538464, 0.31578947368421051, 0.052631578947368418, 0.21052631578947367, 0.36842105263157893, 0.040000000000000001, 0.16, 0.40000000000000002, 0.12, 0.040000000000000001, 0.080000000000000002, 0.040000000000000001, 0.080000000000000002, 0.11764705882352941, 0.11764705882352941, 0.58823529411764708, 0.058823529411764705, 0.91666666666666663, 0.21621621621621623, 0.59459459459459463, 0.0090090090090090089, 0.0090090090090090089, 0.15315315315315314, 0.18181818181818182, 0.27272727272727271, 0.090909090909090912, 0.45454545454545453, 0.47393364928909953, 0.30805687203791471, 0.025276461295418641, 0.0094786729857819912, 0.080568720379146919, 0.0063191153238546603, 0.055292259083728278, 0.0063191153238546603, 0.0015797788309636651, 0.0094786729857819912, 0.011058451816745656, 0.0047393364928909956, 0.0015797788309636651, 0.0047393364928909956, 0.0015797788309636651, 0.0015797788309636651, 0.58823529411764708, 0.11764705882352941, 0.058823529411764705, 0.17647058823529413, 0.16190476190476191, 0.12380952380952381, 0.20952380952380953, 0.076190476190476197, 0.0095238095238095247, 0.076190476190476197, 0.0095238095238095247, 0.11428571428571428, 0.10476190476190476, 0.076190476190476197, 0.0095238095238095247, 0.019047619047619049, 0.0095238095238095247, 0.0095238095238095247, 0.016949152542372881, 0.016949152542372881, 0.1864406779661017, 0.016949152542372881, 0.67796610169491522, 0.050847457627118647, 0.016949152542372881, 0.016949152542372881, 0.090909090909090912, 0.18181818181818182, 0.54545454545454541, 0.090909090909090912, 0.055555555555555552, 0.1111111111111111, 0.1111111111111111, 0.33333333333333331, 0.1111111111111111, 0.1111111111111111, 0.055555555555555552, 0.055555555555555552, 0.055555555555555552, 0.29059829059829062, 0.3247863247863248, 0.034188034188034191, 0.02564102564102564, 0.085470085470085472, 0.034188034188034191, 0.059829059829059832, 0.017094017094017096, 0.042735042735042736, 0.02564102564102564, 0.017094017094017096, 0.017094017094017096, 0.017094017094017096, 0.17391304347826086, 0.30434782608695654, 0.17391304347826086, 0.21739130434782608, 0.086956521739130432, 0.043478260869565216, 0.019801980198019802, 0.039603960396039604, 0.81188118811881194, 0.029702970297029702, 0.039603960396039604, 0.0099009900990099011, 0.0099009900990099011, 0.0099009900990099011, 0.0099009900990099011, 0.41176470588235292, 0.058823529411764705, 0.11764705882352941, 0.35294117647058826, 0.25806451612903225, 0.064516129032258063, 0.032258064516129031, 0.61290322580645162, 0.25, 0.125, 0.0625, 0.125, 0.125, 0.25, 0.0625, 0.26666666666666666, 0.46666666666666667, 0.13333333333333333, 0.11467889908256881, 0.12385321100917432, 0.3256880733944954, 0.059633027522935783, 0.03669724770642202, 0.15596330275229359, 0.013761467889908258, 0.03669724770642202, 0.022935779816513763, 0.0091743119266055051, 0.013761467889908258, 0.0045871559633027525, 0.0091743119266055051, 0.0045871559633027525, 0.013761467889908258, 0.045871559633027525, 0.0045871559633027525, 0.12121212121212122, 0.15151515151515152, 0.030303030303030304, 0.090909090909090912, 0.18181818181818182, 0.030303030303030304, 0.090909090909090912, 0.030303030303030304, 0.090909090909090912, 0.030303030303030304, 0.12121212121212122, 0.13043478260869565, 0.21739130434782608, 0.13043478260869565, 0.065217391304347824, 0.021739130434782608, 0.15217391304347827, 0.13043478260869565, 0.021739130434782608, 0.021739130434782608, 0.065217391304347824, 0.36805555555555558, 0.31944444444444442, 0.020833333333333332, 0.0069444444444444441, 0.083333333333333329, 0.0625, 0.020833333333333332, 0.027777777777777776, 0.076388888888888895, 0.0069444444444444441, 0.41111111111111109, 0.08611111111111111, 0.044444444444444446, 0.011111111111111112, 0.058333333333333334, 0.019444444444444445, 0.027777777777777776, 0.022222222222222223, 0.061111111111111109, 0.013888888888888888, 0.063888888888888884, 0.16666666666666666, 0.0055555555555555558, 0.0027777777777777779, 0.0055555555555555558, 0.05434782608695652, 0.043478260869565216, 0.021739130434782608, 0.30434782608695654, 0.097826086956521743, 0.11956521739130435, 0.076086956521739135, 0.27173913043478259, 0.010869565217391304, 0.19230769230769232, 0.34615384615384615, 0.04807692307692308, 0.13461538461538461, 0.24038461538461539, 0.028846153846153848, 0.0096153846153846159, 0.26666666666666666, 0.33333333333333331, 0.20000000000000001, 0.13333333333333333, 0.25, 0.33333333333333331, 0.16666666666666666, 0.083333333333333329, 0.066666666666666666, 0.59999999999999998, 0.26666666666666666, 0.066666666666666666, 0.18181818181818182, 0.18181818181818182, 0.27272727272727271, 0.18181818181818182, 0.18716577540106952, 0.037433155080213901, 0.064171122994652413, 0.048128342245989303, 0.026737967914438502, 0.048128342245989303, 0.032085561497326207, 0.037433155080213901, 0.44385026737967914, 0.032085561497326207, 0.0053475935828877002, 0.0106951871657754, 0.0106951871657754, 0.095238095238095233, 0.071428571428571425, 0.095238095238095233, 0.023809523809523808, 0.69047619047619047, 0.32727272727272727, 0.39393939393939392, 0.012121212121212121, 0.030303030303030304, 0.018181818181818181, 0.066666666666666666, 0.012121212121212121, 0.030303030303030304, 0.030303030303030304, 0.048484848484848485, 0.0060606060606060606, 0.0060606060606060606, 0.064476885644768861, 0.11800486618004866, 0.13381995133819952, 0.076642335766423361, 0.010948905109489052, 0.40875912408759124, 0.0048661800486618006, 0.072992700729927001, 0.012165450121654502, 0.013381995133819951, 0.0048661800486618006, 0.048661800486618008, 0.0012165450121654502, 0.0012165450121654502, 0.0024330900243309003, 0.0036496350364963502, 0.012165450121654502, 0.0048661800486618006, 0.0036496350364963502, 0.20364238410596028, 0.25331125827814571, 0.024834437086092714, 0.068708609271523183, 0.048013245033112585, 0.010761589403973509, 0.15894039735099338, 0.049668874172185427, 0.021523178807947019, 0.037251655629139076, 0.040562913907284767, 0.040562913907284767, 0.005794701986754967, 0.00082781456953642384, 0.015728476821192054, 0.015728476821192054, 0.00082781456953642384, 0.0016556291390728477, 0.00082781456953642384, 0.2857142857142857, 0.35714285714285715, 0.071428571428571425, 0.071428571428571425, 0.14285714285714285, 0.88, 0.040000000000000001, 0.040000000000000001, 0.22807017543859648, 0.38596491228070173, 0.11403508771929824, 0.035087719298245612, 0.052631578947368418, 0.078947368421052627, 0.017543859649122806, 0.008771929824561403, 0.035087719298245612, 0.008771929824561403, 0.008771929824561403, 0.017543859649122806, 0.24657534246575341, 0.19178082191780821, 0.17808219178082191, 0.027397260273972601, 0.20547945205479451, 0.013698630136986301, 0.027397260273972601, 0.027397260273972601, 0.027397260273972601, 0.041095890410958902, 0.013698630136986301, 0.29384965831435078, 0.42369020501138954, 0.0022779043280182231, 0.029612756264236904, 0.0022779043280182231, 0.0022779043280182231, 0.015945330296127564, 0.0022779043280182231, 0.029612756264236904, 0.0068337129840546698, 0.047835990888382689, 0.0045558086560364463, 0.12984054669703873, 0.0022779043280182231, 0.0022779043280182231, 0.0022779043280182231, 0.1276595744680851, 0.10638297872340426, 0.085106382978723402, 0.1702127659574468, 0.23404255319148937, 0.063829787234042548, 0.021276595744680851, 0.021276595744680851, 0.042553191489361701, 0.063829787234042548, 0.021276595744680851, 0.042553191489361701, 0.021645021645021644, 0.0367965367965368, 0.10822510822510822, 0.023809523809523808, 0.0064935064935064939, 0.31818181818181818, 0.03896103896103896, 0.34848484848484851, 0.084415584415584416, 0.0021645021645021645, 0.0021645021645021645, 0.0021645021645021645, 0.0021645021645021645, 0.1111111111111111, 0.66666666666666663, 0.1111111111111111, 0.33333333333333331, 0.23809523809523808, 0.095238095238095233, 0.19047619047619047, 0.095238095238095233, 0.047619047619047616, 0.33333333333333331, 0.1111111111111111, 0.33333333333333331, 0.1111111111111111, 0.29411764705882354, 0.17647058823529413, 0.058823529411764705, 0.058823529411764705, 0.17647058823529413, 0.058823529411764705, 0.11764705882352941, 0.30973451327433627, 0.15929203539823009, 0.0088495575221238937, 0.017699115044247787, 0.017699115044247787, 0.38938053097345132, 0.070796460176991149, 0.017699115044247787, 0.20338983050847459, 0.11864406779661017, 0.016949152542372881, 0.1864406779661017, 0.050847457627118647, 0.033898305084745763, 0.016949152542372881, 0.16949152542372881, 0.10169491525423729, 0.033898305084745763, 0.033898305084745763, 0.14285714285714285, 0.2857142857142857, 0.2857142857142857, 0.17857142857142858, 0.071428571428571425, 0.35483870967741937, 0.34677419354838712, 0.064516129032258063, 0.056451612903225805, 0.016129032258064516, 0.016129032258064516, 0.0080645161290322578, 0.024193548387096774, 0.0080645161290322578, 0.064516129032258063, 0.016129032258064516, 0.0080645161290322578, 0.016129032258064516, 0.077669902912621352, 0.019417475728155338, 0.029126213592233011, 0.087378640776699032, 0.029126213592233011, 0.067961165048543687, 0.029126213592233011, 0.46601941747572817, 0.0097087378640776691, 0.14563106796116504, 0.0097087378640776691, 0.0097087378640776691, 0.077253218884120178, 0.0815450643776824, 0.19742489270386265, 0.072961373390557943, 0.12446351931330472, 0.20600858369098712, 0.0042918454935622317, 0.1072961373390558, 0.055793991416309016, 0.021459227467811159, 0.012875536480686695, 0.0042918454935622317, 0.0085836909871244635, 0.0085836909871244635, 0.012875536480686695, 0.0042918454935622317, 0.0042918454935622317, 0.14285714285714285, 0.071428571428571425, 0.071428571428571425, 0.14285714285714285, 0.071428571428571425, 0.35714285714285715, 0.085714285714285715, 0.085714285714285715, 0.13333333333333333, 0.10476190476190476, 0.019047619047619049, 0.24761904761904763, 0.12380952380952381, 0.038095238095238099, 0.028571428571428571, 0.019047619047619049, 0.0095238095238095247, 0.019047619047619049, 0.085714285714285715, 0.041095890410958902, 0.11643835616438356, 0.13698630136986301, 0.034246575342465752, 0.0068493150684931503, 0.047945205479452052, 0.034246575342465752, 0.4726027397260274, 0.013698630136986301, 0.0068493150684931503, 0.027397260273972601, 0.0068493150684931503, 0.020547945205479451, 0.020547945205479451, 0.18200836820083682, 0.18828451882845187, 0.029288702928870293, 0.10460251046025104, 0.039748953974895397, 0.037656903765690378, 0.064853556485355651, 0.046025104602510462, 0.048117154811715482, 0.085774058577405859, 0.081589958158995821, 0.058577405857740586, 0.0020920502092050207, 0.008368200836820083, 0.0041841004184100415, 0.0020920502092050207, 0.010460251046025104, 0.0020920502092050207, 0.20238095238095238, 0.21428571428571427, 0.035714285714285712, 0.083333333333333329, 0.071428571428571425, 0.047619047619047616, 0.017857142857142856, 0.041666666666666664, 0.023809523809523808, 0.059523809523809521, 0.083333333333333329, 0.077380952380952384, 0.017857142857142856, 0.011904761904761904, 0.0059523809523809521, 0.42638241172551633, 0.27181878747501664, 0.017988007994670221, 0.031978680879413725, 0.043970686209193872, 0.014656895403064623, 0.09127248500999334, 0.010659560293137908, 0.02798134576948701, 0.012658227848101266, 0.021319120586275817, 0.0099933377748167886, 0.0046635576282478344, 0.0033311125916055963, 0.0039973351099267156, 0.0019986675549633578, 0.0019986675549633578, 0.0019986675549633578, 0.00066622251832111927, 0.00066622251832111927, 0.16756756756756758, 0.091891891891891897, 0.03783783783783784, 0.16756756756756758, 0.11891891891891893, 0.027027027027027029, 0.18378378378378379, 0.032432432432432434, 0.10270270270270271, 0.0054054054054054057, 0.010810810810810811, 0.0054054054054054057, 0.010810810810810811, 0.0054054054054054057, 0.016216216216216217, 0.0054054054054054057, 0.0054054054054054057, 0.35294117647058826, 0.52941176470588236, 0.058823529411764705, 0.058823529411764705, 0.14285714285714285, 0.66666666666666663, 0.047619047619047616, 0.095238095238095233, 0.13333333333333333, 0.82222222222222219, 0.2038095238095238, 0.22984126984126985, 0.028571428571428571, 0.053968253968253971, 0.069841269841269843, 0.017777777777777778, 0.035555555555555556, 0.012698412698412698, 0.017777777777777778, 0.056507936507936507, 0.11873015873015873, 0.1307936507936508, 0.0025396825396825397, 0.0044444444444444444, 0.0031746031746031746, 0.0038095238095238095, 0.00063492063492063492, 0.007619047619047619, 0.00063492063492063492, 0.29775280898876405, 0.37453183520599254, 0.0056179775280898875, 0.0093632958801498131, 0.074906367041198504, 0.0037453183520599251, 0.031835205992509365, 0.02247191011235955, 0.011235955056179775, 0.013108614232209739, 0.0449438202247191, 0.10299625468164794, 0.0037453183520599251, 0.0018726591760299626, 0.25, 0.34999999999999998, 0.025000000000000001, 0.29999999999999999, 0.050000000000000003, 0.33333333333333331, 0.38211382113821141, 0.016260162601626018, 0.024390243902439025, 0.12195121951219512, 0.008130081300813009, 0.008130081300813009, 0.008130081300813009, 0.073170731707317069, 0.008130081300813009, 0.008130081300813009, 0.95454545454545459, 0.93333333333333335, 0.28000000000000003, 0.16, 0.080000000000000002, 0.16, 0.080000000000000002, 0.20000000000000001, 0.023809523809523808, 0.61904761904761907, 0.16666666666666666, 0.14285714285714285, 0.023809523809523808, 0.23728813559322035, 0.23728813559322035, 0.050847457627118647, 0.033898305084745763, 0.1864406779661017, 0.084745762711864403, 0.067796610169491525, 0.016949152542372881, 0.050847457627118647, 0.033898305084745763, 0.52631578947368418, 0.36842105263157893, 0.052631578947368418, 0.015873015873015872, 0.63492063492063489, 0.31746031746031744, 0.80952380952380953, 0.14285714285714285, 0.027027027027027029, 0.027027027027027029, 0.35135135135135137, 0.054054054054054057, 0.13513513513513514, 0.13513513513513514, 0.24324324324324326, 0.090909090909090912, 0.18181818181818182, 0.63636363636363635, 0.20408163265306123, 0.75510204081632648, 0.020408163265306121, 0.083333333333333329, 0.91666666666666663, 0.1111111111111111, 0.22222222222222221, 0.055555555555555552, 0.27777777777777779, 0.27777777777777779, 0.17307692307692307, 0.057692307692307696, 0.11538461538461539, 0.17307692307692307, 0.21153846153846154, 0.019230769230769232, 0.23076923076923078, 0.24711907810499359, 0.33930857874519849, 0.033290653008962869, 0.0089628681177976958, 0.03713188220230474, 0.0064020486555697821, 0.0051216389244558257, 0.012804097311139564, 0.0064020486555697821, 0.0025608194622279128, 0.25608194622279129, 0.0012804097311139564, 0.0038412291933418692, 0.026888604353393086, 0.0012804097311139564, 0.011523687580025609, 0.42105263157894735, 0.47368421052631576, 0.26762589928057556, 0.28201438848920862, 0.0460431654676259, 0.014388489208633094, 0.22446043165467625, 0.0014388489208633094, 0.069064748201438847, 0.0014388489208633094, 0.0057553956834532375, 0.027338129496402876, 0.0028776978417266188, 0.0014388489208633094, 0.053237410071942444, 0.0014388489208633094, 0.0014388489208633094, 0.0014388489208633094, 0.52631578947368418, 0.052631578947368418, 0.10526315789473684, 0.052631578947368418, 0.052631578947368418, 0.052631578947368418, 0.052631578947368418, 0.1111111111111111, 0.81481481481481477, 0.037037037037037035, 0.028571428571428571, 0.31428571428571428, 0.11428571428571428, 0.14285714285714285, 0.085714285714285715, 0.11428571428571428, 0.028571428571428571, 0.057142857142857141, 0.028571428571428571, 0.028571428571428571, 0.0625, 0.5625, 0.1875, 0.125, 0.066666666666666666, 0.56666666666666665, 0.33333333333333331, 0.19354838709677419, 0.16129032258064516, 0.19354838709677419, 0.032258064516129031, 0.096774193548387094, 0.064516129032258063, 0.096774193548387094, 0.064516129032258063, 0.032258064516129031, 0.032258064516129031, 0.064516129032258063, 0.040697674418604654, 0.011627906976744186, 0.21511627906976744, 0.13372093023255813, 0.13372093023255813, 0.13953488372093023, 0.13953488372093023, 0.087209302325581398, 0.05232558139534884, 0.017441860465116279, 0.017441860465116279, 0.0058139534883720929, 0.0058139534883720929, 0.18181818181818182, 0.090909090909090912, 0.18181818181818182, 0.18181818181818182, 0.27272727272727271, 0.9285714285714286, 0.125, 0.16666666666666666, 0.041666666666666664, 0.20833333333333334, 0.29166666666666669, 0.125, 0.15384615384615385, 0.076923076923076927, 0.38461538461538464, 0.30769230769230771, 0.93333333333333335, 0.083333333333333329, 0.013888888888888888, 0.4861111111111111, 0.083333333333333329, 0.1111111111111111, 0.027777777777777776, 0.027777777777777776, 0.055555555555555552, 0.041666666666666664, 0.041666666666666664, 0.027777777777777776, 0.02564102564102564, 0.10256410256410256, 0.02564102564102564, 0.79487179487179482, 0.074846044528659408, 0.040738986262434863, 0.26480341070582664, 0.086688773093320695, 0.038844149692089054, 0.10658455708195168, 0.040738986262434863, 0.075793462813832313, 0.18853623874940786, 0.02700142112742776, 0.010895310279488394, 0.0061582188536238747, 0.0085267645665561345, 0.005210800568450971, 0.00094741828517290385, 0.0037896731406916154, 0.0094741828517290391, 0.0061582188536238747, 0.0037896731406916154, 0.17647058823529413, 0.11764705882352941, 0.058823529411764705, 0.11764705882352941, 0.17647058823529413, 0.11764705882352941, 0.11764705882352941, 0.9642857142857143, 0.050000000000000003, 0.29999999999999999, 0.17999999999999999, 0.17999999999999999, 0.059999999999999998, 0.01, 0.20000000000000001, 0.16129032258064516, 0.25806451612903225, 0.032258064516129031, 0.096774193548387094, 0.16129032258064516, 0.032258064516129031, 0.064516129032258063, 0.12903225806451613, 0.47368421052631576, 0.42105263157894735, 0.052631578947368418, 0.19565217391304349, 0.19565217391304349, 0.15217391304347827, 0.021739130434782608, 0.21739130434782608, 0.19565217391304349, 0.35714285714285715, 0.35714285714285715, 0.047619047619047616, 0.16666666666666666, 0.023809523809523808, 0.046762589928057555, 0.035971223021582732, 0.035971223021582732, 0.050359712230215826, 0.67985611510791366, 0.0035971223021582736, 0.061151079136690649, 0.071942446043165464, 0.0035971223021582736, 0.0035971223021582736, 0.0035971223021582736, 0.20000000000000001, 0.050000000000000003, 0.050000000000000003, 0.40000000000000002, 0.29999999999999999, 0.92307692307692313, 0.52631578947368418, 0.10526315789473684, 0.31578947368421051, 0.95238095238095233, 0.031746031746031744, 0.034482758620689655, 0.55172413793103448, 0.20689655172413793, 0.034482758620689655, 0.10344827586206896, 0.068965517241379309, 0.59999999999999998, 0.33333333333333331, 0.001215066828675577, 0.59295261239368169, 0.0036452004860267314, 0.057108140947752128, 0.1324422843256379, 0.001215066828675577, 0.02551640340218712, 0.16889428918590524, 0.0036452004860267314, 0.0048602673147023082, 0.001215066828675577, 0.0036452004860267314, 0.001215066828675577, 0.35483870967741937, 0.19354838709677419, 0.032258064516129031, 0.032258064516129031, 0.32258064516129031, 0.12048192771084337, 0.37349397590361444, 0.060240963855421686, 0.26506024096385544, 0.012048192771084338, 0.012048192771084338, 0.03614457831325301, 0.084337349397590355, 0.012048192771084338, 0.055555555555555552, 0.83333333333333337, 0.055555555555555552, 0.045454545454545456, 0.27272727272727271, 0.27272727272727271, 0.22727272727272727, 0.13636363636363635, 0.23529411764705882, 0.23529411764705882, 0.17647058823529413, 0.058823529411764705, 0.23529411764705882, 0.058823529411764705, 0.083333333333333329, 0.5, 0.25, 0.083333333333333329, 0.032258064516129031, 0.12903225806451613, 0.064516129032258063, 0.064516129032258063, 0.032258064516129031, 0.064516129032258063, 0.58064516129032262, 0.1111111111111111, 0.14814814814814814, 0.14814814814814814, 0.40740740740740738, 0.07407407407407407, 0.037037037037037035, 0.031914893617021274, 0.031914893617021274, 0.80851063829787229, 0.085106382978723402, 0.021276595744680851, 0.21739130434782608, 0.13043478260869565, 0.13043478260869565, 0.34782608695652173, 0.043478260869565216, 0.84999999999999998, 0.050000000000000003, 0.62192393736017892, 0.069351230425055935, 0.044742729306487698, 0.042505592841163314, 0.080536912751677847, 0.011185682326621925, 0.049217002237136466, 0.033557046979865772, 0.0022371364653243847, 0.008948545861297539, 0.0022371364653243847, 0.013422818791946308, 0.0044742729306487695, 0.011185682326621925, 0.0022371364653243847, 0.0022371364653243847, 0.055555555555555552, 0.83333333333333337, 0.055555555555555552, 0.20512820512820512, 0.05128205128205128, 0.05128205128205128, 0.02564102564102564, 0.076923076923076927, 0.05128205128205128, 0.076923076923076927, 0.05128205128205128, 0.38461538461538464, 0.02564102564102564, 0.44444444444444442, 0.29629629629629628, 0.07407407407407407, 0.1111111111111111, 0.090909090909090912, 0.27272727272727271, 0.54545454545454541, 0.65000000000000002, 0.29999999999999999, 0.97058823529411764, 0.075949367088607597, 0.10759493670886076, 0.26582278481012656, 0.10126582278481013, 0.0063291139240506328, 0.069620253164556958, 0.27215189873417722, 0.0063291139240506328, 0.025316455696202531, 0.018987341772151899, 0.037974683544303799, 0.055555555555555552, 0.22222222222222221, 0.33333333333333331, 0.33333333333333331, 0.85185185185185186, 0.1111111111111111, 0.25, 0.16666666666666666, 0.41666666666666669, 0.21161290322580645, 0.53548387096774197, 0.0051612903225806452, 0.09290322580645162, 0.01806451612903226, 0.021935483870967741, 0.0012903225806451613, 0.040000000000000001, 0.0025806451612903226, 0.01935483870967742, 0.0025806451612903226, 0.011612903225806452, 0.0012903225806451613, 0.01032258064516129, 0.012903225806451613, 0.0090322580645161299, 0.0025806451612903226, 0.0012903225806451613, 0.21052631578947367, 0.15789473684210525, 0.10526315789473684, 0.10526315789473684, 0.052631578947368418, 0.10526315789473684, 0.21052631578947367, 0.10526315789473684, 0.18618266978922718, 0.17447306791569087, 0.13466042154566746, 0.077283372365339581, 0.10070257611241218, 0.039812646370023422, 0.087822014051522249, 0.042154566744730677, 0.04449648711943794, 0.051522248243559721, 0.026932084309133488, 0.01288056206088993, 0.0058548009367681503, 0.00234192037470726, 0.0058548009367681503, 0.0035128805620608899, 0.00117096018735363, 0.00117096018735363, 0.00234192037470726, 0.001201923076923077, 0.69230769230769229, 0.002403846153846154, 0.12980769230769232, 0.063701923076923073, 0.001201923076923077, 0.014423076923076924, 0.084134615384615391, 0.002403846153846154, 0.001201923076923077, 0.001201923076923077, 0.001201923076923077, 0.001201923076923077, 0.001201923076923077, 0.61538461538461542, 0.23076923076923078, 0.076923076923076927, 0.1111111111111111, 0.16666666666666666, 0.44444444444444442, 0.16666666666666666, 0.94047619047619047, 0.035714285714285712, 0.080000000000000002, 0.040000000000000001, 0.83999999999999997, 0.066666666666666666, 0.80000000000000004, 0.066666666666666666, 0.050000000000000003, 0.90000000000000002, 0.16711590296495957, 0.083557951482479784, 0.21024258760107817, 0.080862533692722366, 0.18328840970350405, 0.11859838274932614, 0.078167115902964962, 0.029649595687331536, 0.016172506738544475, 0.0053908355795148251, 0.0026954177897574125, 0.01078167115902965, 0.0053908355795148251, 0.0053908355795148251, 0.0026954177897574125, 0.45161290322580644, 0.12903225806451613, 0.12903225806451613, 0.16129032258064516, 0.032258064516129031, 0.096774193548387094, 0.94999999999999996, 0.27272727272727271, 0.63636363636363635, 0.46153846153846156, 0.076923076923076927, 0.38461538461538464, 0.86808510638297876, 0.0042553191489361703, 0.0085106382978723406, 0.10212765957446808, 0.0042553191489361703, 0.14914054600606674, 0.057633973710819006, 0.15369059656218403, 0.10920121334681497, 0.21233569261880689, 0.0060667340748230538, 0.23508594539939331, 0.0085945399393326585, 0.016683518705763397, 0.0020222446916076846, 0.0075834175935288167, 0.0065722952477249748, 0.011627906976744186, 0.015672396359959553, 0.0020222446916076846, 0.00050556117290192115, 0.0020222446916076846, 0.0020222446916076846, 0.00050556117290192115, 0.87309644670050757, 0.005076142131979695, 0.076142131979695438, 0.015228426395939087, 0.005076142131979695, 0.005076142131979695, 0.01015228426395939, 0.005076142131979695, 0.16216216216216217, 0.10810810810810811, 0.27027027027027029, 0.13513513513513514, 0.21621621621621623, 0.081081081081081086, 0.083333333333333329, 0.083333333333333329, 0.66666666666666663, 0.083333333333333329, 0.088235294117647065, 0.13235294117647059, 0.19117647058823528, 0.11764705882352941, 0.014705882352941176, 0.014705882352941176, 0.044117647058823532, 0.11764705882352941, 0.029411764705882353, 0.25, 0.071428571428571425, 0.33333333333333331, 0.14285714285714285, 0.047619047619047616, 0.23809523809523808, 0.14285714285714285, 0.090909090909090912, 0.54545454545454541, 0.18181818181818182, 0.090909090909090912, 0.23809523809523808, 0.07792207792207792, 0.004329004329004329, 0.021645021645021644, 0.11688311688311688, 0.067099567099567103, 0.39826839826839827, 0.008658008658008658, 0.008658008658008658, 0.0021645021645021645, 0.0021645021645021645, 0.047619047619047616, 0.004329004329004329, 0.0021645021645021645, 0.15789473684210525, 0.21052631578947367, 0.15789473684210525, 0.10526315789473684, 0.21052631578947367, 0.10526315789473684, 0.052631578947368418, 0.78947368421052633, 0.026315789473684209, 0.026315789473684209, 0.078947368421052627, 0.052631578947368418, 0.012422360248447204, 0.0062111801242236021, 0.2360248447204969, 0.037267080745341616, 0.10559006211180125, 0.012422360248447204, 0.031055900621118012, 0.453416149068323, 0.049689440993788817, 0.031055900621118012, 0.0062111801242236021, 0.012422360248447204, 0.050847457627118647, 0.028248587570621469, 0.24293785310734464, 0.028248587570621469, 0.0056497175141242938, 0.028248587570621469, 0.028248587570621469, 0.04519774011299435, 0.43502824858757061, 0.0056497175141242938, 0.067796610169491525, 0.011299435028248588, 0.0056497175141242938, 0.15384615384615385, 0.38461538461538464, 0.30769230769230771, 0.076923076923076927, 0.25925925925925924, 0.18518518518518517, 0.14814814814814814, 0.22222222222222221, 0.037037037037037035, 0.1111111111111111, 0.29452054794520549, 0.10273972602739725, 0.091324200913242004, 0.066210045662100453, 0.21689497716894976, 0.020547945205479451, 0.11187214611872145, 0.017123287671232876, 0.0068493150684931503, 0.0057077625570776253, 0.018264840182648401, 0.022831050228310501, 0.0034246575342465752, 0.0057077625570776253, 0.0068493150684931503, 0.0045662100456621002, 0.0034246575342465752, 0.0011415525114155251, 0.11235955056179775, 0.5056179775280899, 0.15730337078651685, 0.02247191011235955, 0.02247191011235955, 0.10112359550561797, 0.0449438202247191, 0.033707865168539325, 0.047619047619047616, 0.8571428571428571, 0.047619047619047616, 0.11703958691910499, 0.0972461273666093, 0.51376936316695354, 0.031841652323580036, 0.058519793459552494, 0.006024096385542169, 0.046471600688468159, 0.011187607573149742, 0.045611015490533563, 0.019793459552495698, 0.017211703958691909, 0.011187607573149742, 0.0086058519793459545, 0.0043029259896729772, 0.006024096385542169, 0.0017211703958691911, 0.00086058519793459555, 0.0025817555938037868, 0.00086058519793459555, 0.076923076923076927, 0.076923076923076927, 0.30769230769230771, 0.076923076923076927, 0.23076923076923078, 0.15384615384615385, 0.039603960396039604, 0.034653465346534656, 0.039603960396039604, 0.014851485148514851, 0.30198019801980197, 0.0049504950495049506, 0.54455445544554459, 0.0099009900990099011, 0.53333333333333333, 0.26666666666666666, 0.13333333333333333, 0.12244897959183673, 0.020408163265306121, 0.081632653061224483, 0.061224489795918366, 0.061224489795918366, 0.63265306122448983, 0.10344827586206896, 0.13793103448275862, 0.2413793103448276, 0.068965517241379309, 0.20689655172413793, 0.10344827586206896, 0.034482758620689655, 0.034482758620689655, 0.034482758620689655, 0.034482758620689655, 0.097560975609756101, 0.085365853658536592, 0.024390243902439025, 0.036585365853658534, 0.012195121951219513, 0.012195121951219513, 0.024390243902439025, 0.63414634146341464, 0.012195121951219513, 0.04878048780487805, 0.46478873239436619, 0.014084507042253521, 0.028169014084507043, 0.11267605633802817, 0.15492957746478872, 0.014084507042253521, 0.098591549295774641, 0.084507042253521125, 0.028169014084507043, 0.021739130434782608, 0.065217391304347824, 0.45652173913043476, 0.021739130434782608, 0.15217391304347827, 0.021739130434782608, 0.17391304347826086, 0.086956521739130432, 0.28846153846153844, 0.29807692307692307, 0.076923076923076927, 0.067307692307692304, 0.04807692307692308, 0.0096153846153846159, 0.14423076923076922, 0.028846153846153848, 0.019230769230769232, 0.10344827586206896, 0.31034482758620691, 0.034482758620689655, 0.48275862068965519, 0.50323624595469252, 0.048543689320388349, 0.0048543689320388345, 0.016181229773462782, 0.22815533980582525, 0.088996763754045305, 0.0016181229773462784, 0.042071197411003236, 0.0016181229773462784, 0.0032362459546925568, 0.022653721682847898, 0.0032362459546925568, 0.032362459546925564, 0.0016181229773462784, 0.0016181229773462784, 0.14285714285714285, 0.7857142857142857, 0.076923076923076927, 0.23076923076923078, 0.30769230769230771, 0.30769230769230771, 0.063421828908554578, 0.048672566371681415, 0.55162241887905605, 0.088495575221238937, 0.019174041297935103, 0.051622418879056046, 0.048672566371681415, 0.038348082595870206, 0.019174041297935103, 0.032448377581120944, 0.0014749262536873156, 0.0014749262536873156, 0.017699115044247787, 0.0014749262536873156, 0.0029498525073746312, 0.0014749262536873156, 0.011799410029498525, 0.20963651732882502, 0.16821639898562976, 0.057480980557903634, 0.059171597633136092, 0.092983939137785285, 0.053254437869822487, 0.16314454775993237, 0.040574809805579037, 0.03127641589180051, 0.023668639053254437, 0.027049873203719356, 0.032121724429416736, 0.0092983939137785288, 0.0084530853761623, 0.00422654268808115, 0.00084530853761622987, 0.011834319526627219, 0.0050718512256973797, 0.0016906170752324597, 0.20000000000000001, 0.10000000000000001, 0.69999999999999996, 0.14634146341463414, 0.097560975609756101, 0.024390243902439025, 0.073170731707317069, 0.63414634146341464, 0.024390243902439025, 0.055555555555555552, 0.88888888888888884, 0.068965517241379309, 0.44827586206896552, 0.034482758620689655, 0.034482758620689655, 0.10344827586206896, 0.10344827586206896, 0.068965517241379309, 0.068965517241379309, 0.016260162601626018, 0.016260162601626018, 0.73983739837398377, 0.016260162601626018, 0.016260162601626018, 0.056910569105691054, 0.016260162601626018, 0.008130081300813009, 0.016260162601626018, 0.073170731707317069, 0.016260162601626018, 0.14722911497105046, 0.12985938792390406, 0.33250620347394538, 0.049627791563275438, 0.043837882547559964, 0.086848635235732011, 0.043837882547559964, 0.024813895781637719, 0.033085194375516956, 0.029776674937965261, 0.029776674937965261, 0.0066170388751033912, 0.012406947890818859, 0.016542597187758478, 0.0024813895781637717, 0.0016542597187758478, 0.0041356492969396195, 0.0008271298593879239, 0.0041356492969396195, 0.125, 0.1875, 0.0625, 0.0625, 0.125, 0.0625, 0.25, 0.0625, 0.18421052631578946, 0.026315789473684209, 0.078947368421052627, 0.026315789473684209, 0.078947368421052627, 0.052631578947368418, 0.18421052631578946, 0.078947368421052627, 0.026315789473684209, 0.13157894736842105, 0.052631578947368418, 0.052631578947368418, 0.125, 0.1875, 0.0625, 0.0625, 0.125, 0.0625, 0.0625, 0.3125, 0.38636363636363635, 0.34090909090909088, 0.22727272727272727, 0.27272727272727271, 0.54545454545454541, 0.045454545454545456, 0.090909090909090912, 0.92307692307692313, 0.92307692307692313, 0.0053475935828877002, 0.0026737967914438501, 0.77005347593582885, 0.024064171122994651, 0.034759358288770054, 0.0080213903743315516, 0.064171122994652413, 0.029411764705882353, 0.0106951871657754, 0.0106951871657754, 0.034759358288770054, 0.049089469517022963, 0.012668250197941409, 0.64687252573238319, 0.050673000791765635, 0.026128266033254157, 0.034045922406967535, 0.042755344418052253, 0.053840063341250986, 0.0071258907363420431, 0.012668250197941409, 0.00079176563737133805, 0.00079176563737133805, 0.034837688044338878, 0.00079176563737133805, 0.0087094220110847196, 0.00791765637371338, 0.00079176563737133805, 0.0015835312747426761, 0.0055423594615993665, 0.65765765765765771, 0.054054054054054057, 0.036036036036036036, 0.090090090090090086, 0.0090090090090090089, 0.0090090090090090089, 0.0090090090090090089, 0.11711711711711711, 0.37704918032786883, 0.016393442622950821, 0.57377049180327866, 0.076923076923076927, 0.84615384615384615, 0.076923076923076927, 0.64160401002506262, 0.015037593984962405, 0.015037593984962405, 0.015037593984962405, 0.020050125313283207, 0.11779448621553884, 0.082706766917293228, 0.035087719298245612, 0.047619047619047616, 0.0025062656641604009, 0.0025062656641604009, 0.0025062656641604009, 0.90909090909090906, 0.17050691244239632, 0.096774193548387094, 0.059907834101382486, 0.19815668202764977, 0.013824884792626729, 0.064516129032258063, 0.069124423963133647, 0.046082949308755762, 0.036866359447004608, 0.096774193548387094, 0.08294930875576037, 0.032258064516129031, 0.0092165898617511521, 0.004608294930875576, 0.0092165898617511521, 0.30612244897959184, 0.12244897959183673, 0.22448979591836735, 0.18367346938775511, 0.020408163265306121, 0.020408163265306121, 0.081632653061224483, 0.040816326530612242, 0.020408163265306121, 0.16666666666666666, 0.16666666666666666, 0.083333333333333329, 0.41666666666666669, 0.083333333333333329, 0.15833333333333333, 0.025000000000000001, 0.47499999999999998, 0.09166666666666666, 0.050000000000000003, 0.016666666666666666, 0.0083333333333333332, 0.033333333333333333, 0.0083333333333333332, 0.0083333333333333332, 0.0083333333333333332, 0.11666666666666667, 0.12, 0.040000000000000001, 0.47999999999999998, 0.080000000000000002, 0.02, 0.02, 0.040000000000000001, 0.02, 0.02, 0.14000000000000001, 0.77480916030534353, 0.15267175572519084, 0.011450381679389313, 0.022900763358778626, 0.0038167938931297708, 0.022900763358778626, 0.0038167938931297708, 0.2571032571032571, 0.32571032571032571, 0.10810810810810811, 0.061677061677061676, 0.028759528759528759, 0.027720027720027719, 0.018711018711018712, 0.019404019404019403, 0.013513513513513514, 0.020097020097020097, 0.033610533610533608, 0.047470547470547471, 0.015592515592515593, 0.0020790020790020791, 0.0069300069300069298, 0.0041580041580041582, 0.0020790020790020791, 0.0034650034650034649, 0.0038115038115038116, 0.30114135206321335, 0.10711150131694469, 0.072870939420544331, 0.047410008779631259, 0.023705004389815629, 0.042142230026338892, 0.047410008779631259, 0.014925373134328358, 0.084284460052677784, 0.014925373134328358, 0.037752414398595259, 0.16330114135206322, 0.022827041264266899, 0.0017559262510974539, 0.0096575943810359964, 0.0026338893766461808, 0.00087796312554872696, 0.0017559262510974539, 0.0017559262510974539, 0.10743801652892562, 0.033057851239669422, 0.0743801652892562, 0.090909090909090912, 0.041322314049586778, 0.48760330578512395, 0.15702479338842976, 0.14814814814814814, 0.037037037037037035, 0.018518518518518517, 0.66666666666666663, 0.018518518518518517, 0.018518518518518517, 0.055555555555555552, 0.22010869565217392, 0.13043478260869565, 0.057065217391304345, 0.38315217391304346, 0.04619565217391304, 0.032608695652173912, 0.065217391304347824, 0.01358695652173913, 0.002717391304347826, 0.005434782608695652, 0.019021739130434784, 0.01358695652173913, 0.005434782608695652, 0.002717391304347826, 0.92592592592592593, 0.037037037037037035, 0.33333333333333331, 0.21666666666666667, 0.033333333333333333, 0.050000000000000003, 0.016666666666666666, 0.11666666666666667, 0.050000000000000003, 0.14999999999999999, 0.52542372881355937, 0.35853976531942633, 0.016949152542372881, 0.016949152542372881, 0.033898305084745763, 0.0078226857887874843, 0.010430247718383311, 0.0013037809647979139, 0.009126466753585397, 0.00651890482398957, 0.00651890482398957, 0.0013037809647979139, 0.0013037809647979139, 0.0026075619295958278, 0.0013037809647979139, 0.050000000000000003, 0.20000000000000001, 0.14999999999999999, 0.050000000000000003, 0.050000000000000003, 0.45000000000000001, 0.050000000000000003, 0.095238095238095233, 0.19047619047619047, 0.095238095238095233, 0.047619047619047616, 0.14285714285714285, 0.42857142857142855, 0.13855421686746988, 0.006024096385542169, 0.006024096385542169, 0.054216867469879519, 0.006024096385542169, 0.084337349397590355, 0.018072289156626505, 0.66265060240963858, 0.012048192771084338, 0.018181818181818181, 0.0090909090909090905, 0.036363636363636362, 0.036363636363636362, 0.027272727272727271, 0.82727272727272727, 0.0090909090909090905, 0.027272727272727271, 0.59999999999999998, 0.20000000000000001, 0.066666666666666666, 0.066666666666666666, 0.20000000000000001, 0.46666666666666667, 0.066666666666666666, 0.13333333333333333, 0.1076923076923077, 0.061538461538461542, 0.092307692307692313, 0.015384615384615385, 0.061538461538461542, 0.63076923076923075, 0.0070422535211267607, 0.96478873239436624, 0.014084507042253521, 0.0070422535211267607, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.72727272727272729, 0.066666666666666666, 0.066666666666666666, 0.33333333333333331, 0.066666666666666666, 0.33333333333333331, 0.066666666666666666, 0.043689320388349516, 0.0048543689320388345, 0.24271844660194175, 0.033980582524271843, 0.18932038834951456, 0.0048543689320388345, 0.21844660194174756, 0.11165048543689321, 0.019417475728155338, 0.0048543689320388345, 0.11650485436893204, 0.0048543689320388345, 0.28000000000000003, 0.32000000000000001, 0.040000000000000001, 0.32000000000000001, 0.93333333333333335, 0.17391304347826086, 0.17391304347826086, 0.043478260869565216, 0.043478260869565216, 0.13043478260869565, 0.34782608695652173, 0.043478260869565216, 0.78421052631578947, 0.10000000000000001, 0.031578947368421054, 0.021052631578947368, 0.005263157894736842, 0.031578947368421054, 0.015789473684210527, 0.94736842105263153, 0.03007518796992481, 0.0075187969924812026, 0.16666666666666666, 0.25, 0.16666666666666666, 0.25, 0.94117647058823528, 0.019607843137254902, 0.0053475935828877002, 0.40106951871657753, 0.064171122994652413, 0.074866310160427801, 0.25133689839572193, 0.0106951871657754, 0.096256684491978606, 0.037433155080213901, 0.0053475935828877002, 0.026737967914438502, 0.0053475935828877002, 0.0106951871657754, 0.0106951871657754, 0.41666666666666669, 0.30555555555555558, 0.027777777777777776, 0.013888888888888888, 0.041666666666666664, 0.013888888888888888, 0.083333333333333329, 0.027777777777777776, 0.055555555555555552, 0.11764705882352941, 0.11764705882352941, 0.23529411764705882, 0.11764705882352941, 0.11764705882352941, 0.11764705882352941, 0.058823529411764705, 0.054901960784313725, 0.0039215686274509803, 0.7803921568627451, 0.0078431372549019607, 0.0039215686274509803, 0.023529411764705882, 0.0078431372549019607, 0.011764705882352941, 0.023529411764705882, 0.019607843137254902, 0.062745098039215685, 0.066666666666666666, 0.40000000000000002, 0.13333333333333333, 0.066666666666666666, 0.26666666666666666, 0.30434782608695654, 0.58695652173913049, 0.021739130434782608, 0.043478260869565216, 0.021739130434782608, 0.35658914728682173, 0.16279069767441862, 0.062015503875968991, 0.0077519379844961239, 0.015503875968992248, 0.023255813953488372, 0.03875968992248062, 0.31782945736434109, 0.0077519379844961239, 0.24489795918367346, 0.020408163265306121, 0.040816326530612242, 0.65306122448979587, 0.011627906976744186, 0.11627906976744186, 0.011627906976744186, 0.83720930232558144, 0.125, 0.75, 0.0625, 0.07407407407407407, 0.029629629629629631, 0.15555555555555556, 0.066666666666666666, 0.0074074074074074077, 0.029629629629629631, 0.014814814814814815, 0.022222222222222223, 0.044444444444444446, 0.05185185185185185, 0.14814814814814814, 0.05185185185185185, 0.27407407407407408, 0.029629629629629631, 0.0074074074074074077, 0.5714285714285714, 0.063492063492063489, 0.031746031746031744, 0.047619047619047616, 0.12698412698412698, 0.095238095238095233, 0.015873015873015872, 0.015873015873015872, 0.015873015873015872, 0.015873015873015872, 0.24285714285714285, 0.0071428571428571426, 0.0071428571428571426, 0.021428571428571429, 0.15714285714285714, 0.021428571428571429, 0.12857142857142856, 0.014285714285714285, 0.085714285714285715, 0.057142857142857141, 0.014285714285714285, 0.0071428571428571426, 0.22142857142857142, 0.26050420168067229, 0.050420168067226892, 0.092436974789915971, 0.49579831932773111, 0.075630252100840331, 0.29999999999999999, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.25, 0.071428571428571425, 0.11688311688311688, 0.071428571428571425, 0.11038961038961038, 0.032467532467532464, 0.025974025974025976, 0.4935064935064935, 0.0064935064935064939, 0.025974025974025976, 0.012987012987012988, 0.01948051948051948, 0.0064935064935064939, 0.15217391304347827, 0.1358695652173913, 0.032608695652173912, 0.005434782608695652, 0.42391304347826086, 0.23369565217391305, 0.005434782608695652, 0.04981050351922036, 0.034109366540335681, 0.27287493232268545, 0.16296697347049269, 0.055224688684353006, 0.083919870059556034, 0.073091499729290743, 0.097455332972387662, 0.070925825663237685, 0.037357877639415268, 0.010828370330265295, 0.009204114780725501, 0.015159718462371413, 0.0048727666486193828, 0.00054141851651326478, 0.0064970221981591773, 0.0070384407146724419, 0.0032485110990795887, 0.0037899296155928532, 0.21739130434782608, 0.43478260869565216, 0.30434782608695654, 0.625, 0.0625, 0.25, 0.0625, 0.18372703412073491, 0.34645669291338582, 0.03937007874015748, 0.10498687664041995, 0.013123359580052493, 0.049868766404199474, 0.062992125984251968, 0.081364829396325458, 0.023622047244094488, 0.023622047244094488, 0.0052493438320209973, 0.03937007874015748, 0.0026246719160104987, 0.013123359580052493, 0.0052493438320209973, 0.33333333333333331, 0.066666666666666666, 0.20000000000000001, 0.26666666666666666, 0.14953271028037382, 0.3364485981308411, 0.07476635514018691, 0.028037383177570093, 0.018691588785046728, 0.14018691588785046, 0.0093457943925233638, 0.037383177570093455, 0.11214953271028037, 0.084112149532710276, 0.15646258503401361, 0.72108843537414968, 0.013605442176870748, 0.0068027210884353739, 0.020408163265306121, 0.0068027210884353739, 0.0068027210884353739, 0.034013605442176874, 0.027210884353741496, 0.66666666666666663, 0.062893081761006289, 0.0062893081761006293, 0.025157232704402517, 0.056603773584905662, 0.012578616352201259, 0.1069182389937107, 0.0062893081761006293, 0.031446540880503145, 0.012578616352201259, 0.0062893081761006293, 0.0062893081761006293, 0.11818181818181818, 0.018181818181818181, 0.06363636363636363, 0.027272727272727271, 0.036363636363636362, 0.054545454545454543, 0.0090909090909090905, 0.62727272727272732, 0.0090909090909090905, 0.027272727272727271, 0.2390728476821192, 0.41125827814569538, 0.0086092715231788075, 0.046357615894039736, 0.053642384105960263, 0.0072847682119205302, 0.18675496688741722, 0.0019867549668874172, 0.013245033112582781, 0.0033112582781456954, 0.0013245033112582781, 0.0046357615894039739, 0.0019867549668874172, 0.0039735099337748344, 0.0026490066225165563, 0.00066225165562913907, 0.00066225165562913907, 0.011258278145695364, 0.00066225165562913907, 0.40882694541231129, 0.35423925667828104, 0.0046457607433217189, 0.045296167247386762, 0.053426248548199766, 0.012775842044134728, 0.087108013937282236, 0.0034843205574912892, 0.012775842044134728, 0.0023228803716608595, 0.0023228803716608595, 0.0034843205574912892, 0.0011614401858304297, 0.0034843205574912892, 0.0011614401858304297, 0.0011614401858304297, 0.32204789430222958, 0.072667217175887699, 0.05697770437654831, 0.028075970272502065, 0.14037985136251033, 0.0090834021469859624, 0.21139554087530965, 0.0041288191577208916, 0.037159372419488024, 0.0016515276630883566, 0.0016515276630883566, 0.10569777043765483, 0.00082576383154417832, 0.002477291494632535, 0.0016515276630883566, 0.00082576383154417832, 0.00082576383154417832, 0.0016515276630883566, 0.00082576383154417832, 0.081632653061224483, 0.031539888682745827, 0.048237476808905382, 0.033395176252319109, 0.12615955473098331, 0.025974025974025976, 0.044526901669758812, 0.020408163265306121, 0.36734693877551022, 0.0018552875695732839, 0.13729128014842301, 0.0018552875695732839, 0.0055658627087198514, 0.018552875695732839, 0.022263450834879406, 0.0055658627087198514, 0.025974025974025976, 0.029702970297029702, 0.13861386138613863, 0.019801980198019802, 0.61386138613861385, 0.0099009900990099011, 0.049504950495049507, 0.0099009900990099011, 0.049504950495049507, 0.0099009900990099011, 0.0099009900990099011, 0.049504950495049507, 0.0099009900990099011, 0.12995780590717299, 0.13164556962025317, 0.14936708860759493, 0.20675105485232068, 0.047257383966244723, 0.12911392405063291, 0.055696202531645568, 0.040506329113924051, 0.0025316455696202532, 0.043881856540084391, 0.020253164556962026, 0.012658227848101266, 0.015189873417721518, 0.0033755274261603376, 0.0025316455696202532, 0.0016877637130801688, 0.0050632911392405064, 0.0025316455696202532, 0.0025316455696202532, 0.82608695652173914, 0.086956521739130432, 0.043478260869565216, 0.043478260869565216, 0.20416666666666666, 0.62916666666666665, 0.020833333333333332, 0.0083333333333333332, 0.012500000000000001, 0.033333333333333333, 0.0041666666666666666, 0.0083333333333333332, 0.04583333333333333, 0.016666666666666666, 0.0083333333333333332, 0.0041666666666666666, 0.16666666666666666, 0.39743589743589741, 0.10897435897435898, 0.032051282051282048, 0.019230769230769232, 0.11538461538461539, 0.05128205128205128, 0.05128205128205128, 0.02564102564102564, 0.00641025641025641, 0.00641025641025641, 0.01282051282051282, 0.056047197640117993, 0.0029498525073746312, 0.52212389380530977, 0.29793510324483774, 0.10914454277286136, 0.32862190812720848, 0.10600706713780919, 0.12014134275618374, 0.021201413427561839, 0.045936395759717315, 0.010600706713780919, 0.23674911660777384, 0.0070671378091872791, 0.045936395759717315, 0.021201413427561839, 0.0035335689045936395, 0.014134275618374558, 0.0070671378091872791, 0.021201413427561839, 0.0070671378091872791, 0.0070671378091872791, 0.27142857142857141, 0.15714285714285714, 0.057142857142857141, 0.057142857142857141, 0.071428571428571425, 0.11428571428571428, 0.057142857142857141, 0.028571428571428571, 0.085714285714285715, 0.042857142857142858, 0.028571428571428571, 0.014285714285714285, 0.03614457831325301, 0.012048192771084338, 0.77108433734939763, 0.024096385542168676, 0.048192771084337352, 0.072289156626506021, 0.012048192771084338, 0.18518518518518517, 0.3888888888888889, 0.07407407407407407, 0.037037037037037035, 0.018518518518518517, 0.07407407407407407, 0.092592592592592587, 0.037037037037037035, 0.055555555555555552, 0.18181818181818182, 0.34415584415584416, 0.0064935064935064939, 0.15584415584415584, 0.11688311688311688, 0.032467532467532464, 0.03896103896103896, 0.084415584415584416, 0.01948051948051948, 0.0064935064935064939, 0.0064935064935064939, 0.24489795918367346, 0.32653061224489793, 0.061224489795918366, 0.020408163265306121, 0.040816326530612242, 0.12244897959183673, 0.081632653061224483, 0.061224489795918366, 0.34210526315789475, 0.30263157894736842, 0.013157894736842105, 0.21052631578947367, 0.052631578947368418, 0.039473684210526314, 0.026315789473684209, 0.013157894736842105, 0.2421875, 0.3359375, 0.03125, 0.1015625, 0.046875, 0.03125, 0.0078125, 0.0234375, 0.015625, 0.0703125, 0.0390625, 0.0234375, 0.015625, 0.0078125, 0.90000000000000002, 0.066666666666666666, 0.40909090909090912, 0.34090909090909088, 0.022727272727272728, 0.045454545454545456, 0.15909090909090909, 0.064516129032258063, 0.22580645161290322, 0.5161290322580645, 0.16129032258064516, 0.8571428571428571, 0.047619047619047616, 0.03873239436619718, 0.1619718309859155, 0.056338028169014086, 0.031690140845070422, 0.0070422535211267607, 0.014084507042253521, 0.0035211267605633804, 0.014084507042253521, 0.03873239436619718, 0.61971830985915488, 0.0035211267605633804, 0.0035211267605633804, 0.024390243902439025, 0.024390243902439025, 0.024390243902439025, 0.073170731707317069, 0.024390243902439025, 0.73170731707317072, 0.04878048780487805, 0.18181818181818182, 0.27272727272727271, 0.13636363636363635, 0.090909090909090912, 0.13636363636363635, 0.13636363636363635, 0.43023255813953487, 0.19767441860465115, 0.034883720930232558, 0.023255813953488372, 0.2441860465116279, 0.046511627906976744, 0.023255813953488372, 0.022222222222222223, 0.22222222222222221, 0.20000000000000001, 0.088888888888888892, 0.13333333333333333, 0.066666666666666666, 0.044444444444444446, 0.066666666666666666, 0.044444444444444446, 0.066666666666666666, 0.040540540540540543, 0.027027027027027029, 0.013513513513513514, 0.64864864864864868, 0.16216216216216217, 0.027027027027027029, 0.013513513513513514, 0.027027027027027029, 0.013513513513513514, 0.013513513513513514, 0.13043478260869565, 0.34782608695652173, 0.47826086956521741, 0.083333333333333329, 0.06097560975609756, 0.083333333333333329, 0.06910569105691057, 0.07113821138211382, 0.06097560975609756, 0.073170731707317069, 0.056910569105691054, 0.32926829268292684, 0.016260162601626018, 0.008130081300813009, 0.032520325203252036, 0.0060975609756097563, 0.008130081300813009, 0.012195121951219513, 0.016260162601626018, 0.008130081300813009, 0.0020325203252032522, 0.024390243902439025, 0.14634146341463414, 0.1951219512195122, 0.24390243902439024, 0.04878048780487805, 0.17073170731707318, 0.024390243902439025, 0.024390243902439025, 0.04878048780487805, 0.04878048780487805, 0.024390243902439025, 0.11538461538461539, 0.34615384615384615, 0.14102564102564102, 0.19230769230769232, 0.01282051282051282, 0.05128205128205128, 0.05128205128205128, 0.05128205128205128, 0.038461538461538464, 0.33333333333333331, 0.083333333333333329, 0.16666666666666666, 0.33333333333333331, 0.083333333333333329, 0.027777777777777776, 0.027777777777777776, 0.1388888888888889, 0.25, 0.30555555555555558, 0.027777777777777776, 0.1388888888888889, 0.027777777777777776, 0.027777777777777776, 0.41399176954732508, 0.34979423868312759, 0.013168724279835391, 0.018106995884773661, 0.05185185185185185, 0.0049382716049382715, 0.037037037037037035, 0.00411522633744856, 0.0024691358024691358, 0.043621399176954734, 0.031275720164609055, 0.018930041152263374, 0.0016460905349794238, 0.00411522633744856, 0.0016460905349794238, 0.00082304526748971192, 0.0016460905349794238, 0.18867924528301888, 0.073485600794438929, 0.036742800397219465, 0.10923535253227408, 0.17279046673286991, 0.024826216484607744, 0.26415094339622641, 0.033763654419066536, 0.027805362462760674, 0.0039721946375372392, 0.011916583912611719, 0.012909632571996028, 0.010923535253227408, 0.010923535253227408, 0.0019860973187686196, 0.0019860973187686196, 0.0039721946375372392, 0.0079443892750744784, 0.0009930486593843098, 0.18090452261306533, 0.23115577889447236, 0.035175879396984924, 0.10385259631490787, 0.043551088777219429, 0.041876046901172533, 0.053601340033500838, 0.035175879396984924, 0.073701842546063656, 0.011725293132328308, 0.070351758793969849, 0.058626465661641543, 0.0083752093802345051, 0.0016750418760469012, 0.035175879396984924, 0.0016750418760469012, 0.010050251256281407, 0.0033500837520938024, 0.055555555555555552, 0.83333333333333337, 0.1111111111111111, 0.29508196721311475, 0.34426229508196721, 0.049180327868852458, 0.065573770491803282, 0.19672131147540983, 0.032786885245901641, 0.2413793103448276, 0.36206896551724138, 0.086206896551724144, 0.068965517241379309, 0.017241379310344827, 0.017241379310344827, 0.10344827586206896, 0.051724137931034482, 0.017241379310344827, 0.30769230769230771, 0.15384615384615385, 0.046153846153846156, 0.061538461538461542, 0.015384615384615385, 0.076923076923076927, 0.030769230769230771, 0.092307692307692313, 0.16923076923076924, 0.015384615384615385, 0.083333333333333329, 0.83333333333333337, 0.26851851851851855, 0.43518518518518517, 0.0092592592592592587, 0.055555555555555552, 0.037037037037037035, 0.018518518518518517, 0.0092592592592592587, 0.018518518518518517, 0.083333333333333329, 0.055555555555555552, 0.23076923076923078, 0.23076923076923078, 0.30769230769230771, 0.076923076923076927, 0.076923076923076927, 0.27244911533856592, 0.20965810828788081, 0.13875216176666222, 0.023280564054809098, 0.082479712651323672, 0.023812691233204737, 0.045895969136623652, 0.020087800984435279, 0.032326726087534924, 0.032592789676732736, 0.062125848077690567, 0.029799121990155646, 0.0047891446055607287, 0.011972861513901822, 0.0011972861513901822, 0.0013303179459890914, 0.0017294133297858188, 0.0041239856325661836, 0.0013303179459890914, 0.00013303179459890914, 0.19117647058823528, 0.49264705882352944, 0.036764705882352942, 0.040441176470588237, 0.029411764705882353, 0.073529411764705885, 0.0036764705882352941, 0.022058823529411766, 0.044117647058823532, 0.029411764705882353, 0.025735294117647058, 0.0073529411764705881, 0.0036764705882352941, 0.071428571428571425, 0.21428571428571427, 0.35714285714285715, 0.21428571428571427, 0.071428571428571425, 0.048128342245989303, 0.021390374331550801, 0.24064171122994651, 0.47058823529411764, 0.0053475935828877002, 0.021390374331550801, 0.042780748663101602, 0.048128342245989303, 0.0053475935828877002, 0.0106951871657754, 0.042780748663101602, 0.0106951871657754, 0.0053475935828877002, 0.0053475935828877002, 0.0106951871657754, 0.18181818181818182, 0.36363636363636365, 0.18181818181818182, 0.090909090909090912, 0.090909090909090912, 0.14893617021276595, 0.14893617021276595, 0.021276595744680851, 0.38297872340425532, 0.021276595744680851, 0.14893617021276595, 0.042553191489361701, 0.085106382978723402, 0.63636363636363635, 0.090909090909090912, 0.090909090909090912, 0.074999999999999997, 0.25, 0.074999999999999997, 0.10000000000000001, 0.074999999999999997, 0.20000000000000001, 0.125, 0.10000000000000001, 0.40029325513196479, 0.31524926686217009, 0.0036656891495601175, 0.024926686217008796, 0.087243401759530798, 0.0043988269794721412, 0.06378299120234604, 0.0058651026392961877, 0.031524926686217009, 0.011730205278592375, 0.025659824046920823, 0.010997067448680353, 0.00073313782991202346, 0.0029325513196480938, 0.0021994134897360706, 0.0021994134897360706, 0.0029325513196480938, 0.0021994134897360706, 0.23193916349809887, 0.46387832699619774, 0.0076045627376425855, 0.053231939163498096, 0.022813688212927757, 0.015209125475285171, 0.019011406844106463, 0.022813688212927757, 0.0076045627376425855, 0.0038022813688212928, 0.098859315589353611, 0.030418250950570342, 0.0076045627376425855, 0.0038022813688212928, 0.0076045627376425855, 0.13636363636363635, 0.090909090909090912, 0.045454545454545456, 0.045454545454545456, 0.045454545454545456, 0.045454545454545456, 0.18181818181818182, 0.13636363636363635, 0.045454545454545456, 0.045454545454545456, 0.090909090909090912, 0.045454545454545456, 0.36486486486486486, 0.24324324324324326, 0.013513513513513514, 0.10810810810810811, 0.10810810810810811, 0.013513513513513514, 0.013513513513513514, 0.054054054054054057, 0.054054054054054057, 0.013513513513513514, 0.875, 0.0625, 0.098039215686274508, 0.71568627450980393, 0.039215686274509803, 0.039215686274509803, 0.019607843137254902, 0.019607843137254902, 0.029411764705882353, 0.0098039215686274508, 0.0098039215686274508, 0.2792207792207792, 0.27272727272727271, 0.084415584415584416, 0.025974025974025976, 0.03896103896103896, 0.0064935064935064939, 0.032467532467532464, 0.084415584415584416, 0.01948051948051948, 0.14935064935064934, 0.012987012987012988, 0.48936170212765956, 0.40425531914893614, 0.021276595744680851, 0.021276595744680851, 0.042553191489361701, 0.13754045307443366, 0.16949838187702265, 0.025485436893203883, 0.047330097087378641, 0.010113268608414239, 0.0056634304207119745, 0.0080906148867313909, 0.0064724919093851136, 0.0093042071197411008, 0.20914239482200647, 0.28114886731391586, 0.076860841423948223, 0.0028317152103559872, 0.0008090614886731392, 0.0008090614886731392, 0.0024271844660194173, 0.0004045307443365696, 0.0044498381877022654, 0.0008090614886731392, 0.0004045307443365696, 0.19319562575941676, 0.19562575941676794, 0.041312272174969626, 0.057108140947752128, 0.02187120291616039, 0.0072904009720534627, 0.018226002430133656, 0.018226002430133656, 0.06561360874848117, 0.097205346294046174, 0.19319562575941676, 0.061968408262454436, 0.0036452004860267314, 0.001215066828675577, 0.0048602673147023082, 0.0072904009720534627, 0.0097205346294046164, 0.0024301336573511541, 0.34482758620689657, 0.17241379310344829, 0.017241379310344827, 0.034482758620689655, 0.051724137931034482, 0.32758620689655171, 0.017241379310344827, 0.28473177441540576, 0.2517193947730399, 0.020632737276478678, 0.017881705639614855, 0.23796423658872076, 0.0068775790921595595, 0.074277854195323248, 0.002751031636863824, 0.008253094910591471, 0.022008253094910592, 0.045392022008253097, 0.017881705639614855, 0.002751031636863824, 0.001375515818431912, 0.001375515818431912, 0.002751031636863824, 0.002751031636863824, 0.41891891891891891, 0.3783783783783784, 0.013513513513513514, 0.17567567567567569, 0.78231292517006801, 0.068027210884353748, 0.0068027210884353739, 0.013605442176870748, 0.013605442176870748, 0.074829931972789115, 0.013605442176870748, 0.0068027210884353739, 0.0068027210884353739, 0.3888888888888889, 0.1111111111111111, 0.16666666666666666, 0.22222222222222221, 0.15384615384615385, 0.41025641025641024, 0.02564102564102564, 0.05128205128205128, 0.02564102564102564, 0.10256410256410256, 0.12820512820512819, 0.05128205128205128, 0.02564102564102564, 0.44827586206896552, 0.068965517241379309, 0.27586206896551724, 0.068965517241379309, 0.034482758620689655, 0.034482758620689655, 0.034482758620689655, 0.10743801652892562, 0.17355371900826447, 0.041322314049586778, 0.016528925619834711, 0.28925619834710742, 0.016528925619834711, 0.016528925619834711, 0.016528925619834711, 0.0082644628099173556, 0.30578512396694213, 0.076923076923076927, 0.84615384615384615, 0.26923076923076922, 0.32692307692307693, 0.038461538461538464, 0.038461538461538464, 0.019230769230769232, 0.019230769230769232, 0.057692307692307696, 0.17307692307692307, 0.038461538461538464, 0.019230769230769232, 0.11538461538461539, 0.42307692307692307, 0.11538461538461539, 0.076923076923076927, 0.11538461538461539, 0.038461538461538464, 0.038461538461538464, 0.46700507614213199, 0.34010152284263961, 0.04060913705583756, 0.02030456852791878, 0.01015228426395939, 0.005076142131979695, 0.005076142131979695, 0.055837563451776651, 0.03553299492385787, 0.005076142131979695, 0.005076142131979695, 0.51724137931034486, 0.13793103448275862, 0.31034482758620691, 0.84999999999999998, 0.050000000000000003, 0.15944055944055943, 0.078321678321678329, 0.14615384615384616, 0.098601398601398604, 0.067132867132867133, 0.12237762237762238, 0.14685314685314685, 0.039160839160839164, 0.034265734265734267, 0.036363636363636362, 0.037762237762237763, 0.0076923076923076927, 0.0041958041958041958, 0.0041958041958041958, 0.0027972027972027972, 0.0041958041958041958, 0.0048951048951048955, 0.0027972027972027972, 0.0013986013986013986, 0.0006993006993006993, 0.496, 0.13600000000000001, 0.048000000000000001, 0.032000000000000001, 0.016, 0.0080000000000000002, 0.080000000000000002, 0.040000000000000001, 0.016, 0.096000000000000002, 0.032000000000000001, 0.013513513513513514, 0.081081081081081086, 0.013513513513513514, 0.013513513513513514, 0.71621621621621623, 0.027027027027027029, 0.013513513513513514, 0.10810810810810811, 0.10810810810810811, 0.10810810810810811, 0.054054054054054057, 0.24324324324324326, 0.27027027027027029, 0.054054054054054057, 0.054054054054054057, 0.027027027027027029, 0.45454545454545453, 0.090909090909090912, 0.090909090909090912, 0.27272727272727271, 0.21468926553672316, 0.11864406779661017, 0.062146892655367235, 0.11864406779661017, 0.084745762711864403, 0.056497175141242938, 0.03954802259887006, 0.10169491525423729, 0.016949152542372881, 0.04519774011299435, 0.03954802259887006, 0.0056497175141242938, 0.0056497175141242938, 0.028248587570621469, 0.011299435028248588, 0.022598870056497175, 0.011299435028248588, 0.011299435028248588, 0.0056497175141242938, 0.081469648562300323, 0.06070287539936102, 0.087859424920127799, 0.11182108626198083, 0.24440894568690097, 0.20287539936102236, 0.015974440894568689, 0.043130990415335461, 0.041533546325878593, 0.0015974440894568689, 0.0047923322683706068, 0.0047923322683706068, 0.0063897763578274758, 0.0063897763578274758, 0.0015974440894568689, 0.0047923322683706068, 0.071884984025559109, 0.0031948881789137379, 0.052631578947368418, 0.052631578947368418, 0.84210526315789469, 0.070422535211267609, 0.070422535211267609, 0.028169014084507043, 0.19718309859154928, 0.042253521126760563, 0.014084507042253521, 0.056338028169014086, 0.014084507042253521, 0.014084507042253521, 0.46478873239436619, 0.014084507042253521, 0.014084507042253521, 0.071428571428571425, 0.8571428571428571, 0.91666666666666663, 0.0625, 0.125, 0.0625, 0.0625, 0.25, 0.1875, 0.1875, 0.11494252873563218, 0.080459770114942528, 0.068965517241379309, 0.022988505747126436, 0.086206896551724144, 0.57758620689655171, 0.0028735632183908046, 0.0028735632183908046, 0.0057471264367816091, 0.0028735632183908046, 0.025862068965517241, 0.0028735632183908046, 0.076923076923076927, 0.76923076923076927, 0.21081081081081082, 0.051891891891891889, 0.20756756756756756, 0.055135135135135134, 0.20756756756756756, 0.024864864864864864, 0.08324324324324324, 0.054054054054054057, 0.041081081081081078, 0.0086486486486486488, 0.0043243243243243244, 0.0010810810810810811, 0.0032432432432432431, 0.043243243243243246, 0.0010810810810810811, 0.0021621621621621622, 0.0010810810810810811, 0.0010810810810810811, 0.0010810810810810811, 0.082352941176470587, 0.058823529411764705, 0.24705882352941178, 0.22352941176470589, 0.023529411764705882, 0.035294117647058823, 0.094117647058823528, 0.082352941176470587, 0.10588235294117647, 0.011764705882352941, 0.023529411764705882, 0.21611721611721613, 0.20512820512820512, 0.062271062271062272, 0.031135531135531136, 0.090354090354090352, 0.17338217338217338, 0.065323565323565327, 0.047008547008547008, 0.051892551892551896, 0.01221001221001221, 0.0018315018315018315, 0.0018315018315018315, 0.004884004884004884, 0.0079365079365079361, 0.001221001221001221, 0.004884004884004884, 0.018925518925518924, 0.0030525030525030525, 0.001221001221001221, 0.18556701030927836, 0.2108853850818678, 0.15570042449969679, 0.091419041843541535, 0.071861734384475434, 0.041843541540327468, 0.04972710733778047, 0.041085506367495452, 0.05124317768344451, 0.035324439053972104, 0.01485748938750758, 0.010612492419648272, 0.013038204972710734, 0.013796240145542753, 0.0016676773802304426, 0.0053062462098241361, 0.0027289266221952697, 0.0013644633110976349, 0.0016676773802304426, 0.00015160703456640388, 0.13953488372093023, 0.10232558139534884, 0.023255813953488372, 0.44186046511627908, 0.046511627906976744, 0.018604651162790697, 0.0093023255813953487, 0.023255813953488372, 0.0046511627906976744, 0.13023255813953488, 0.03255813953488372, 0.0046511627906976744, 0.0046511627906976744, 0.0093023255813953487, 0.0046511627906976744, 0.0046511627906976744, 0.25, 0.25, 0.083333333333333329, 0.16666666666666666, 0.16666666666666666, 0.083333333333333329, 0.14492753623188406, 0.20415879017013233, 0.10459987397605545, 0.078764965343415247, 0.056080655324511654, 0.052930056710775046, 0.080655324511657217, 0.063011972274732195, 0.084436042848141143, 0.035286704473850031, 0.030245746691871456, 0.013862633900441084, 0.0063011972274732196, 0.016383112791430371, 0.0063011972274732196, 0.0050409577819785761, 0.002520478890989288, 0.010712035286704474, 0.001890359168241966, 0.26384364820846906, 0.049945711183496201, 0.043431053203040172, 0.015200868621064061, 0.072747014115092296, 0.0054288816503800215, 0.22041259500542887, 0.0054288816503800215, 0.079261672095548311, 0.033659066232356136, 0.067318132464712271, 0.074918566775244305, 0.014115092290988056, 0.0065146579804560263, 0.0065146579804560263, 0.0021715526601520088, 0.0010857763300760044, 0.031487513572204126, 0.0054288816503800215, 0.33094812164579607, 0.057245080500894455, 0.023255813953488372, 0.019677996422182469, 0.03041144901610018, 0.0017889087656529517, 0.24150268336314848, 0.0017889087656529517, 0.026833631484794274, 0.0071556350626118068, 0.11627906976744186, 0.09838998211091235, 0.016100178890876567, 0.0035778175313059034, 0.0017889087656529517, 0.0017889087656529517, 0.0017889087656529517, 0.016100178890876567, 0.0035778175313059034, 0.88073394495412849, 0.027522935779816515, 0.01834862385321101, 0.055045871559633031, 0.94117647058823528, 0.10098522167487685, 0.054187192118226604, 0.49507389162561577, 0.064039408866995079, 0.10591133004926108, 0.061576354679802957, 0.036945812807881777, 0.022167487684729065, 0.0049261083743842365, 0.0024630541871921183, 0.0049261083743842365, 0.0073891625615763543, 0.012315270935960592, 0.0049261083743842365, 0.0049261083743842365, 0.012315270935960592, 0.0024630541871921183, 0.0024630541871921183, 0.78947368421052633, 0.15789473684210525, 0.090909090909090912, 0.18181818181818182, 0.72727272727272729, 0.2857142857142857, 0.19047619047619047, 0.095238095238095233, 0.095238095238095233, 0.23809523809523808, 0.12923076923076923, 0.21692307692307691, 0.16461538461538461, 0.047692307692307694, 0.38307692307692309, 0.0061538461538461538, 0.0092307692307692316, 0.0061538461538461538, 0.0076923076923076927, 0.0015384615384615385, 0.0061538461538461538, 0.0015384615384615385, 0.0030769230769230769, 0.0061538461538461538, 0.0015384615384615385, 0.0015384615384615385, 0.0030769230769230769, 0.0030769230769230769, 0.34328358208955223, 0.074626865671641784, 0.20895522388059701, 0.089552238805970144, 0.029850746268656716, 0.029850746268656716, 0.014925373134328358, 0.014925373134328358, 0.074626865671641784, 0.014925373134328358, 0.014925373134328358, 0.059701492537313432, 0.94117647058823528, 0.13333333333333333, 0.46666666666666667, 0.066666666666666666, 0.066666666666666666, 0.20000000000000001, 0.066298342541436461, 0.10497237569060773, 0.29281767955801102, 0.088397790055248615, 0.016574585635359115, 0.22099447513812154, 0.099447513812154692, 0.066298342541436461, 0.0055248618784530384, 0.0055248618784530384, 0.011049723756906077, 0.011049723756906077, 0.011049723756906077, 0.058823529411764705, 0.88235294117647056, 0.055555555555555552, 0.88888888888888884, 0.8125, 0.125, 0.1797752808988764, 0.7078651685393258, 0.056179775280898875, 0.02247191011235955, 0.011235955056179775, 0.13414634146341464, 0.036585365853658534, 0.41463414634146339, 0.10975609756097561, 0.15853658536585366, 0.036585365853658534, 0.012195121951219513, 0.06097560975609756, 0.012195121951219513, 0.58147512864494, 0.19382504288164665, 0.0068610634648370496, 0.041166380789022301, 0.063464837049742706, 0.0034305317324185248, 0.048027444253859346, 0.0017152658662092624, 0.0051457975986277877, 0.0085763293310463125, 0.0068610634648370496, 0.0017152658662092624, 0.032590051457975985, 0.0017152658662092624, 0.0034305317324185248, 0.0017152658662092624, 0.021874999999999999, 0.040625000000000001, 0.68125000000000002, 0.0140625, 0.051562499999999997, 0.037499999999999999, 0.046875, 0.03125, 0.050000000000000003, 0.0062500000000000003, 0.0031250000000000002, 0.0046874999999999998, 0.0062500000000000003, 0.0015625000000000001, 0.0015625000000000001, 0.0015625000000000001, 0.0015625000000000001, 0.0054945054945054949, 0.90109890109890112, 0.0054945054945054949, 0.038461538461538464, 0.01098901098901099, 0.0054945054945054949, 0.01098901098901099, 0.01098901098901099, 0.073394495412844041, 0.01834862385321101, 0.57798165137614677, 0.064220183486238536, 0.03669724770642202, 0.10091743119266056, 0.0091743119266055051, 0.082568807339449546, 0.027522935779816515, 0.25, 0.20000000000000001, 0.14999999999999999, 0.34999999999999998, 0.069306930693069313, 0.10891089108910891, 0.059405940594059403, 0.069306930693069313, 0.079207920792079209, 0.39603960396039606, 0.11881188118811881, 0.039603960396039604, 0.0099009900990099011, 0.019801980198019802, 0.0099009900990099011, 0.0099009900990099011, 0.0099009900990099011, 0.038461538461538464, 0.57692307692307687, 0.30769230769230771, 0.038461538461538464, 0.12698412698412698, 0.14550264550264549, 0.14550264550264549, 0.042328042328042326, 0.010582010582010581, 0.12433862433862433, 0.058201058201058198, 0.079365079365079361, 0.044973544973544971, 0.087301587301587297, 0.082010582010582006, 0.026455026455026454, 0.0052910052910052907, 0.0026455026455026454, 0.0079365079365079361, 0.0052910052910052907, 0.052631578947368418, 0.60526315789473684, 0.21052631578947367, 0.026315789473684209, 0.078947368421052627, 0.032786885245901641, 0.39344262295081966, 0.065573770491803282, 0.11475409836065574, 0.032786885245901641, 0.032786885245901641, 0.27868852459016391, 0.032786885245901641, 0.14298207258417139, 0.10494097070397901, 0.1915172715347617, 0.13161346742457367, 0.031919545255793616, 0.046348928727590728, 0.017927415828596416, 0.074770441626585041, 0.054219501530389159, 0.03279405334499344, 0.019676432006996064, 0.097507651945780496, 0.019239177962396152, 0.006121556624398776, 0.0091823349365981639, 0.003935286401399213, 0.0017490161783996502, 0.0052470485351989509, 0.0083078268473983381, 0.91666666666666663, 0.062937062937062943, 0.013986013986013986, 0.20279720279720279, 0.14685314685314685, 0.013986013986013986, 0.04195804195804196, 0.034965034965034968, 0.16083916083916083, 0.034965034965034968, 0.19580419580419581, 0.027972027972027972, 0.027972027972027972, 0.04195804195804196, 0.35714285714285715, 0.2857142857142857, 0.21428571428571427, 0.14285714285714285, 0.26666666666666666, 0.46666666666666667, 0.066666666666666666, 0.13333333333333333, 0.076923076923076927, 0.53846153846153844, 0.076923076923076927, 0.15384615384615385, 0.076923076923076927, 0.10000000000000001, 0.14999999999999999, 0.10000000000000001, 0.40000000000000002, 0.14999999999999999, 0.050000000000000003, 0.03125, 0.015625, 0.578125, 0.015625, 0.03125, 0.015625, 0.21875, 0.046875, 0.015625, 0.5, 0.14285714285714285, 0.035714285714285712, 0.10714285714285714, 0.071428571428571425, 0.10714285714285714, 0.6785714285714286, 0.10714285714285714, 0.14285714285714285, 0.035714285714285712, 0.29213483146067415, 0.34831460674157305, 0.10112359550561797, 0.0449438202247191, 0.033707865168539325, 0.011235955056179775, 0.033707865168539325, 0.056179775280898875, 0.033707865168539325, 0.011235955056179775, 0.02247191011235955, 0.22972972972972974, 0.013513513513513514, 0.040540540540540543, 0.25675675675675674, 0.027027027027027029, 0.027027027027027029, 0.013513513513513514, 0.027027027027027029, 0.027027027027027029, 0.027027027027027029, 0.29729729729729731, 0.22222222222222221, 0.055555555555555552, 0.22222222222222221, 0.44444444444444442, 0.034482758620689655, 0.10344827586206896, 0.25287356321839083, 0.12643678160919541, 0.13793103448275862, 0.068965517241379309, 0.13793103448275862, 0.045977011494252873, 0.022988505747126436, 0.034482758620689655, 0.011494252873563218, 0.011494252873563218, 0.18181818181818182, 0.36363636363636365, 0.27272727272727271, 0.090909090909090912, 0.082191780821917804, 0.24657534246575341, 0.16438356164383561, 0.19178082191780821, 0.027397260273972601, 0.15068493150684931, 0.041095890410958902, 0.013698630136986301, 0.041095890410958902, 0.013698630136986301, 0.027397260273972601, 0.058823529411764705, 0.52941176470588236, 0.058823529411764705, 0.29411764705882354, 0.066666666666666666, 0.18333333333333332, 0.13333333333333333, 0.14999999999999999, 0.016666666666666666, 0.18333333333333332, 0.083333333333333329, 0.10000000000000001, 0.050000000000000003, 0.073251028806584365, 0.16131687242798354, 0.15637860082304528, 0.12181069958847737, 0.040329218106995884, 0.2617283950617284, 0.0049382716049382715, 0.062551440329218111, 0.069958847736625515, 0.0065843621399176953, 0.014814814814814815, 0.0057613168724279839, 0.0016460905349794238, 0.0016460905349794238, 0.0016460905349794238, 0.00411522633744856, 0.0057613168724279839, 0.0032921810699588477, 0.00082304526748971192, 0.00082304526748971192, 0.083333333333333329, 0.16666666666666666, 0.16666666666666666, 0.25, 0.083333333333333329, 0.25, 0.93333333333333335, 0.42307692307692307, 0.53846153846153844, 0.22608695652173913, 0.20000000000000001, 0.15652173913043479, 0.034782608695652174, 0.034782608695652174, 0.017391304347826087, 0.060869565217391307, 0.026086956521739129, 0.034782608695652174, 0.017391304347826087, 0.14782608695652175, 0.017391304347826087, 0.017391304347826087, 0.0086956521739130436, 0.017391304347826087, 0.15384615384615385, 0.76923076923076927, 0.18181818181818182, 0.72727272727272729, 0.047619047619047616, 0.38095238095238093, 0.095238095238095233, 0.047619047619047616, 0.047619047619047616, 0.2857142857142857, 0.047619047619047616, 0.20454545454545456, 0.068181818181818177, 0.045454545454545456, 0.068181818181818177, 0.045454545454545456, 0.022727272727272728, 0.11363636363636363, 0.045454545454545456, 0.22727272727272727, 0.045454545454545456, 0.022727272727272728, 0.13636363636363635, 0.15789473684210525, 0.017543859649122806, 0.15789473684210525, 0.10526315789473684, 0.070175438596491224, 0.08771929824561403, 0.035087719298245612, 0.08771929824561403, 0.21052631578947367, 0.035087719298245612, 0.017543859649122806, 0.32758620689655171, 0.5, 0.051724137931034482, 0.017241379310344827, 0.017241379310344827, 0.051724137931034482, 0.017241379310344827, 0.34031413612565448, 0.24607329842931938, 0.041884816753926704, 0.094240837696335081, 0.026178010471204188, 0.036649214659685861, 0.015706806282722512, 0.005235602094240838, 0.11518324607329843, 0.031413612565445025, 0.015706806282722512, 0.015706806282722512, 0.010471204188481676, 0.005235602094240838, 0.0018796992481203006, 0.41165413533834588, 0.27631578947368424, 0.016917293233082706, 0.095864661654135333, 0.0056390977443609019, 0.092105263157894732, 0.0018796992481203006, 0.0075187969924812026, 0.037593984962406013, 0.0056390977443609019, 0.0018796992481203006, 0.0093984962406015032, 0.0037593984962406013, 0.026315789473684209, 0.80701754385964908, 0.017543859649122806, 0.08771929824561403, 0.052631578947368418, 0.017543859649122806, 0.20833333333333334, 0.13095238095238096, 0.023809523809523808, 0.10119047619047619, 0.17261904761904762, 0.125, 0.02976190476190476, 0.059523809523809521, 0.071428571428571425, 0.011904761904761904, 0.017857142857142856, 0.017857142857142856, 0.023809523809523808, 0.011904761904761904, 0.55555555555555558, 0.07407407407407407, 0.14814814814814814, 0.14814814814814814, 0.037037037037037035, 0.037037037037037035, 0.1891891891891892, 0.10810810810810811, 0.054054054054054057, 0.081081081081081086, 0.054054054054054057, 0.027027027027027029, 0.24324324324324326, 0.16216216216216217, 0.027027027027027029, 0.38105046343975285, 0.17404737384140062, 0.024716786817713696, 0.0061791967044284241, 0.066941297631307933, 0.0020597322348094747, 0.10813594232749743, 0.0025746652935118436, 0.067971163748712662, 0.0020597322348094747, 0.084449021627188467, 0.041709577754891862, 0.0020597322348094747, 0.0036045314109165809, 0.026776519052523172, 0.001544799176107106, 0.0025746652935118436, 0.001544799176107106, 0.00051493305870236867, 0.23529411764705882, 0.14705882352941177, 0.029411764705882353, 0.55882352941176472, 0.15584415584415584, 0.17316017316017315, 0.1471861471861472, 0.1471861471861472, 0.064935064935064929, 0.082251082251082255, 0.073593073593073599, 0.051948051948051951, 0.008658008658008658, 0.008658008658008658, 0.034632034632034632, 0.021645021645021644, 0.008658008658008658, 0.004329004329004329, 0.004329004329004329, 0.004329004329004329, 0.004329004329004329, 0.16513761467889909, 0.32110091743119268, 0.24770642201834864, 0.027522935779816515, 0.03669724770642202, 0.055045871559633031, 0.01834862385321101, 0.091743119266055051, 0.0091743119266055051, 0.01834862385321101, 0.10697674418604651, 0.097674418604651161, 0.19534883720930232, 0.12093023255813953, 0.07441860465116279, 0.16279069767441862, 0.069767441860465115, 0.041860465116279069, 0.0093023255813953487, 0.041860465116279069, 0.0046511627906976744, 0.023255813953488372, 0.027906976744186046, 0.0093023255813953487, 0.0046511627906976744, 0.0046511627906976744, 0.0093023255813953487, 0.066666666666666666, 0.20000000000000001, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.33333333333333331, 0.066666666666666666, 0.13043478260869565, 0.69565217391304346, 0.086956521739130432, 0.11666666666666667, 0.14999999999999999, 0.016666666666666666, 0.016666666666666666, 0.66666666666666663, 0.016666666666666666, 0.016666666666666666, 0.04784688995215311, 0.09569377990430622, 0.19138755980861244, 0.043062200956937802, 0.54545454545454541, 0.0095693779904306216, 0.0047846889952153108, 0.0047846889952153108, 0.019138755980861243, 0.0047846889952153108, 0.028708133971291867, 0.7857142857142857, 0.071428571428571425, 0.066666666666666666, 0.13333333333333333, 0.13333333333333333, 0.46666666666666667, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.043478260869565216, 0.028985507246376812, 0.057971014492753624, 0.24637681159420291, 0.39130434782608697, 0.21739130434782608, 0.17708333333333334, 0.53125, 0.026041666666666668, 0.026041666666666668, 0.03125, 0.036458333333333336, 0.020833333333333332, 0.020833333333333332, 0.10416666666666667, 0.015625, 0.35294117647058826, 0.17647058823529413, 0.41176470588235292, 0.125, 0.140625, 0.21875, 0.078125, 0.03125, 0.046875, 0.109375, 0.078125, 0.046875, 0.03125, 0.046875, 0.015625, 0.015625, 0.015625, 0.17788461538461539, 0.19711538461538461, 0.19230769230769232, 0.052884615384615384, 0.086538461538461536, 0.10576923076923077, 0.0096153846153846159, 0.019230769230769232, 0.02403846153846154, 0.0096153846153846159, 0.052884615384615384, 0.033653846153846152, 0.0096153846153846159, 0.014423076923076924, 0.38095238095238093, 0.19047619047619047, 0.015873015873015872, 0.12698412698412698, 0.015873015873015872, 0.063492063492063489, 0.047619047619047616, 0.063492063492063489, 0.063492063492063489, 0.015873015873015872, 0.20000000000000001, 0.15135135135135136, 0.10810810810810811, 0.13513513513513514, 0.016216216216216217, 0.081081081081081086, 0.059459459459459463, 0.14054054054054055, 0.0054054054054054057, 0.021621621621621623, 0.048648648648648651, 0.0054054054054054057, 0.010810810810810811, 0.058823529411764705, 0.11764705882352941, 0.29411764705882354, 0.23529411764705882, 0.29411764705882354, 0.3888888888888889, 0.16666666666666666, 0.055555555555555552, 0.27777777777777779, 0.1111111111111111, 0.068965517241379309, 0.86206896551724133, 0.034482758620689655, 0.042253521126760563, 0.056338028169014086, 0.098591549295774641, 0.014084507042253521, 0.6619718309859155, 0.014084507042253521, 0.070422535211267609, 0.014084507042253521, 0.014084507042253521, 0.014084507042253521, 0.15384615384615385, 0.53846153846153844, 0.038461538461538464, 0.19230769230769232, 0.15384615384615385, 0.23076923076923078, 0.30769230769230771, 0.02564102564102564, 0.02564102564102564, 0.076923076923076927, 0.02564102564102564, 0.10256410256410256, 0.063829787234042548, 0.042553191489361701, 0.021276595744680851, 0.042553191489361701, 0.10638297872340426, 0.19148936170212766, 0.010638297872340425, 0.19148936170212766, 0.23404255319148937, 0.031914893617021274, 0.010638297872340425, 0.031914893617021274, 0.1875, 0.1875, 0.0625, 0.3125, 0.25, 0.10000000000000001, 0.10000000000000001, 0.033333333333333333, 0.033333333333333333, 0.13333333333333333, 0.23333333333333334, 0.26666666666666666, 0.033333333333333333, 0.033333333333333333, 0.033333333333333333, 0.19354838709677419, 0.032258064516129031, 0.064516129032258063, 0.096774193548387094, 0.22580645161290322, 0.19354838709677419, 0.064516129032258063, 0.032258064516129031, 0.064516129032258063, 0.21428571428571427, 0.2857142857142857, 0.42857142857142855, 0.035714285714285712, 0.29411764705882354, 0.47058823529411764, 0.058823529411764705, 0.17647058823529413, 0.35999999999999999, 0.28000000000000003, 0.040000000000000001, 0.29999999999999999, 0.090909090909090912, 0.40909090909090912, 0.20454545454545456, 0.11363636363636363, 0.090909090909090912, 0.068181818181818177, 0.022727272727272728, 0.20000000000000001, 0.40000000000000002, 0.050000000000000003, 0.20000000000000001, 0.14999999999999999, 0.22727272727272727, 0.090909090909090912, 0.090909090909090912, 0.18181818181818182, 0.13636363636363635, 0.090909090909090912, 0.18181818181818182, 0.050000000000000003, 0.25, 0.20000000000000001, 0.050000000000000003, 0.10000000000000001, 0.25, 0.050000000000000003, 0.076923076923076927, 0.84615384615384615, 0.90909090909090906, 0.045454545454545456, 0.125, 0.83333333333333337, 0.43681318681318682, 0.16758241758241757, 0.02197802197802198, 0.008241758241758242, 0.02197802197802198, 0.13186813186813187, 0.01098901098901099, 0.093406593406593408, 0.057692307692307696, 0.0054945054945054949, 0.0027472527472527475, 0.0027472527472527475, 0.0054945054945054949, 0.01098901098901099, 0.02197802197802198, 0.27272727272727271, 0.090909090909090912, 0.18181818181818182, 0.18181818181818182, 0.27272727272727271, 0.29411764705882354, 0.11764705882352941, 0.3235294117647059, 0.029411764705882353, 0.16176470588235295, 0.014705882352941176, 0.029411764705882353, 0.014705882352941176, 0.4375, 0.3125, 0.0625, 0.1875, 0.014705882352941176, 0.058823529411764705, 0.058823529411764705, 0.6029411764705882, 0.051470588235294115, 0.014705882352941176, 0.13970588235294118, 0.051470588235294115, 0.072992700729927001, 0.021897810218978103, 0.11678832116788321, 0.24817518248175183, 0.15328467153284672, 0.087591240875912413, 0.21167883211678831, 0.043795620437956206, 0.014598540145985401, 0.014598540145985401, 0.0072992700729927005, 0.30769230769230771, 0.63461538461538458, 0.019230769230769232, 0.25, 0.16666666666666666, 0.083333333333333329, 0.083333333333333329, 0.33333333333333331, 0.12658227848101267, 0.17721518987341772, 0.27848101265822783, 0.037974683544303799, 0.075949367088607597, 0.025316455696202531, 0.088607594936708861, 0.037974683544303799, 0.063291139240506333, 0.025316455696202531, 0.012658227848101266, 0.025316455696202531, 0.012658227848101266, 0.17857142857142858, 0.11160714285714286, 0.27232142857142855, 0.026785714285714284, 0.004464285714285714, 0.03125, 0.058035714285714288, 0.022321428571428572, 0.044642857142857144, 0.013392857142857142, 0.071428571428571425, 0.017857142857142856, 0.12946428571428573, 0.0089285714285714281, 0.004464285714285714, 0.11834319526627218, 0.04142011834319527, 0.071005917159763315, 0.059171597633136092, 0.071005917159763315, 0.13609467455621302, 0.053254437869822487, 0.04142011834319527, 0.26035502958579881, 0.023668639053254437, 0.011834319526627219, 0.0059171597633136093, 0.094674556213017749, 0.0059171597633136093, 0.0059171597633136093, 0.17073170731707318, 0.24390243902439024, 0.31707317073170732, 0.04878048780487805, 0.17073170731707318, 0.024390243902439025, 0.024390243902439025, 0.22222222222222221, 0.055555555555555552, 0.097222222222222224, 0.16666666666666666, 0.15277777777777779, 0.013888888888888888, 0.125, 0.027777777777777776, 0.013888888888888888, 0.027777777777777776, 0.027777777777777776, 0.041666666666666664, 0.013888888888888888, 0.013888888888888888, 0.33333333333333331, 0.52631578947368418, 0.017543859649122806, 0.017543859649122806, 0.017543859649122806, 0.017543859649122806, 0.035087719298245612, 0.052631578947368418, 0.052631578947368418, 0.052631578947368418, 0.78947368421052633, 0.34482758620689657, 0.10344827586206896, 0.068965517241379309, 0.34482758620689657, 0.034482758620689655, 0.068965517241379309, 0.125, 0.0625, 0.0625, 0.625, 0.0625, 0.34782608695652173, 0.34782608695652173, 0.021739130434782608, 0.043478260869565216, 0.10869565217391304, 0.065217391304347824, 0.021739130434782608, 0.083333333333333329, 0.16666666666666666, 0.58333333333333337, 0.083333333333333329, 0.083333333333333329, 0.16666666666666666, 0.33333333333333331, 0.055555555555555552, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.055555555555555552, 0.071428571428571425, 0.14285714285714285, 0.14285714285714285, 0.14285714285714285, 0.21428571428571427, 0.21428571428571427, 0.15384615384615385, 0.30769230769230771, 0.15384615384615385, 0.23076923076923078, 0.076923076923076927, 0.1402439024390244, 0.1402439024390244, 0.036585365853658534, 0.06097560975609756, 0.45731707317073172, 0.03048780487804878, 0.012195121951219513, 0.042682926829268296, 0.024390243902439025, 0.018292682926829267, 0.018292682926829267, 0.0060975609756097563, 0.24242424242424243, 0.27272727272727271, 0.18181818181818182, 0.060606060606060608, 0.030303030303030304, 0.030303030303030304, 0.090909090909090912, 0.030303030303030304, 0.50549450549450547, 0.14285714285714285, 0.01098901098901099, 0.087912087912087919, 0.032967032967032968, 0.01098901098901099, 0.032967032967032968, 0.02197802197802198, 0.13186813186813187, 0.02197802197802198, 0.096774193548387094, 0.096774193548387094, 0.032258064516129031, 0.74193548387096775, 0.041666666666666664, 0.041666666666666664, 0.083333333333333329, 0.70833333333333337, 0.083333333333333329, 0.15189873417721519, 0.51898734177215189, 0.044303797468354431, 0.044303797468354431, 0.012658227848101266, 0.025316455696202531, 0.018987341772151899, 0.018987341772151899, 0.0063291139240506328, 0.025316455696202531, 0.031645569620253167, 0.0063291139240506328, 0.025316455696202531, 0.050632911392405063, 0.013071895424836602, 0.95424836601307195, 0.013071895424836602, 0.013071895424836602, 0.14000000000000001, 0.35999999999999999, 0.02, 0.28000000000000003, 0.16, 0.02564102564102564, 0.076923076923076927, 0.38461538461538464, 0.33333333333333331, 0.10256410256410256, 0.02564102564102564, 0.02564102564102564, 0.11578947368421053, 0.010526315789473684, 0.021052631578947368, 0.010526315789473684, 0.010526315789473684, 0.094736842105263161, 0.5368421052631579, 0.16842105263157894, 0.021052631578947368, 0.095238095238095233, 0.55555555555555558, 0.095238095238095233, 0.22222222222222221, 0.14285714285714285, 0.15476190476190477, 0.11904761904761904, 0.10714285714285714, 0.047619047619047616, 0.071428571428571425, 0.035714285714285712, 0.15476190476190477, 0.023809523809523808, 0.083333333333333329, 0.023809523809523808, 0.011904761904761904, 0.15384615384615385, 0.030769230769230771, 0.030769230769230771, 0.061538461538461542, 0.69230769230769229, 0.090909090909090912, 0.045454545454545456, 0.045454545454545456, 0.090909090909090912, 0.27272727272727271, 0.45454545454545453, 0.2857142857142857, 0.16071428571428573, 0.17857142857142858, 0.071428571428571425, 0.053571428571428568, 0.053571428571428568, 0.089285714285714288, 0.017857142857142856, 0.035714285714285712, 0.017857142857142856, 0.017857142857142856, 0.26666666666666666, 0.066666666666666666, 0.13333333333333333, 0.26666666666666666, 0.066666666666666666, 0.066666666666666666, 0.13333333333333333, 0.041666666666666664, 0.41666666666666669, 0.5, 0.90909090909090906, 0.84615384615384615, 0.076923076923076927, 0.037735849056603772, 0.018867924528301886, 0.58490566037735847, 0.037735849056603772, 0.037735849056603772, 0.056603773584905662, 0.037735849056603772, 0.11320754716981132, 0.018867924528301886, 0.018867924528301886, 0.018867924528301886, 0.016129032258064516, 0.016129032258064516, 0.048387096774193547, 0.38709677419354838, 0.064516129032258063, 0.048387096774193547, 0.35483870967741937, 0.032258064516129031, 0.016129032258064516, 0.95930232558139539, 0.0058139534883720929, 0.0058139534883720929, 0.0058139534883720929, 0.0058139534883720929, 0.0051546391752577319, 0.92783505154639179, 0.010309278350515464, 0.0051546391752577319, 0.020618556701030927, 0.0051546391752577319, 0.010309278350515464, 0.0051546391752577319, 0.91666666666666663, 0.96153846153846156, 0.2857142857142857, 0.095238095238095233, 0.047619047619047616, 0.33333333333333331, 0.19047619047619047, 0.47619047619047616, 0.047619047619047616, 0.047619047619047616, 0.095238095238095233, 0.2857142857142857, 0.21801286633309508, 0.42172980700500357, 0.0085775553967119365, 0.037884203002144387, 0.014295925661186561, 0.0021443888491779841, 0.04431736954967834, 0.0042887776983559682, 0.01143674052894925, 0.005003573981415297, 0.093638313080771973, 0.10578984989278056, 0.00071479628305932811, 0.0228734810578985, 0.00071479628305932811, 0.0021443888491779841, 0.00071479628305932811, 0.0021443888491779841, 0.005003573981415297, 0.24620655898188937, 0.28781204111600589, 0.029368575624082231, 0.09006363191385218, 0.034263338228095935, 0.016152716593245228, 0.048947626040137054, 0.023984336759667158, 0.010279001468428781, 0.021047479197258932, 0.099363680861478218, 0.053842388644150758, 0.002936857562408223, 0.021536955457660302, 0.0063631913852178167, 0.00097895252080274116, 0.00048947626040137058, 0.0048947626040137049, 0.00097895252080274116, 0.055555555555555552, 0.22222222222222221, 0.083333333333333329, 0.30555555555555558, 0.027777777777777776, 0.27777777777777779, 0.055555555555555552, 0.40000000000000002, 0.066666666666666666, 0.26666666666666666, 0.066666666666666666, 0.16666666666666666, 0.12987012987012986, 0.16883116883116883, 0.20779220779220781, 0.11688311688311688, 0.03896103896103896, 0.20779220779220781, 0.03896103896103896, 0.064935064935064929, 0.025974025974025976, 0.0625, 0.125, 0.6875, 0.0625, 0.073637702503681887, 0.09720176730486009, 0.17673048600883653, 0.041237113402061855, 0.010309278350515464, 0.30044182621502208, 0.030927835051546393, 0.10014727540500737, 0.029455081001472753, 0.025036818851251842, 0.0014727540500736377, 0.0073637702503681884, 0.0014727540500736377, 0.0029455081001472753, 0.0014727540500736377, 0.07511045655375552, 0.022091310751104567, 0.0014727540500736377, 0.0014727540500736377, 0.24017467248908297, 0.16593886462882096, 0.08296943231441048, 0.039301310043668124, 0.017467248908296942, 0.22707423580786026, 0.034934497816593885, 0.078602620087336247, 0.069868995633187769, 0.0087336244541484712, 0.017467248908296942, 0.0043668122270742356, 0.0087336244541484712, 0.0025906735751295338, 0.0012953367875647669, 0.33549222797927464, 0.088082901554404139, 0.23056994818652848, 0.17292746113989638, 0.021373056994818652, 0.055051813471502592, 0.042746113989637305, 0.00064766839378238344, 0.00064766839378238344, 0.00064766839378238344, 0.011010362694300517, 0.0071243523316062178, 0.00064766839378238344, 0.0038860103626943004, 0.018134715025906734, 0.0051813471502590676, 0.0012953367875647669, 0.033707865168539325, 0.011235955056179775, 0.24719101123595505, 0.033707865168539325, 0.3707865168539326, 0.21348314606741572, 0.02247191011235955, 0.033707865168539325, 0.011235955056179775, 0.10269799825935597, 0.066144473455178418, 0.51261966927763269, 0.041775456919060053, 0.11575282854656223, 0.027850304612706701, 0.0391644908616188, 0.016536118363794605, 0.053959965187119235, 0.0008703220191470844, 0.0052219321148825066, 0.0008703220191470844, 0.0026109660574412533, 0.0034812880765883376, 0.0008703220191470844, 0.0017406440382941688, 0.0052219321148825066, 0.0017406440382941688, 0.0008703220191470844, 0.14473684210526316, 0.013157894736842105, 0.18421052631578946, 0.15789473684210525, 0.026315789473684209, 0.013157894736842105, 0.065789473684210523, 0.013157894736842105, 0.36842105263157893, 0.11764705882352941, 0.29411764705882354, 0.058823529411764705, 0.17647058823529413, 0.058823529411764705, 0.29411764705882354, 0.076923076923076927, 0.84615384615384615, 0.22371541501976286, 0.36126482213438738, 0.022134387351778657, 0.035573122529644272, 0.069565217391304349, 0.011857707509881422, 0.071936758893280633, 0.020553359683794466, 0.049802371541501973, 0.031620553359683792, 0.034782608695652174, 0.039525691699604744, 0.00079051383399209485, 0.011857707509881422, 0.0047430830039525695, 0.0023715415019762848, 0.0023715415019762848, 0.003952569169960474, 0.00079051383399209485, 0.33333333333333331, 0.54022988505747127, 0.068965517241379309, 0.022988505747126436, 0.022988505747126436, 0.1875, 0.75, 0.24637681159420291, 0.028985507246376812, 0.11594202898550725, 0.057971014492753624, 0.21739130434782608, 0.072463768115942032, 0.014492753623188406, 0.20289855072463769, 0.028985507246376812, 0.90909090909090906, 0.96875, 0.16666666666666666, 0.0066666666666666671, 0.10666666666666667, 0.15333333333333332, 0.56000000000000005, 0.15848527349228611, 0.035063113604488078, 0.1697054698457223, 0.029453015427769985, 0.021037868162692847, 0.02244039270687237, 0.012622720897615708, 0.042075736325385693, 0.096774193548387094, 0.098176718092566617, 0.26928471248246844, 0.033660589060308554, 0.0042075736325385693, 0.0014025245441795231, 0.0014025245441795231, 0.14473684210526316, 0.018421052631578946, 0.078947368421052627, 0.04736842105263158, 0.0078947368421052634, 0.028947368421052631, 0.018421052631578946, 0.078947368421052627, 0.042105263157894736, 0.04736842105263158, 0.41578947368421054, 0.036842105263157891, 0.010526315789473684, 0.005263157894736842, 0.002631578947368421, 0.002631578947368421, 0.23333333333333334, 0.10000000000000001, 0.10000000000000001, 0.5, 0.033333333333333333, 0.083333333333333329, 0.27777777777777779, 0.1111111111111111, 0.30555555555555558, 0.055555555555555552, 0.055555555555555552, 0.083333333333333329, 0.027777777777777776, 0.1111111111111111, 0.055555555555555552, 0.66666666666666663, 0.055555555555555552, 0.057142857142857141, 0.91428571428571426, 0.94444444444444442, 0.19047619047619047, 0.057142857142857141, 0.038095238095238099, 0.13333333333333333, 0.019047619047619049, 0.019047619047619049, 0.48571428571428571, 0.0095238095238095247, 0.028571428571428571, 0.36363636363636365, 0.33333333333333331, 0.060606060606060608, 0.15151515151515152, 0.030303030303030304, 0.23214285714285715, 0.75, 0.0089285714285714281, 0.2857142857142857, 0.42857142857142855, 0.071428571428571425, 0.14285714285714285, 0.071428571428571425, 0.23076923076923078, 0.076923076923076927, 0.46153846153846156, 0.076923076923076927, 0.076923076923076927, 0.16279069767441862, 0.023255813953488372, 0.13953488372093023, 0.16279069767441862, 0.046511627906976744, 0.2558139534883721, 0.13953488372093023, 0.046511627906976744, 0.090909090909090912, 0.63636363636363635, 0.090909090909090912, 0.083333333333333329, 0.083333333333333329, 0.041666666666666664, 0.66666666666666663, 0.083333333333333329, 0.14285714285714285, 0.028571428571428571, 0.085714285714285715, 0.17142857142857143, 0.085714285714285715, 0.2857142857142857, 0.028571428571428571, 0.11428571428571428, 0.057142857142857141, 0.083056478405315617, 0.0033222591362126247, 0.18272425249169436, 0.023255813953488372, 0.32225913621262459, 0.0033222591362126247, 0.33887043189368771, 0.0099667774086378731, 0.023255813953488372, 0.0033222591362126247, 0.0033222591362126247, 0.10642201834862386, 0.10642201834862386, 0.078899082568807344, 0.062385321100917435, 0.42018348623853213, 0.012844036697247707, 0.045871559633027525, 0.012844036697247707, 0.045871559633027525, 0.001834862385321101, 0.01834862385321101, 0.038532110091743121, 0.03669724770642202, 0.001834862385321101, 0.001834862385321101, 0.0055045871559633031, 0.001834862385321101, 0.91666666666666663, 0.27884615384615385, 0.31490384615384615, 0.043269230769230768, 0.040865384615384616, 0.060096153846153848, 0.016826923076923076, 0.10096153846153846, 0.033653846153846152, 0.0096153846153846159, 0.004807692307692308, 0.03125, 0.026442307692307692, 0.004807692307692308, 0.016826923076923076, 0.004807692307692308, 0.0072115384615384619, 0.002403846153846154, 0.27272727272727271, 0.27272727272727271, 0.090909090909090912, 0.27272727272727271, 0.071428571428571425, 0.2857142857142857, 0.2857142857142857, 0.14285714285714285, 0.14285714285714285, 0.1329639889196676, 0.094875346260387808, 0.18905817174515235, 0.076869806094182827, 0.045706371191135735, 0.10872576177285319, 0.060249307479224377, 0.15096952908587258, 0.027700831024930747, 0.025623268698060944, 0.02077562326869806, 0.027700831024930747, 0.011080332409972299, 0.0041551246537396124, 0.0034626038781163434, 0.0090027700831024939, 0.0055401662049861496, 0.0034626038781163434, 0.0020775623268698062, 0.17499999999999999, 0.17499999999999999, 0.1125, 0.17499999999999999, 0.13750000000000001, 0.125, 0.0625, 0.025000000000000001, 0.37931034482758619, 0.37931034482758619, 0.034482758620689655, 0.034482758620689655, 0.068965517241379309, 0.034482758620689655, 0.068965517241379309, 0.20143884892086331, 0.15107913669064749, 0.17266187050359713, 0.19424460431654678, 0.064748201438848921, 0.028776978417266189, 0.064748201438848921, 0.043165467625899283, 0.0071942446043165471, 0.014388489208633094, 0.028776978417266189, 0.021582733812949641, 0.0071942446043165471, 0.0071942446043165471, 0.125, 0.125, 0.041666666666666664, 0.375, 0.20833333333333334, 0.083333333333333329, 0.041666666666666664, 0.027223230490018149, 0.33938294010889292, 0.099818511796733206, 0.07441016333938294, 0.0090744101633393835, 0.027223230490018149, 0.019963702359346643, 0.31215970961887479, 0.010889292196007259, 0.027223230490018149, 0.039927404718693285, 0.0018148820326678765, 0.0072595281306715061, 0.032133676092544985, 0.070694087403598976, 0.53856041131105403, 0.091259640102827763, 0.016709511568123392, 0.084832904884318772, 0.02056555269922879, 0.014138817480719794, 0.011568123393316195, 0.0025706940874035988, 0.0012853470437017994, 0.0012853470437017994, 0.0012853470437017994, 0.098971722365038567, 0.0012853470437017994, 0.0077120822622107968, 0.0064267352185089976, 0.0012853470437017994, 0.0012853470437017994, 0.20454545454545456, 0.28846153846153844, 0.026223776223776224, 0.068181818181818177, 0.064685314685314688, 0.027972027972027972, 0.1381118881118881, 0.043706293706293704, 0.022727272727272728, 0.012237762237762238, 0.031468531468531472, 0.054195804195804193, 0.0034965034965034965, 0.005244755244755245, 0.006993006993006993, 0.0017482517482517483, 0.0017482517482517483, 0.30927835051546393, 0.60824742268041232, 0.020618556701030927, 0.010309278350515464, 0.020618556701030927, 0.024390243902439025, 0.024390243902439025, 0.097560975609756101, 0.12195121951219512, 0.36585365853658536, 0.31707317073170732, 0.04878048780487805, 0.12727272727272726, 0.10909090909090909, 0.38181818181818183, 0.054545454545454543, 0.072727272727272724, 0.20000000000000001, 0.018181818181818181, 0.018181818181818181, 0.32000000000000001, 0.16, 0.040000000000000001, 0.44, 0.14285714285714285, 0.14285714285714285, 0.42857142857142855, 0.14285714285714285, 0.14285714285714285, 0.92307692307692313, 0.97727272727272729, 0.20472440944881889, 0.23622047244094488, 0.12260967379077616, 0.12598425196850394, 0.029246344206974129, 0.038245219347581551, 0.026996625421822271, 0.011248593925759279, 0.012373453318335208, 0.06074240719910011, 0.052868391451068614, 0.0089988751406074249, 0.046119235095613047, 0.0044994375703037125, 0.0056242969628796397, 0.0033745781777277839, 0.0011248593925759281, 0.0089988751406074249, 0.171875, 0.640625, 0.046875, 0.0625, 0.015625, 0.046875, 0.16666666666666666, 0.70833333333333337, 0.041666666666666664, 0.041666666666666664, 0.090909090909090912, 0.090909090909090912, 0.72727272727272729, 0.090909090909090912, 0.53333333333333333, 0.066666666666666666, 0.066666666666666666, 0.26666666666666666, 0.25, 0.125, 0.125, 0.3125, 0.125, 0.4795539033457249, 0.20446096654275092, 0.01858736059479554, 0.0074349442379182153, 0.13011152416356878, 0.0074349442379182153, 0.07434944237918216, 0.022304832713754646, 0.03717472118959108, 0.011152416356877323, 0.080076263107721646, 0.19351763584366063, 0.080076263107721646, 0.10676835081029552, 0.029551954242135366, 0.32125834127740704, 0.020019065776930411, 0.10104861773117255, 0.010486177311725452, 0.0057197330791229741, 0.00095328884652049568, 0.002859866539561487, 0.0019065776930409914, 0.00095328884652049568, 0.0019065776930409914, 0.0085795996186844616, 0.032411820781696854, 0.0038131553860819827, 0.00095328884652049568, 0.086956521739130432, 0.043478260869565216, 0.30434782608695654, 0.13043478260869565, 0.39130434782608697, 0.043478260869565216, 0.15730337078651685, 0.0898876404494382, 0.20224719101123595, 0.0898876404494382, 0.056179775280898875, 0.1797752808988764, 0.0898876404494382, 0.078651685393258425, 0.033707865168539325, 0.011235955056179775, 0.011235955056179775, 0.011235955056179775, 0.23749999999999999, 0.087499999999999994, 0.037499999999999999, 0.10625, 0.068750000000000006, 0.056250000000000001, 0.1875, 0.050000000000000003, 0.03125, 0.050000000000000003, 0.043749999999999997, 0.012500000000000001, 0.0062500000000000003, 0.012500000000000001, 0.012500000000000001, 0.41666666666666669, 0.27777777777777779, 0.027777777777777776, 0.055555555555555552, 0.027777777777777776, 0.027777777777777776, 0.1111111111111111, 0.40000000000000002, 0.29999999999999999, 0.14999999999999999, 0.10000000000000001, 0.23076923076923078, 0.19230769230769232, 0.42307692307692307, 0.038461538461538464, 0.076923076923076927, 0.22938144329896906, 0.14948453608247422, 0.0025773195876288659, 0.0051546391752577319, 0.046391752577319589, 0.020618556701030927, 0.072164948453608241, 0.012886597938144329, 0.0025773195876288659, 0.015463917525773196, 0.42525773195876287, 0.010309278350515464, 0.0025773195876288659, 0.0025773195876288659, 0.3203125, 0.046875, 0.0078125, 0.0078125, 0.0078125, 0.1328125, 0.03125, 0.4375, 0.1728395061728395, 0.20987654320987653, 0.024691358024691357, 0.14814814814814814, 0.012345679012345678, 0.012345679012345678, 0.1111111111111111, 0.037037037037037035, 0.07407407407407407, 0.14814814814814814, 0.024691358024691357, 0.12820512820512819, 0.076923076923076927, 0.74358974358974361, 0.050000000000000003, 0.20000000000000001, 0.050000000000000003, 0.050000000000000003, 0.050000000000000003, 0.45000000000000001, 0.10000000000000001, 0.13861386138613863, 0.099009900990099015, 0.019801980198019802, 0.059405940594059403, 0.079207920792079209, 0.039603960396039604, 0.39603960396039606, 0.029702970297029702, 0.079207920792079209, 0.049504950495049507, 0.0099009900990099011, 0.0099009900990099011, 0.10869565217391304, 0.065217391304347824, 0.065217391304347824, 0.086956521739130432, 0.63043478260869568, 0.26315789473684209, 0.017543859649122806, 0.052631578947368418, 0.10526315789473684, 0.10526315789473684, 0.36842105263157893, 0.035087719298245612, 0.035087719298245612, 0.017543859649122806, 0.25542005420054198, 0.20596205962059622, 0.037940379403794036, 0.042682926829268296, 0.060298102981029812, 0.0088075880758807581, 0.039295392953929538, 0.0067750677506775072, 0.032520325203252036, 0.017615176151761516, 0.21680216802168023, 0.062330623306233061, 0.0027100271002710027, 0.0047425474254742545, 0.0020325203252032522, 0.00067750677506775068, 0.00067750677506775068, 0.0020325203252032522, 0.00067750677506775068, 0.10526315789473684, 0.82894736842105265, 0.039473684210526314, 0.013157894736842105, 0.076923076923076927, 0.23076923076923078, 0.076923076923076927, 0.23076923076923078, 0.15384615384615385, 0.15384615384615385, 0.076923076923076927, 0.28358208955223879, 0.5074626865671642, 0.029850746268656716, 0.089552238805970144, 0.074626865671641784, 0.84313725490196079, 0.078431372549019607, 0.039215686274509803, 0.81818181818181823, 0.090909090909090912, 0.93333333333333335, 0.090909090909090912, 0.81818181818181823, 0.54545454545454541, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.22222222222222221, 0.33333333333333331, 0.1111111111111111, 0.22222222222222221, 0.8666666666666667, 0.066666666666666666, 0.11538461538461539, 0.15384615384615385, 0.26923076923076922, 0.076923076923076927, 0.076923076923076927, 0.19230769230769232, 0.076923076923076927, 0.083333333333333329, 0.125, 0.083333333333333329, 0.5, 0.041666666666666664, 0.083333333333333329, 0.041666666666666664, 0.058823529411764705, 0.058823529411764705, 0.058823529411764705, 0.70588235294117652, 0.058823529411764705, 0.055555555555555552, 0.27777777777777779, 0.055555555555555552, 0.3888888888888889, 0.1111111111111111, 0.1111111111111111, 0.055555555555555552, 0.17237163814180928, 0.28117359413202936, 0.11124694376528117, 0.12469437652811736, 0.077017114914425422, 0.041564792176039117, 0.048899755501222497, 0.033007334963325183, 0.046454767726161368, 0.019559902200488997, 0.017114914425427872, 0.0012224938875305623, 0.013447432762836185, 0.0024449877750611247, 0.0012224938875305623, 0.0012224938875305623, 0.0012224938875305623, 0.003667481662591687, 0.0012224938875305623, 0.12121212121212122, 0.18181818181818182, 0.30303030303030304, 0.12121212121212122, 0.060606060606060608, 0.12121212121212122, 0.030303030303030304, 0.33333333333333331, 0.14285714285714285, 0.095238095238095233, 0.14285714285714285, 0.14285714285714285, 0.047619047619047616, 0.071428571428571425, 0.023809523809523808, 0.023809523809523808, 0.32500000000000001, 0.55000000000000004, 0.050000000000000003, 0.050000000000000003, 0.13333333333333333, 0.20000000000000001, 0.13333333333333333, 0.066666666666666666, 0.26666666666666666, 0.20000000000000001, 0.55555555555555558, 0.1111111111111111, 0.1111111111111111, 0.1111111111111111, 0.055555555555555552, 0.27272727272727271, 0.090909090909090912, 0.090909090909090912, 0.36363636363636365, 0.090909090909090912, 0.18181818181818182, 0.63636363636363635, 0.090909090909090912, 0.39015151515151514, 0.16287878787878787, 0.11363636363636363, 0.007575757575757576, 0.1553030303030303, 0.056818181818181816, 0.022727272727272728, 0.007575757575757576, 0.022727272727272728, 0.003787878787878788, 0.003787878787878788, 0.045454545454545456, 0.003787878787878788, 0.16438356164383561, 0.26027397260273971, 0.054794520547945202, 0.1095890410958904, 0.054794520547945202, 0.027397260273972601, 0.027397260273972601, 0.15068493150684931, 0.041095890410958902, 0.054794520547945202, 0.013698630136986301, 0.027397260273972601, 0.20183486238532111, 0.57798165137614677, 0.0091743119266055051, 0.01834862385321101, 0.073394495412844041, 0.013761467889908258, 0.0091743119266055051, 0.013761467889908258, 0.03669724770642202, 0.0091743119266055051, 0.013761467889908258, 0.0091743119266055051, 0.0045871559633027525, 0.0045871559633027525, 0.0045871559633027525, 0.22727272727272727, 0.52272727272727271, 0.022727272727272728, 0.022727272727272728, 0.045454545454545456, 0.045454545454545456, 0.045454545454545456, 0.045454545454545456, 0.22048364153627312, 0.45376955903271693, 0.012802275960170697, 0.029871977240398292, 0.068278805120910391, 0.012802275960170697, 0.025604551920341393, 0.011379800853485065, 0.029871977240398292, 0.051209103840682786, 0.022759601706970129, 0.0099573257467994308, 0.0028449502133712661, 0.029871977240398292, 0.0014224751066856331, 0.0028449502133712661, 0.0071123755334281651, 0.0042674253200568994, 0.0014224751066856331, 0.32258064516129031, 0.64516129032258063, 0.93877551020408168, 0.020408163265306121, 0.020408163265306121, 0.19548341566690192, 0.074805928016937195, 0.12914608327452365, 0.087508821453775587, 0.060691601976005649, 0.066337332392378268, 0.09456598447424136, 0.038814396612561752, 0.07621736062103035, 0.071983062808750886, 0.026817219477769938, 0.013408609738884969, 0.0098800282286520824, 0.0091743119266055051, 0.0070571630204657732, 0.0042342978122794639, 0.019760056457304165, 0.014114326040931546, 0.00070571630204657732, 0.07407407407407407, 0.037037037037037035, 0.037037037037037035, 0.092592592592592587, 0.12962962962962962, 0.07407407407407407, 0.16666666666666666, 0.18518518518518517, 0.12962962962962962, 0.018518518518518517, 0.018518518518518517, 0.13424657534246576, 0.12602739726027398, 0.13972602739726028, 0.13972602739726028, 0.15616438356164383, 0.060273972602739728, 0.095890410958904104, 0.052054794520547946, 0.0054794520547945206, 0.0027397260273972603, 0.019178082191780823, 0.038356164383561646, 0.013698630136986301, 0.0054794520547945206, 0.0027397260273972603, 0.0054794520547945206, 0.0027397260273972603, 0.1172069825436409, 0.13466334164588528, 0.25311720698254364, 0.22443890274314215, 0.043640897755610975, 0.071072319201995013, 0.012468827930174564, 0.042394014962593519, 0.0062344139650872821, 0.041147132169576058, 0.007481296758104738, 0.02369077306733167, 0.0049875311720698253, 0.0024937655860349127, 0.0024937655860349127, 0.0024937655860349127, 0.0012468827930174563, 0.003740648379052369, 0.007481296758104738, 0.90909090909090906, 0.17241379310344829, 0.20689655172413793, 0.2413793103448276, 0.20689655172413793, 0.17241379310344829, 0.032967032967032968, 0.036106750392464679, 0.67346938775510201, 0.014128728414442701, 0.04709576138147567, 0.036106750392464679, 0.0047095761381475663, 0.086342229199372053, 0.0047095761381475663, 0.040816326530612242, 0.0062794348508634227, 0.0078492935635792772, 0.0047095761381475663, 0.050156739811912224, 0.051724137931034482, 0.63166144200626961, 0.059561128526645767, 0.025078369905956112, 0.021943573667711599, 0.03918495297805643, 0.021943573667711599, 0.010971786833855799, 0.017241379310344827, 0.003134796238244514, 0.05329153605015674, 0.001567398119122257, 0.001567398119122257, 0.001567398119122257, 0.001567398119122257, 0.0047021943573667714, 0.16895200783545544, 0.18021547502448579, 0.091576885406464248, 0.06953966699314397, 0.050930460333006855, 0.071988246816846235, 0.12144955925563174, 0.049951028403525957, 0.079823702252693432, 0.044074436826640549, 0.023506366307541625, 0.01028403525954946, 0.0097943192948090115, 0.0048971596474045058, 0.0063663075416258569, 0.0048971596474045058, 0.0039177277179236044, 0.0058765915768854062, 0.0014691478942213516, 0.02359882005899705, 0.0029498525073746312, 0.15634218289085547, 0.067846607669616518, 0.53097345132743368, 0.0088495575221238937, 0.044247787610619468, 0.056047197640117993, 0.058997050147492625, 0.0058997050147492625, 0.02359882005899705, 0.0088495575221238937, 0.0029498525073746312, 0.045267489711934158, 0.028806584362139918, 0.090534979423868317, 0.11522633744855967, 0.40740740740740738, 0.00823045267489712, 0.16049382716049382, 0.012345679012345678, 0.090534979423868317, 0.00411522633744856, 0.028806584362139918, 0.22727272727272727, 0.068181818181818177, 0.022727272727272728, 0.11363636363636363, 0.068181818181818177, 0.022727272727272728, 0.11363636363636363, 0.045454545454545456, 0.27272727272727271, 0.46153846153846156, 0.46153846153846156, 0.076923076923076927, 0.20588235294117646, 0.35294117647058826, 0.088235294117647065, 0.014705882352941176, 0.16176470588235295, 0.029411764705882353, 0.073529411764705885, 0.044117647058823532, 0.029411764705882353, 0.053435114503816793, 0.053435114503816793, 0.35877862595419846, 0.091603053435114504, 0.030534351145038167, 0.068702290076335881, 0.022900763358778626, 0.12213740458015267, 0.0076335877862595417, 0.15267175572519084, 0.022900763358778626, 0.015267175572519083, 0.059907834101382486, 0.073732718894009217, 0.19354838709677419, 0.22580645161290322, 0.0092165898617511521, 0.059907834101382486, 0.0092165898617511521, 0.29493087557603687, 0.004608294930875576, 0.018433179723502304, 0.023041474654377881, 0.004608294930875576, 0.018433179723502304, 0.21212121212121213, 0.18181818181818182, 0.12121212121212122, 0.33333333333333331, 0.030303030303030304, 0.030303030303030304, 0.060606060606060608, 0.075884543761638737, 0.076815642458100561, 0.26629422718808193, 0.034450651769087522, 0.24022346368715083, 0.0065176908752327747, 0.072160148975791427, 0.0060521415270018619, 0.054469273743016758, 0.064711359404096835, 0.047020484171322159, 0.027001862197392923, 0.012569832402234637, 0.0041899441340782122, 0.0018621973929236499, 0.0018621973929236499, 0.0018621973929236499, 0.0032588454376163874, 0.0013966480446927375, 0.0013966480446927375, 0.2226027397260274, 0.11643835616438356, 0.12328767123287671, 0.11301369863013698, 0.037671232876712327, 0.030821917808219176, 0.089041095890410954, 0.034246575342465752, 0.020547945205479451, 0.092465753424657529, 0.054794520547945202, 0.017123287671232876, 0.010273972602739725, 0.0068493150684931503, 0.023972602739726026, 0.0068493150684931503, 0.0034246575342465752, 0.066666666666666666, 0.066666666666666666, 0.66666666666666663, 0.066666666666666666, 0.066666666666666666, 0.038461538461538464, 0.019230769230769232, 0.59615384615384615, 0.019230769230769232, 0.057692307692307696, 0.038461538461538464, 0.057692307692307696, 0.057692307692307696, 0.019230769230769232, 0.038461538461538464, 0.6428571428571429, 0.14285714285714285, 0.071428571428571425, 0.071428571428571425, 0.53846153846153844, 0.038461538461538464, 0.038461538461538464, 0.11538461538461539, 0.076923076923076927, 0.038461538461538464, 0.15384615384615385, 0.016129032258064516, 0.0069124423963133645, 0.17511520737327188, 0.14285714285714285, 0.004608294930875576, 0.034562211981566823, 0.046082949308755762, 0.50460829493087556, 0.029953917050691243, 0.011520737327188941, 0.002304147465437788, 0.002304147465437788, 0.004608294930875576, 0.0092165898617511521, 0.002304147465437788, 0.002304147465437788, 0.002304147465437788, 0.19402985074626866, 0.16417910447761194, 0.16417910447761194, 0.1044776119402985, 0.074626865671641784, 0.22388059701492538, 0.029850746268656716, 0.014925373134328358, 0.10000000000000001, 0.10000000000000001, 0.10000000000000001, 0.69999999999999996, 0.125, 0.025000000000000001, 0.025000000000000001, 0.80000000000000004, 0.022222222222222223, 0.044444444444444446, 0.57777777777777772, 0.044444444444444446, 0.044444444444444446, 0.022222222222222223, 0.15555555555555556, 0.044444444444444446, 0.022222222222222223, 0.90909090909090906, 0.14285714285714285, 0.015873015873015872, 0.15873015873015872, 0.079365079365079361, 0.12698412698412698, 0.14285714285714285, 0.031746031746031744, 0.15873015873015872, 0.063492063492063489, 0.015873015873015872, 0.063492063492063489, 0.052631578947368418, 0.34210526315789475, 0.52631578947368418, 0.026315789473684209, 0.026315789473684209, 0.026315789473684209, 0.53068181818181814, 0.14431818181818182, 0.067045454545454547, 0.010227272727272727, 0.13977272727272727, 0.018181818181818181, 0.0079545454545454537, 0.013636363636363636, 0.019318181818181818, 0.0022727272727272726, 0.030681818181818182, 0.0011363636363636363, 0.0011363636363636363, 0.0022727272727272726, 0.0022727272727272726, 0.0011363636363636363, 0.0034090909090909089, 0.0022727272727272726, 0.15527950310559005, 0.13664596273291926, 0.080745341614906832, 0.18633540372670807, 0.024844720496894408, 0.0062111801242236021, 0.20496894409937888, 0.018633540372670808, 0.031055900621118012, 0.043478260869565216, 0.024844720496894408, 0.055900621118012424, 0.018633540372670808, 0.0062111801242236021, 0.0062111801242236021, 0.23809523809523808, 0.0095238095238095247, 0.095238095238095233, 0.019047619047619049, 0.0095238095238095247, 0.057142857142857141, 0.028571428571428571, 0.0095238095238095247, 0.51428571428571423, 0.25, 0.089285714285714288, 0.25, 0.0625, 0.026785714285714284, 0.0089285714285714281, 0.089285714285714288, 0.035714285714285712, 0.089285714285714288, 0.0625, 0.017857142857142856, 0.0089285714285714281, 0.30645161290322581, 0.14516129032258066, 0.080645161290322578, 0.064516129032258063, 0.29032258064516131, 0.096774193548387094, 0.3534136546184739, 0.28112449799196787, 0.040160642570281124, 0.1646586345381526, 0.012048192771084338, 0.020080321285140562, 0.032128514056224897, 0.024096385542168676, 0.016064257028112448, 0.0080321285140562242, 0.012048192771084338, 0.0040160642570281121, 0.0080321285140562242, 0.016064257028112448, 0.21052631578947367, 0.15789473684210525, 0.10526315789473684, 0.10526315789473684, 0.21052631578947367, 0.10526315789473684, 0.052631578947368418, 0.125, 0.1875, 0.125, 0.0625, 0.125, 0.3125, 0.31034482758620691, 0.10344827586206896, 0.2413793103448276, 0.10344827586206896, 0.17241379310344829, 0.14893617021276595, 0.085106382978723402, 0.085106382978723402, 0.10638297872340426, 0.1702127659574468, 0.36170212765957449, 0.021276595744680851, 0.16, 0.35999999999999999, 0.080000000000000002, 0.040000000000000001, 0.23999999999999999, 0.040000000000000001, 0.040000000000000001, 0.015873015873015872, 0.015873015873015872, 0.15873015873015872, 0.079365079365079361, 0.60317460317460314, 0.047619047619047616, 0.063492063492063489, 0.037037037037037035, 0.33333333333333331, 0.037037037037037035, 0.18518518518518517, 0.25925925925925924, 0.07407407407407407, 0.19230769230769232, 0.38461538461538464, 0.15384615384615385, 0.19230769230769232, 0.22818791946308725, 0.14093959731543623, 0.11409395973154363, 0.10738255033557047, 0.080536912751677847, 0.16778523489932887, 0.033557046979865772, 0.053691275167785234, 0.033557046979865772, 0.020134228187919462, 0.0067114093959731542, 0.0067114093959731542, 0.0067114093959731542, 0.028571428571428571, 0.057142857142857141, 0.085714285714285715, 0.17142857142857143, 0.20000000000000001, 0.14285714285714285, 0.028571428571428571, 0.20000000000000001, 0.028571428571428571, 0.031746031746031744, 0.031746031746031744, 0.23809523809523808, 0.015873015873015872, 0.14285714285714285, 0.3968253968253968, 0.015873015873015872, 0.079365079365079361, 0.015873015873015872, 0.015873015873015872, 0.015873015873015872, 0.054466230936819175, 0.037037037037037035, 0.16775599128540306, 0.082788671023965144, 0.14596949891067537, 0.15250544662309368, 0.071895424836601302, 0.16557734204793029, 0.050108932461873638, 0.0021786492374727671, 0.017429193899782137, 0.019607843137254902, 0.0087145969498910684, 0.019607843137254902, 0.0043572984749455342, 0.0021786492374727671, 0.071428571428571425, 0.14285714285714285, 0.35714285714285715, 0.14285714285714285, 0.071428571428571425, 0.14285714285714285, 0.055555555555555552, 0.1111111111111111, 0.055555555555555552, 0.16666666666666666, 0.61111111111111116, 0.17136774880255454, 0.25172964342735499, 0.092070250133049494, 0.086748270356572649, 0.028206492815327302, 0.088344864289515698, 0.030867482703565728, 0.075039914848323577, 0.018094731240021287, 0.016498137307078234, 0.029803086748270355, 0.065992549228312936, 0.005854177754124534, 0.0021287919105907396, 0.013304949441192123, 0.014901543374135177, 0.0021287919105907396, 0.0037253858435337944, 0.0031931878658861094, 0.00053219797764768491, 0.04672192916352675, 0.070082893745290128, 0.13262999246420498, 0.08892238131122833, 0.053504144687264506, 0.18990203466465713, 0.020346646571213264, 0.27957799547852297, 0.024114544084400905, 0.0075357950263752827, 0.0030143180105501131, 0.027882441597588545, 0.0022607385079125848, 0.00075357950263752827, 0.0030143180105501131, 0.02637528259231349, 0.0075357950263752827, 0.014318010550113038, 0.0022607385079125848, 0.22727272727272727, 0.15909090909090909, 0.045454545454545456, 0.022727272727272728, 0.090909090909090912, 0.25, 0.15909090909090909, 0.27370517928286853, 0.2661354581673307, 0.062948207171314746, 0.046215139442231074, 0.078087649402390436, 0.08725099601593625, 0.064940239043824705, 0.022310756972111555, 0.028685258964143426, 0.011155378486055778, 0.0099601593625498006, 0.0071713147410358566, 0.0019920318725099601, 0.018326693227091632, 0.0047808764940239041, 0.0051792828685258965, 0.0055776892430278889, 0.0047808764940239041, 0.00079681274900398409, 0.11363636363636363, 0.03787878787878788, 0.060606060606060608, 0.022727272727272728, 0.74242424242424243, 0.007575757575757576, 0.13636363636363635, 0.045454545454545456, 0.72727272727272729, 0.16535433070866143, 0.031496062992125984, 0.047244094488188976, 0.086614173228346455, 0.062992125984251968, 0.57480314960629919, 0.015748031496062992, 0.007874015748031496, 0.32727272727272727, 0.25454545454545452, 0.036363636363636362, 0.10909090909090909, 0.036363636363636362, 0.036363636363636362, 0.054545454545454543, 0.054545454545454543, 0.018181818181818181, 0.018181818181818181, 0.036363636363636362, 0.022727272727272728, 0.068181818181818177, 0.022727272727272728, 0.022727272727272728, 0.86363636363636365, 0.16071428571428573, 0.18303571428571427, 0.0625, 0.21428571428571427, 0.071428571428571425, 0.058035714285714288, 0.071428571428571425, 0.013392857142857142, 0.004464285714285714, 0.040178571428571432, 0.058035714285714288, 0.026785714285714284, 0.0089285714285714281, 0.004464285714285714, 0.017857142857142856, 0.0089285714285714281, 0.17272727272727273, 0.13636363636363635, 0.0090909090909090905, 0.036363636363636362, 0.018181818181818181, 0.027272727272727271, 0.51818181818181819, 0.018181818181818181, 0.045454545454545456, 0.20761245674740483, 0.089965397923875437, 0.19031141868512111, 0.13494809688581316, 0.020761245674740483, 0.031141868512110725, 0.031141868512110725, 0.051903114186851208, 0.01384083044982699, 0.020761245674740483, 0.031141868512110725, 0.15916955017301038, 0.0034602076124567475, 0.0034602076124567475, 0.0034602076124567475, 0.14634146341463414, 0.3902439024390244, 0.024390243902439025, 0.12195121951219512, 0.024390243902439025, 0.21951219512195122, 0.024390243902439025, 0.024390243902439025, 0.28947368421052633, 0.57017543859649122, 0.008771929824561403, 0.12280701754385964, 0.13008130081300814, 0.17886178861788618, 0.16666666666666666, 0.13414634146341464, 0.15040650406504066, 0.1016260162601626, 0.016260162601626018, 0.012195121951219513, 0.0040650406504065045, 0.036585365853658534, 0.016260162601626018, 0.02032520325203252, 0.008130081300813009, 0.008130081300813009, 0.008130081300813009, 0.0040650406504065045, 0.052173913043478258, 0.078260869565217397, 0.060869565217391307, 0.42608695652173911, 0.23478260869565218, 0.026086956521739129, 0.034782608695652174, 0.0086956521739130436, 0.0086956521739130436, 0.017391304347826087, 0.0086956521739130436, 0.017391304347826087, 0.026086956521739129, 0.071090047393364927, 0.44549763033175355, 0.07582938388625593, 0.15165876777251186, 0.033175355450236969, 0.052132701421800945, 0.02843601895734597, 0.0094786729857819912, 0.0047393364928909956, 0.02843601895734597, 0.02843601895734597, 0.0094786729857819912, 0.033175355450236969, 0.0047393364928909956, 0.0094786729857819912, 0.0094786729857819912, 0.1076923076923077, 0.076923076923076927, 0.44615384615384618, 0.2153846153846154, 0.030769230769230771, 0.015384615384615385, 0.030769230769230771, 0.015384615384615385, 0.030769230769230771, 0.015384615384615385, 0.5, 0.25, 0.16666666666666666, 0.19852941176470587, 0.080882352941176475, 0.0073529411764705881, 0.044117647058823532, 0.0073529411764705881, 0.036764705882352942, 0.49264705882352944, 0.095588235294117641, 0.022058823529411766, 0.0073529411764705881, 0.15189873417721519, 0.25316455696202533, 0.037974683544303799, 0.012658227848101266, 0.088607594936708861, 0.41772151898734178, 0.012658227848101266, 0.18737270875763748, 0.5417515274949084, 0.0061099796334012219, 0.083503054989816694, 0.014256619144602852, 0.057026476578411409, 0.0020366598778004071, 0.036659877800407331, 0.018329938900203666, 0.032586558044806514, 0.0020366598778004071, 0.0061099796334012219, 0.0040733197556008143, 0.0040733197556008143, 0.0020366598778004071, 0.055555555555555552, 0.88888888888888884, 0.29268292682926828, 0.14634146341463414, 0.24390243902439024, 0.024390243902439025, 0.21951219512195122, 0.024390243902439025, 0.024390243902439025, 0.3125, 0.125, 0.1875, 0.03125, 0.1875, 0.0625, 0.03125, 0.13102893890675241, 0.094855305466237938, 0.14348874598070741, 0.18207395498392284, 0.025723472668810289, 0.16117363344051447, 0.014871382636655949, 0.054260450160771703, 0.020096463022508039, 0.099276527331189704, 0.014871382636655949, 0.014067524115755627, 0.015273311897106109, 0.012057877813504822, 0.0024115755627009648, 0.0048231511254019296, 0.00080385852090032153, 0.0024115755627009648, 0.0064308681672025723, 0.31111111111111112, 0.022222222222222223, 0.022222222222222223, 0.022222222222222223, 0.59999999999999998, 0.032673267326732675, 0.032178217821782179, 0.27920792079207923, 0.17821782178217821, 0.015841584158415842, 0.23811881188118811, 0.0064356435643564353, 0.088118811881188114, 0.02920792079207921, 0.019306930693069307, 0.0094059405940594056, 0.0064356435643564353, 0.02920792079207921, 0.0014851485148514852, 0.00049504950495049506, 0.0059405940594059407, 0.0024752475247524753, 0.0029702970297029703, 0.021287128712871289, 0.35714285714285715, 0.095238095238095233, 0.11904761904761904, 0.38095238095238093, 0.023809523809523808, 0.090909090909090912, 0.18181818181818182, 0.36363636363636365, 0.090909090909090912, 0.18181818181818182, 0.090909090909090912, 0.72463768115942029, 0.086956521739130432, 0.043478260869565216, 0.014492753623188406, 0.11594202898550725, 0.2857142857142857, 0.071428571428571425, 0.25, 0.071428571428571425, 0.25, 0.37765957446808512, 0.43085106382978722, 0.021276595744680851, 0.067375886524822695, 0.014184397163120567, 0.0088652482269503553, 0.017730496453900711, 0.010638297872340425, 0.014184397163120567, 0.0053191489361702126, 0.0017730496453900709, 0.012411347517730497, 0.0035460992907801418, 0.0070921985815602835, 0.0017730496453900709, 0.0035460992907801418, 0.083333333333333329, 0.875, 0.083333333333333329, 0.83333333333333337, 0.13333333333333333, 0.4777777777777778, 0.15555555555555556, 0.044444444444444446, 0.12222222222222222, 0.044444444444444446, 0.011111111111111112, 0.011111111111111112, 0.88235294117647056, 0.058823529411764705, 0.45454545454545453, 0.090909090909090912, 0.18181818181818182, 0.18181818181818182, 0.023255813953488372, 0.034883720930232558, 0.41860465116279072, 0.093023255813953487, 0.2441860465116279, 0.034883720930232558, 0.023255813953488372, 0.011627906976744186, 0.011627906976744186, 0.058139534883720929, 0.023255813953488372, 0.011627906976744186, 0.13513513513513514, 0.054054054054054057, 0.67567567567567566, 0.10810810810810811, 0.92307692307692313, 0.4523076923076923, 0.16307692307692306, 0.22153846153846155, 0.0061538461538461538, 0.098461538461538461, 0.0061538461538461538, 0.015384615384615385, 0.0030769230769230769, 0.024615384615384615, 0.23809523809523808, 0.095238095238095233, 0.14285714285714285, 0.19047619047619047, 0.095238095238095233, 0.14285714285714285, 0.047619047619047616, 0.42666666666666669, 0.32000000000000001, 0.013333333333333334, 0.080000000000000002, 0.013333333333333334, 0.013333333333333334, 0.066666666666666666, 0.040000000000000001, 0.013333333333333334, 0.10344827586206896, 0.034482758620689655, 0.31034482758620691, 0.31034482758620691, 0.068965517241379309, 0.10344827586206896, 0.034482758620689655, 0.034482758620689655, 0.076622742801366522, 0.12445095168374817, 0.32454856027330403, 0.11224987798926306, 0.071254270375793072, 0.1059053196681308, 0.034163006344558322, 0.062957540263543194, 0.020497803806734993, 0.016593460224499756, 0.012201073694485115, 0.0043923865300146414, 0.0092728160078086874, 0.0039043435822352368, 0.0009760858955588092, 0.0087847730600292828, 0.004880429477794046, 0.0019521717911176184, 0.0039043435822352368, 0.80952380952380953, 0.047619047619047616, 0.095238095238095233, 0.0088495575221238937, 0.66371681415929207, 0.088495575221238937, 0.044247787610619468, 0.061946902654867256, 0.026548672566371681, 0.0088495575221238937, 0.061946902654867256, 0.026548672566371681, 0.078947368421052627, 0.42105263157894735, 0.15789473684210525, 0.052631578947368418, 0.052631578947368418, 0.13157894736842105, 0.026315789473684209, 0.026315789473684209, 0.026315789473684209, 0.92307692307692313, 0.2961745367603108, 0.23042438732815301, 0.013448894202032277, 0.039748953974895397, 0.040645546921697549, 0.045427375971309025, 0.048117154811715482, 0.03257621040047818, 0.10161386730424388, 0.019426180514046622, 0.051404662283323369, 0.052600119545726243, 0.0017931858936043037, 0.0038852361028093247, 0.0098625224148236705, 0.0053795576808129113, 0.0032875074716078902, 0.0029886431560071729, 0.001195457262402869, 0.0005977286312014345, 0.073529411764705885, 0.036764705882352942, 0.0073529411764705881, 0.044117647058823532, 0.61764705882352944, 0.0073529411764705881, 0.073529411764705885, 0.11029411764705882, 0.014705882352941176, 0.0073529411764705881, 0.0073529411764705881, 0.086614173228346455, 0.13385826771653545, 0.15748031496062992, 0.38582677165354329, 0.055118110236220472, 0.007874015748031496, 0.007874015748031496, 0.07874015748031496, 0.03937007874015748, 0.023622047244094488, 0.007874015748031496, 0.007874015748031496, 0.007874015748031496, 0.3125, 0.0625, 0.5625, 0.13780918727915195, 0.028268551236749116, 0.0070671378091872791, 0.32862190812720848, 0.014134275618374558, 0.12014134275618374, 0.056537102473498232, 0.031802120141342753, 0.010600706713780919, 0.014134275618374558, 0.0035335689045936395, 0.0070671378091872791, 0.22968197879858657, 0.0035335689045936395, 0.18548387096774194, 0.016129032258064516, 0.034946236559139782, 0.37365591397849462, 0.026881720430107527, 0.16397849462365591, 0.043010752688172046, 0.091397849462365593, 0.016129032258064516, 0.0026881720430107529, 0.0053763440860215058, 0.0080645161290322578, 0.021505376344086023, 0.0026881720430107529, 0.013333333333333334, 0.59999999999999998, 0.040000000000000001, 0.013333333333333334, 0.13333333333333333, 0.16, 0.013333333333333334, 0.013333333333333334, 0.90909090909090906, 0.33333333333333331, 0.61111111111111116, 0.034482758620689655, 0.93103448275862066, 0.38709677419354838, 0.16129032258064516, 0.064516129032258063, 0.19354838709677419, 0.064516129032258063, 0.096774193548387094, 0.032258064516129031, 0.15384615384615385, 0.48717948717948717, 0.12820512820512819, 0.05128205128205128, 0.15384615384615385, 0.38461538461538464, 0.23076923076923078, 0.23076923076923078, 0.076923076923076927, 0.18518518518518517, 0.07407407407407407, 0.1111111111111111, 0.07407407407407407, 0.07407407407407407, 0.037037037037037035, 0.18518518518518517, 0.14814814814814814, 0.037037037037037035, 0.020504731861198739, 0.015772870662460567, 0.4227129337539432, 0.24921135646687698, 0.0031545741324921135, 0.034700315457413249, 0.0015772870662460567, 0.077287066246056788, 0.0031545741324921135, 0.052050473186119876, 0.0015772870662460567, 0.018927444794952682, 0.033123028391167195, 0.0015772870662460567, 0.022082018927444796, 0.0031545741324921135, 0.0031545741324921135, 0.034700315457413249, 0.064102564102564097, 0.0085470085470085479, 0.38461538461538464, 0.089743589743589744, 0.0811965811965812, 0.076923076923076927, 0.047008547008547008, 0.10256410256410256, 0.055555555555555552, 0.047008547008547008, 0.0042735042735042739, 0.01282051282051282, 0.0042735042735042739, 0.0085470085470085479, 0.0085470085470085479, 0.0042735042735042739, 0.0081855388813096858, 0.0054570259208731242, 0.41268758526603, 0.017053206002728513, 0.025920873124147339, 0.024556616643929059, 0.011596180081855388, 0.11732605729877217, 0.32060027285129605, 0.010914051841746248, 0.0027285129604365621, 0.0027285129604365621, 0.0075034106412005461, 0.0088676671214188273, 0.0020463847203274215, 0.0020463847203274215, 0.015688949522510234, 0.00068212824010914052, 0.0020463847203274215, 0.65474060822898028, 0.059033989266547404, 0.0089445438282647581, 0.0071556350626118068, 0.16100178890876565, 0.023255813953488372, 0.0035778175313059034, 0.0017889087656529517, 0.017889087656529516, 0.0053667262969588547, 0.0071556350626118068, 0.0017889087656529517, 0.041144901610017888, 0.0017889087656529517, 0.0035778175313059034, 0.0017889087656529517, 0.15017667844522969, 0.11872791519434629, 0.22402826855123675, 0.084805653710247356, 0.040282685512367494, 0.048409893992932863, 0.10176678445229682, 0.06148409893992933, 0.072791519434628971, 0.027915194346289751, 0.010954063604240283, 0.019434628975265017, 0.016254416961130742, 0.0060070671378091873, 0.0031802120141342758, 0.0031802120141342758, 0.0045936395759717313, 0.0031802120141342758, 0.0035335689045936395, 0.12264150943396226, 0.51886792452830188, 0.33962264150943394, 0.82608695652173914, 0.043478260869565216, 0.043478260869565216, 0.74315789473684213, 0.016842105263157894, 0.0021052631578947368, 0.023157894736842106, 0.0042105263157894736, 0.025263157894736842, 0.075789473684210532, 0.067368421052631577, 0.0063157894736842104, 0.0021052631578947368, 0.0021052631578947368, 0.0042105263157894736, 0.018947368421052633, 0.0063157894736842104, 0.5625, 0.03125, 0.0625, 0.28125, 0.03125, 0.27775928083902113, 0.20251373397702679, 0.10820709172631929, 0.088313634093557511, 0.082070917263192947, 0.012069252538704844, 0.047444647910770771, 0.025220575994672881, 0.022390544364907609, 0.035458631596470787, 0.036790411186948563, 0.021974363242883304, 0.005993008157149992, 0.003412685200599301, 0.0084900948892958211, 0.003745630098218745, 0.001997669385716664, 0.014732811719660396, 0.001248543366072915, 8.3236224404861e-05, 0.09154929577464789, 0.055164319248826289, 0.38380281690140844, 0.0046948356807511738, 0.012910798122065728, 0.041079812206572773, 0.019953051643192488, 0.022300469483568074, 0.16666666666666666, 0.039906103286384977, 0.02699530516431925, 0.097417840375586859, 0.015258215962441314, 0.0011737089201877935, 0.0070422535211267607, 0.0035211267605633804, 0.0011737089201877935, 0.0011737089201877935, 0.0046948356807511738, 0.071999999999999995, 0.104, 0.30399999999999999, 0.048000000000000001, 0.096000000000000002, 0.0080000000000000002, 0.0080000000000000002, 0.032000000000000001, 0.12, 0.024, 0.016, 0.112, 0.040000000000000001, 0.0080000000000000002, 0.055555555555555552, 0.16666666666666666, 0.66666666666666663, 0.21739130434782608, 0.21739130434782608, 0.086956521739130432, 0.21739130434782608, 0.043478260869565216, 0.043478260869565216, 0.13043478260869565, 0.25, 0.3203125, 0.046875, 0.0390625, 0.0859375, 0.0625, 0.09375, 0.015625, 0.046875, 0.015625, 0.015625, 0.45454545454545453, 0.18181818181818182, 0.18181818181818182, 0.18181818181818182, 0.46666666666666667, 0.066666666666666666, 0.40000000000000002, 0.17549668874172186, 0.13245033112582782, 0.062913907284768214, 0.052980132450331126, 0.029801324503311258, 0.0066225165562913907, 0.026490066225165563, 0.0066225165562913907, 0.19205298013245034, 0.023178807947019868, 0.16556291390728478, 0.09602649006622517, 0.0066225165562913907, 0.0099337748344370865, 0.0033112582781456954, 0.0066225165562913907, 0.0066225165562913907, 0.33235294117647057, 0.27941176470588236, 0.029411764705882353, 0.073529411764705885, 0.050000000000000003, 0.029411764705882353, 0.070588235294117646, 0.0029411764705882353, 0.0088235294117647058, 0.014705882352941176, 0.055882352941176473, 0.032352941176470591, 0.0058823529411764705, 0.0058823529411764705, 0.0058823529411764705, 0.28712871287128711, 0.054455445544554455, 0.024752475247524754, 0.14851485148514851, 0.034653465346534656, 0.069306930693069313, 0.074257425742574254, 0.10396039603960396, 0.014851485148514851, 0.049504950495049507, 0.084158415841584164, 0.014851485148514851, 0.0099009900990099011, 0.0049504950495049506, 0.0099009900990099011, 0.0099009900990099011, 0.035714285714285712, 0.035714285714285712, 0.21428571428571427, 0.6785714285714286, 0.18291839557399722, 0.21438450899031811, 0.11912171507607192, 0.16511065006915629, 0.056189488243430154, 0.043741355463347162, 0.072786998616874141, 0.037863070539419084, 0.025414937759336099, 0.035442600276625172, 0.0089903181189488236, 0.0058782849239280774, 0.013831258644536652, 0.0046680497925311202, 0.0024204702627939143, 0.0017289073305670815, 0.0046680497925311202, 0.0027662517289073307, 0.0017289073305670815, 0.00017289073305670817, 0.17793240556660039, 0.16302186878727634, 0.14115308151093439, 0.11829025844930417, 0.11332007952286283, 0.072564612326043734, 0.06560636182902585, 0.046719681908548708, 0.02186878727634195, 0.018886679920477135, 0.019880715705765408, 0.006958250497017893, 0.015904572564612324, 0.0059642147117296221, 0.00099403578528827028, 0.0059642147117296221, 0.00099403578528827028, 0.002982107355864811, 0.00099403578528827028, 0.10204081632653061, 0.12244897959183673, 0.14285714285714285, 0.61224489795918369, 0.030303030303030304, 0.27272727272727271, 0.33333333333333331, 0.15151515151515152, 0.12121212121212122, 0.030303030303030304, 0.23076923076923078, 0.076923076923076927, 0.15384615384615385, 0.38461538461538464, 0.076923076923076927, 0.063291139240506333, 0.025316455696202531, 0.40928270042194093, 0.084388185654008435, 0.029535864978902954, 0.11392405063291139, 0.10548523206751055, 0.084388185654008435, 0.025316455696202531, 0.0042194092827004216, 0.0084388185654008432, 0.021097046413502109, 0.0042194092827004216, 0.0084388185654008432, 0.0042194092827004216, 0.27160493827160492, 0.07407407407407407, 0.13580246913580246, 0.16049382716049382, 0.012345679012345678, 0.061728395061728392, 0.07407407407407407, 0.07407407407407407, 0.024691358024691357, 0.024691358024691357, 0.024691358024691357, 0.012345679012345678, 0.037037037037037035, 0.012345679012345678, 0.35294117647058826, 0.17647058823529413, 0.23529411764705882, 0.11764705882352941, 0.23076923076923078, 0.15384615384615385, 0.15384615384615385, 0.46153846153846156, 0.9285714285714286, 0.20833333333333334, 0.41666666666666669, 0.33333333333333331, 0.11475409836065574, 0.016393442622950821, 0.016393442622950821, 0.83606557377049184, 0.20000000000000001, 0.33333333333333331, 0.20000000000000001, 0.20000000000000001, 0.90909090909090906, 0.071428571428571425, 0.5, 0.071428571428571425, 0.2857142857142857, 0.33333333333333331, 0.2857142857142857, 0.23809523809523808, 0.047619047619047616, 0.047619047619047616, 0.63636363636363635, 0.27272727272727271, 0.3888888888888889, 0.27777777777777779, 0.055555555555555552, 0.16666666666666666, 0.018691588785046728, 0.028037383177570093, 0.85981308411214952, 0.084112149532710276, 0.018181818181818181, 0.077272727272727271, 0.36363636363636365, 0.013636363636363636, 0.027272727272727271, 0.036363636363636362, 0.018181818181818181, 0.10454545454545454, 0.19090909090909092, 0.0090909090909090905, 0.022727272727272728, 0.0090909090909090905, 0.027272727272727271, 0.0090909090909090905, 0.0090909090909090905, 0.0090909090909090905, 0.050000000000000003, 0.013636363636363636, 0.0045454545454545452, 0.44444444444444442, 0.22222222222222221, 0.1111111111111111, 0.1111111111111111, 0.52631578947368418, 0.31578947368421051, 0.052631578947368418, 0.052631578947368418, 0.0625, 0.0625, 0.4375, 0.375, 0.16666666666666666, 0.023809523809523808, 0.2857142857142857, 0.11904761904761904, 0.16666666666666666, 0.071428571428571425, 0.047619047619047616, 0.047619047619047616, 0.023809523809523808, 0.10526315789473684, 0.052631578947368418, 0.15789473684210525, 0.68421052631578949, 0.25, 0.29166666666666669, 0.041666666666666664, 0.25, 0.083333333333333329, 0.041666666666666664, 0.083333333333333329, 0.59999999999999998, 0.20000000000000001, 0.066666666666666666, 0.066666666666666666, 0.34210526315789475, 0.008771929824561403, 0.017543859649122806, 0.043859649122807015, 0.008771929824561403, 0.070175438596491224, 0.28947368421052633, 0.078947368421052627, 0.008771929824561403, 0.12280701754385964, 0.64912280701754388, 0.017543859649122806, 0.017543859649122806, 0.052631578947368418, 0.24561403508771928, 0.037037037037037035, 0.037037037037037035, 0.055555555555555552, 0.85185185185185186, 0.92307692307692313, 0.038461538461538464, 0.064171122994652413, 0.044919786096256686, 0.69411764705882351, 0.023529411764705882, 0.060962566844919783, 0.011764705882352941, 0.038502673796791446, 0.016042780748663103, 0.026737967914438502, 0.0010695187165775401, 0.0021390374331550803, 0.0053475935828877002, 0.0053475935828877002, 0.0010695187165775401, 0.0010695187165775401, 0.0010695187165775401, 0.0010695187165775401, 0.0021390374331550803, 0.30612244897959184, 0.14285714285714285, 0.081632653061224483, 0.040816326530612242, 0.36734693877551022, 0.020408163265306121, 0.020408163265306121, 0.14285714285714285, 0.14285714285714285, 0.25714285714285712, 0.31428571428571428, 0.028571428571428571, 0.028571428571428571, 0.057142857142857141, 0.0047619047619047623, 0.00059523809523809529, 0.53214285714285714, 0.042261904761904764, 0.045238095238095237, 0.12261904761904761, 0.02976190476190476, 0.11547619047619048, 0.039285714285714285, 0.0077380952380952384, 0.00059523809523809529, 0.0017857142857142857, 0.026190476190476191, 0.0035714285714285713, 0.0017857142857142857, 0.01488095238095238, 0.0035714285714285713, 0.0017857142857142857, 0.0059523809523809521, 0.0040816326530612249, 0.48163265306122449, 0.061224489795918366, 0.032653061224489799, 0.19591836734693877, 0.032653061224489799, 0.11836734693877551, 0.028571428571428571, 0.012244897959183673, 0.028571428571428571, 0.0040816326530612249, 0.21739130434782608, 0.043478260869565216, 0.13043478260869565, 0.17391304347826086, 0.065217391304347824, 0.043478260869565216, 0.10869565217391304, 0.13043478260869565, 0.021739130434782608, 0.043478260869565216, 0.53846153846153844, 0.076923076923076927, 0.34615384615384615, 0.36363636363636365, 0.090909090909090912, 0.090909090909090912, 0.36363636363636365, 0.25, 0.0625, 0.6875, 0.090909090909090912, 0.090909090909090912, 0.72727272727272729, 0.97560975609756095, 0.53968253968253965, 0.079365079365079361, 0.047619047619047616, 0.25396825396825395, 0.015873015873015872, 0.031746031746031744, 0.12, 0.040000000000000001, 0.28000000000000003, 0.35999999999999999, 0.040000000000000001, 0.040000000000000001, 0.040000000000000001, 0.080000000000000002, 0.92307692307692313, 0.19387755102040816, 0.15306122448979592, 0.040816326530612242, 0.17346938775510204, 0.091836734693877556, 0.081632653061224483, 0.01020408163265306, 0.091836734693877556, 0.020408163265306121, 0.040816326530612242, 0.040816326530612242, 0.030612244897959183, 0.020408163265306121, 0.01020408163265306, 0.41666666666666669, 0.083333333333333329, 0.25, 0.25, 0.81818181818181823, 0.090909090909090912, 0.95652173913043481, 0.9285714285714286, 0.058823529411764705, 0.058823529411764705, 0.70588235294117652, 0.11764705882352941, 0.090909090909090912, 0.36363636363636365, 0.18181818181818182, 0.27272727272727271, 0.090909090909090912, 0.20000000000000001, 0.074999999999999997, 0.29999999999999999, 0.050000000000000003, 0.375, 0.39941690962099125, 0.32944606413994171, 0.0087463556851311956, 0.043731778425655975, 0.029154518950437316, 0.020408163265306121, 0.061224489795918366, 0.029154518950437316, 0.046647230320699708, 0.0029154518950437317, 0.0029154518950437317, 0.0058309037900874635, 0.011661807580174927, 0.0087463556851311956, 0.0029154518950437317, 0.22500000000000001, 0.050000000000000003, 0.17499999999999999, 0.10000000000000001, 0.10000000000000001, 0.27500000000000002, 0.050000000000000003, 0.5490196078431373, 0.13725490196078433, 0.23529411764705882, 0.078431372549019607, 0.5714285714285714, 0.35714285714285715, 0.049822064056939501, 0.021352313167259787, 0.2597864768683274, 0.096085409252669035, 0.092526690391459068, 0.067615658362989328, 0.085409252669039148, 0.11743772241992882, 0.096085409252669035, 0.021352313167259787, 0.042704626334519574, 0.017793594306049824, 0.017793594306049824, 0.0035587188612099642, 0.0035587188612099642, 0.0035587188612099642, 0.10809102402022756, 0.12705436156763592, 0.18078381795195955, 0.030973451327433628, 0.041087231352718079, 0.014538558786346398, 0.023388116308470291, 0.034134007585335017, 0.14285714285714285, 0.029709228824273071, 0.19595448798988621, 0.02402022756005057, 0.012642225031605562, 0.01643489254108723, 0.0094816687737041723, 0.0018963337547408343, 0.0037926675094816687, 0.0037926675094816687, 0.00063211125158027818, 0.20000000000000001, 0.34000000000000002, 0.048571428571428571, 0.025714285714285714, 0.080000000000000002, 0.0028571428571428571, 0.062857142857142861, 0.011428571428571429, 0.0057142857142857143, 0.014285714285714285, 0.12857142857142856, 0.045714285714285714, 0.0028571428571428571, 0.0028571428571428571, 0.028571428571428571, 0.0028571428571428571, 0.75, 0.083333333333333329, 0.083333333333333329, 0.035714285714285712, 0.14285714285714285, 0.7857142857142857, 0.18181818181818182, 0.72727272727272729, 0.93333333333333335, 0.024952015355086371, 0.060460652591170824, 0.24280230326295585, 0.22936660268714013, 0.034548944337811902, 0.21689059500959693, 0.015355086372360844, 0.056621880998080618, 0.0067178502879078695, 0.04126679462571977, 0.0057581573896353169, 0.0019193857965451055, 0.028790786948176585, 0.00095969289827255275, 0.0019193857965451055, 0.003838771593090211, 0.007677543186180422, 0.003838771593090211, 0.016314779270633396, 0.35869565217391303, 0.27173913043478259, 0.043478260869565216, 0.14130434782608695, 0.021739130434782608, 0.032608695652173912, 0.010869565217391304, 0.043478260869565216, 0.010869565217391304, 0.043478260869565216, 0.16045845272206305, 0.20057306590257878, 0.10315186246418338, 0.34670487106017189, 0.02865329512893983, 0.022922636103151862, 0.014326647564469915, 0.034383954154727794, 0.022922636103151862, 0.0057306590257879654, 0.011461318051575931, 0.0028653295128939827, 0.034383954154727794, 0.0057306590257879654, 0.083333333333333329, 0.083333333333333329, 0.083333333333333329, 0.66666666666666663, 0.43835616438356162, 0.054794520547945202, 0.027397260273972601, 0.16438356164383561, 0.082191780821917804, 0.12328767123287671, 0.027397260273972601, 0.054794520547945202, 0.013698630136986301, 0.4375, 0.0625, 0.0625, 0.3125, 0.0625, 0.27272727272727271, 0.36363636363636365, 0.18181818181818182, 0.18181818181818182, 0.25, 0.33333333333333331, 0.16666666666666666, 0.083333333333333329, 0.041666666666666664, 0.125, 0.090909090909090912, 0.81818181818181823, 0.84375, 0.015625, 0.109375, 0.23076923076923078, 0.69230769230769229, 0.038461538461538464, 0.39534883720930231, 0.13953488372093023, 0.069767441860465115, 0.2558139534883721, 0.069767441860465115, 0.023255813953488372, 0.046511627906976744, 0.0047846889952153108, 0.22009569377990432, 0.42105263157894735, 0.14832535885167464, 0.090909090909090912, 0.0047846889952153108, 0.033492822966507178, 0.0095693779904306216, 0.0047846889952153108, 0.028708133971291867, 0.014354066985645933, 0.014354066985645933, 0.58823529411764708, 0.058823529411764705, 0.29411764705882354, 0.058823529411764705, 0.3125, 0.10416666666666667, 0.125, 0.125, 0.020833333333333332, 0.041666666666666664, 0.125, 0.041666666666666664, 0.020833333333333332, 0.020833333333333332, 0.041666666666666664, 0.14285714285714285, 0.35714285714285715, 0.071428571428571425, 0.14285714285714285, 0.21428571428571427, 0.17886178861788618, 0.10569105691056911, 0.11382113821138211, 0.032520325203252036, 0.016260162601626018, 0.065040650406504072, 0.4065040650406504, 0.008130081300813009, 0.032520325203252036, 0.016260162601626018, 0.008130081300813009, 0.090909090909090912, 0.045454545454545456, 0.63636363636363635, 0.18181818181818182, 0.14285714285714285, 0.17857142857142858, 0.35714285714285715, 0.21428571428571427, 0.071428571428571425, 0.14779270633397312, 0.28214971209213052, 0.040307101727447218, 0.08253358925143954, 0.051823416506717852, 0.036468330134357005, 0.059500959692898273, 0.095969289827255277, 0.071017274472168906, 0.021113243761996161, 0.013435700575815739, 0.040307101727447218, 0.0057581573896353169, 0.003838771593090211, 0.017274472168905951, 0.0057581573896353169, 0.0095969289827255271, 0.011516314779270634, 0.0019193857965451055, 0.13043478260869565, 0.086956521739130432, 0.65217391304347827, 0.086956521739130432, 0.38461538461538464, 0.53846153846153844, 0.13043478260869565, 0.82608695652173914, 0.23076923076923078, 0.30769230769230771, 0.23076923076923078, 0.076923076923076927, 0.076923076923076927, 0.058823529411764705, 0.41176470588235292, 0.35294117647058826, 0.058823529411764705, 0.058823529411764705, 0.44262295081967212, 0.18852459016393441, 0.024590163934426229, 0.016393442622950821, 0.040983606557377046, 0.024590163934426229, 0.24590163934426229, 0.17647058823529413, 0.23529411764705882, 0.17647058823529413, 0.29411764705882354, 0.20000000000000001, 0.25, 0.050000000000000003, 0.050000000000000003, 0.34999999999999998, 0.21031941031941032, 0.22555282555282555, 0.14004914004914004, 0.044717444717444717, 0.059950859950859949, 0.070761670761670767, 0.060442260442260441, 0.032923832923832927, 0.057493857493857492, 0.018673218673218674, 0.027027027027027029, 0.0083538083538083532, 0.0093366093366093368, 0.0073710073710073713, 0.0039312039312039311, 0.0029484029484029483, 0.017690417690417692, 0.0014742014742014742, 0.00098280098280098278, 0.16883116883116883, 0.44805194805194803, 0.032467532467532464, 0.0064935064935064939, 0.03896103896103896, 0.012987012987012988, 0.1038961038961039, 0.01948051948051948, 0.0064935064935064939, 0.025974025974025976, 0.12337662337662338, 0.36981132075471695, 0.17735849056603772, 0.052830188679245285, 0.011320754716981131, 0.20754716981132076, 0.041509433962264149, 0.026415094339622643, 0.0037735849056603774, 0.022641509433962263, 0.0075471698113207548, 0.0037735849056603774, 0.071698113207547168, 0.22535211267605634, 0.22535211267605634, 0.014084507042253521, 0.12676056338028169, 0.14084507042253522, 0.028169014084507043, 0.014084507042253521, 0.11267605633802817, 0.070422535211267609, 0.014084507042253521, 0.014084507042253521, 0.352112676056338, 0.28169014084507044, 0.028169014084507043, 0.070422535211267609, 0.042253521126760563, 0.056338028169014086, 0.15492957746478872, 0.3253012048192771, 0.30120481927710846, 0.072289156626506021, 0.084337349397590355, 0.012048192771084338, 0.084337349397590355, 0.012048192771084338, 0.03614457831325301, 0.048192771084337352, 0.012048192771084338, 0.10909090909090909, 0.036363636363636362, 0.054545454545454543, 0.20000000000000001, 0.054545454545454543, 0.21818181818181817, 0.054545454545454543, 0.090909090909090912, 0.036363636363636362, 0.036363636363636362, 0.054545454545454543, 0.018181818181818181, 0.25, 0.41666666666666669, 0.083333333333333329, 0.16666666666666666, 0.14999999999999999, 0.14999999999999999, 0.25, 0.14999999999999999, 0.10000000000000001, 0.10000000000000001, 0.26666666666666666, 0.59999999999999998, 0.066666666666666666, 0.45000000000000001, 0.016666666666666666, 0.033333333333333333, 0.016666666666666666, 0.20000000000000001, 0.083333333333333329, 0.13333333333333333, 0.033333333333333333, 0.016666666666666666, 0.22535211267605634, 0.084507042253521125, 0.15492957746478872, 0.084507042253521125, 0.15492957746478872, 0.028169014084507043, 0.19718309859154928, 0.014084507042253521, 0.014084507042253521, 0.014084507042253521, 0.092105263157894732, 0.078947368421052627, 0.34210526315789475, 0.013157894736842105, 0.30263157894736842, 0.026315789473684209, 0.013157894736842105, 0.039473684210526314, 0.065789473684210523, 0.013157894736842105, 0.034482758620689655, 0.086206896551724144, 0.15517241379310345, 0.051724137931034482, 0.15517241379310345, 0.051724137931034482, 0.068965517241379309, 0.086206896551724144, 0.25862068965517243, 0.017241379310344827, 0.017241379310344827, 0.017241379310344827, 0.11210762331838565, 0.044843049327354258, 0.13452914798206278, 0.062780269058295965, 0.10762331838565023, 0.11659192825112108, 0.13004484304932734, 0.053811659192825115, 0.089686098654708515, 0.0089686098654708519, 0.0089686098654708519, 0.10762331838565023, 0.0044843049327354259, 0.013452914798206279, 0.036727879799666109, 0.045075125208681135, 0.42904841402337229, 0.018363939899833055, 0.34223706176961605, 0.0083472454090150246, 0.036727879799666109, 0.0083472454090150246, 0.035058430717863104, 0.0016694490818030051, 0.0083472454090150246, 0.021702838063439065, 0.0016694490818030051, 0.0033388981636060101, 0.22222222222222221, 0.37037037037037035, 0.037037037037037035, 0.22222222222222221, 0.037037037037037035, 0.037037037037037035, 0.25418833044482958, 0.14789139225880993, 0.18139803581744657, 0.020219526285384173, 0.1606008087810514, 0.047371461582900058, 0.082033506643558643, 0.031773541305603697, 0.034662045060658578, 0.0069324090121317154, 0.0028885037550548816, 0.0011554015020219526, 0.0023108030040439051, 0.023685730791450029, 0.00057770075101097628, 0.0011554015020219526, 0.00057770075101097628, 0.00057770075101097628, 0.0017331022530329288, 0.24714828897338403, 0.18916349809885932, 0.082699619771863117, 0.030418250950570342, 0.19866920152091255, 0.073193916349809887, 0.052281368821292779, 0.027566539923954372, 0.025665399239543727, 0.0038022813688212928, 0.006653992395437262, 0.0047528517110266158, 0.0095057034220532317, 0.043726235741444866, 0.00095057034220532319, 0.00095057034220532319, 0.00095057034220532319, 0.0019011406844106464, 0.00095057034220532319, 0.082926829268292687, 0.039024390243902439, 0.37560975609756098, 0.0097560975609756097, 0.22926829268292684, 0.053658536585365853, 0.0097560975609756097, 0.043902439024390241, 0.04878048780487805, 0.014634146341463415, 0.087804878048780483, 0.024390243902439025, 0.3048780487804878, 0.06097560975609756, 0.10975609756097561, 0.28048780487804881, 0.06097560975609756, 0.085365853658536592, 0.012195121951219513, 0.024390243902439025, 0.024390243902439025, 0.012195121951219513, 0.21428571428571427, 0.25, 0.10714285714285714, 0.17857142857142858, 0.035714285714285712, 0.10714285714285714, 0.035714285714285712, 0.071428571428571425, 0.27333333333333332, 0.69333333333333336, 0.02, 0.0066666666666666671, 0.097560975609756101, 0.48780487804878048, 0.024390243902439025, 0.1951219512195122, 0.024390243902439025, 0.12195121951219512, 0.9285714285714286, 0.5074135090609555, 0.32125205930807249, 0.0032948929159802307, 0.0098846787479406912, 0.013179571663920923, 0.011532125205930808, 0.054365733113673806, 0.0098846787479406912, 0.0016474464579901153, 0.0065897858319604614, 0.0016474464579901153, 0.054365733113673806, 0.0016474464579901153, 0.0016474464579901153, 0.27272727272727271, 0.090909090909090912, 0.045454545454545456, 0.22727272727272727, 0.090909090909090912, 0.045454545454545456, 0.090909090909090912, 0.18181818181818182, 0.47058823529411764, 0.47058823529411764, 0.058823529411764705, 0.028571428571428571, 0.20000000000000001, 0.11428571428571428, 0.22857142857142856, 0.14285714285714285, 0.057142857142857141, 0.057142857142857141, 0.085714285714285715, 0.028571428571428571, 0.057142857142857141, 0.028571428571428571, 0.14285714285714285, 0.071428571428571425, 0.2857142857142857, 0.14285714285714285, 0.2857142857142857, 0.1875, 0.6875, 0.03125, 0.0625, 0.087398373983739841, 0.0060975609756097563, 0.065040650406504072, 0.18292682926829268, 0.22154471544715448, 0.0508130081300813, 0.34146341463414637, 0.008130081300813009, 0.012195121951219513, 0.0020325203252032522, 0.0020325203252032522, 0.0020325203252032522, 0.0040650406504065045, 0.008130081300813009, 0.0020325203252032522, 0.0020325203252032522, 0.11953727506426735, 0.19408740359897173, 0.080976863753213363, 0.13367609254498714, 0.33676092544987146, 0.0077120822622107968, 0.070694087403598976, 0.0064267352185089976, 0.0077120822622107968, 0.0025706940874035988, 0.0012853470437017994, 0.0077120822622107968, 0.0077120822622107968, 0.017994858611825194, 0.0012853470437017994, 0.0012853470437017994, 0.0012853470437017994, 0.0012853470437017994, 0.090909090909090912, 0.12121212121212122, 0.030303030303030304, 0.60606060606060608, 0.090909090909090912, 0.060606060606060608, 0.5, 0.14285714285714285, 0.21428571428571427, 0.071428571428571425, 0.75, 0.16666666666666666, 0.22727272727272727, 0.090909090909090912, 0.045454545454545456, 0.045454545454545456, 0.090909090909090912, 0.45454545454545453, 0.057142857142857141, 0.77142857142857146, 0.14285714285714285, 0.016985138004246284, 0.0084925690021231421, 0.80679405520169856, 0.004246284501061571, 0.059447983014861996, 0.027600849256900213, 0.0084925690021231421, 0.025477707006369428, 0.031847133757961783, 0.0021231422505307855, 0.0021231422505307855, 0.0021231422505307855, 0.0021231422505307855, 0.0021231422505307855, 0.0021231422505307855, 0.125, 0.20833333333333334, 0.041666666666666664, 0.25, 0.125, 0.16666666666666666, 0.083333333333333329, 0.9285714285714286, 0.090909090909090912, 0.090909090909090912, 0.27272727272727271, 0.090909090909090912, 0.18181818181818182, 0.18181818181818182, 0.58333333333333337, 0.083333333333333329, 0.083333333333333329, 0.083333333333333329, 0.083333333333333329, 0.086956521739130432, 0.043478260869565216, 0.2608695652173913, 0.21739130434782608, 0.043478260869565216, 0.043478260869565216, 0.17391304347826086, 0.071428571428571425, 0.14285714285714285, 0.6428571428571429, 0.071428571428571425, 0.035714285714285712, 0.035714285714285712, 0.40000000000000002, 0.45000000000000001, 0.050000000000000003, 0.025000000000000001, 0.074999999999999997, 0.44497607655502391, 0.291866028708134, 0.033492822966507178, 0.052631578947368418, 0.076555023923444973, 0.0047846889952153108, 0.0047846889952153108, 0.014354066985645933, 0.014354066985645933, 0.0095693779904306216, 0.0095693779904306216, 0.014354066985645933, 0.0047846889952153108, 0.0095693779904306216, 0.0047846889952153108, 0.90909090909090906, 0.21428571428571427, 0.071428571428571425, 0.5, 0.21428571428571427, 0.66666666666666663, 0.083333333333333329, 0.083333333333333329, 0.041666666666666664, 0.083333333333333329, 0.052631578947368418, 0.63157894736842102, 0.10526315789473684, 0.15789473684210525, 0.23999999999999999, 0.040000000000000001, 0.64000000000000001, 0.040000000000000001, 0.47058823529411764, 0.058823529411764705, 0.11764705882352941, 0.11764705882352941, 0.058823529411764705, 0.058823529411764705, 0.11706349206349206, 0.13492063492063491, 0.25198412698412698, 0.079365079365079361, 0.061507936507936505, 0.097222222222222224, 0.079365079365079361, 0.053571428571428568, 0.02976190476190476, 0.025793650793650792, 0.03968253968253968, 0.003968253968253968, 0.003968253968253968, 0.001984126984126984, 0.001984126984126984, 0.003968253968253968, 0.0059523809523809521, 0.0059523809523809521, 0.078947368421052627, 0.28947368421052633, 0.026315789473684209, 0.22368421052631579, 0.065789473684210523, 0.092105263157894732, 0.14473684210526316, 0.026315789473684209, 0.026315789473684209, 0.013157894736842105, 0.013157894736842105, 0.26666666666666666, 0.14999999999999999, 0.016666666666666666, 0.033333333333333333, 0.14999999999999999, 0.050000000000000003, 0.23333333333333334, 0.033333333333333333, 0.050000000000000003, 0.42780748663101603, 0.053475935828877004, 0.0106951871657754, 0.021390374331550801, 0.0053475935828877002, 0.0106951871657754, 0.042780748663101602, 0.0053475935828877002, 0.40106951871657753, 0.0053475935828877002, 0.36842105263157893, 0.052631578947368418, 0.21052631578947367, 0.10526315789473684, 0.21052631578947367, 0.1910569105691057, 0.14227642276422764, 0.081300813008130079, 0.1951219512195122, 0.065040650406504072, 0.097560975609756101, 0.028455284552845527, 0.052845528455284556, 0.016260162601626018, 0.008130081300813009, 0.044715447154471545, 0.032520325203252036, 0.0040650406504065045, 0.012195121951219513, 0.008130081300813009, 0.012195121951219513, 0.0040650406504065045, 0.008130081300813009, 0.14457831325301204, 0.28112449799196787, 0.12851405622489959, 0.084337349397590355, 0.072289156626506021, 0.12851405622489959, 0.0040160642570281121, 0.052208835341365459, 0.032128514056224897, 0.012048192771084338, 0.028112449799196786, 0.0080321285140562242, 0.0080321285140562242, 0.012048192771084338, 0.0040160642570281121, 0.27272727272727271, 0.36363636363636365, 0.18181818181818182, 0.090909090909090912, 0.055555555555555552, 0.055555555555555552, 0.27777777777777779, 0.3888888888888889, 0.1111111111111111, 0.055555555555555552, 0.16666666666666666, 0.25, 0.41666666666666669, 0.16666666666666666, 0.31844660194174756, 0.60388349514563111, 0.02524271844660194, 0.0019417475728155339, 0.0038834951456310678, 0.013592233009708738, 0.0077669902912621356, 0.011650485436893204, 0.0019417475728155339, 0.0019417475728155339, 0.0038834951456310678, 0.29528246942341291, 0.32731508444962143, 0.054746651135701804, 0.068142108328479903, 0.019801980198019802, 0.086196854979615614, 0.0646476412347117, 0.0203843913803145, 0.013977868375072802, 0.0046592894583576006, 0.011065812463599301, 0.0058241118229470003, 0.0011648223645894002, 0.012230634828188701, 0.0058241118229470003, 0.0023296447291788003, 0.00058241118229470008, 0.0034944670937682005, 0.0023296447291788003, 0.23801220575414123, 0.020052310374891021, 0.094158674803836093, 0.12554489973844812, 0.082824760244115087, 0.1839581517000872, 0.12641673931996514, 0.054054054054054057, 0.013949433304272014, 0.00087183958151700091, 0.00087183958151700091, 0.0026155187445510027, 0.00087183958151700091, 0.0087183958151700082, 0.00087183958151700091, 0.0034873583260680036, 0.02964254577157803, 0.0095902353966870104, 0.0043591979075850041, 0.22222222222222221, 0.22222222222222221, 0.16666666666666666, 0.33333333333333331, 0.055555555555555552, 0.95833333333333337, 0.11764705882352941, 0.52941176470588236, 0.058823529411764705, 0.17647058823529413, 0.058823529411764705, 0.94736842105263153, 0.03870967741935484, 0.0032258064516129032, 0.0064516129032258064, 0.012903225806451613, 0.08387096774193549, 0.83225806451612905, 0.0032258064516129032, 0.0032258064516129032, 0.0032258064516129032, 0.0032258064516129032, 0.36666666666666664, 0.36666666666666664, 0.033333333333333333, 0.033333333333333333, 0.033333333333333333, 0.066666666666666666, 0.033333333333333333, 0.16666666666666666, 0.055555555555555552, 0.66666666666666663, 0.15151515151515152, 0.030303030303030304, 0.030303030303030304, 0.12121212121212122, 0.18181818181818182, 0.060606060606060608, 0.12121212121212122, 0.21212121212121213, 0.060606060606060608, 0.21052631578947367, 0.47368421052631576, 0.10526315789473684, 0.15789473684210525, 0.13043478260869565, 0.69565217391304346, 0.086956521739130432, 0.043478260869565216, 0.22413793103448276, 0.17241379310344829, 0.20689655172413793, 0.017241379310344827, 0.034482758620689655, 0.10344827586206896, 0.034482758620689655, 0.068965517241379309, 0.10344827586206896, 0.13725490196078433, 0.35294117647058826, 0.058823529411764705, 0.11764705882352941, 0.058823529411764705, 0.019607843137254902, 0.21568627450980393, 0.039215686274509803, 0.72727272727272729, 0.090909090909090912, 0.090909090909090912, 0.33093525179856115, 0.32374100719424459, 0.043165467625899283, 0.079136690647482008, 0.057553956834532377, 0.043165467625899283, 0.0071942446043165471, 0.014388489208633094, 0.021582733812949641, 0.043165467625899283, 0.0071942446043165471, 0.0071942446043165471, 0.04398826979472141, 0.017595307917888565, 0.38416422287390029, 0.011730205278592375, 0.39882697947214074, 0.055718475073313782, 0.032258064516129031, 0.017595307917888565, 0.020527859237536656, 0.0029325513196480938, 0.0029325513196480938, 0.0058651026392961877, 0.0029325513196480938, 0.066666666666666666, 0.26666666666666666, 0.20000000000000001, 0.26666666666666666, 0.066666666666666666, 0.083333333333333329, 0.083333333333333329, 0.41666666666666669, 0.16666666666666666, 0.083333333333333329, 0.083333333333333329, 0.083333333333333329, 0.45500000000000002, 0.28499999999999998, 0.070000000000000007, 0.029999999999999999, 0.0050000000000000001, 0.02, 0.025000000000000001, 0.014999999999999999, 0.029999999999999999, 0.01, 0.035000000000000003, 0.0050000000000000001, 0.0050000000000000001, 0.2857142857142857, 0.16071428571428573, 0.035714285714285712, 0.17857142857142858, 0.10714285714285714, 0.071428571428571425, 0.125, 0.017857142857142856, 0.83108108108108103, 0.084459459459459457, 0.054054054054054057, 0.0067567567567567571, 0.016891891891891893, 0.89000000000000001, 0.070000000000000007, 0.01, 0.96969696969696972, 0.32000000000000001, 0.12, 0.52000000000000002, 0.36144578313253012, 0.21686746987951808, 0.048192771084337352, 0.060240963855421686, 0.012048192771084338, 0.18072289156626506, 0.012048192771084338, 0.012048192771084338, 0.012048192771084338, 0.060240963855421686, 0.7142857142857143, 0.21428571428571427, 0.69230769230769229, 0.15384615384615385, 0.076923076923076927, 0.37201365187713309, 0.14163822525597269, 0.058020477815699661, 0.027303754266211604, 0.0017064846416382253, 0.24402730375426621, 0.035836177474402729, 0.08191126279863481, 0.0017064846416382253, 0.0017064846416382253, 0.0051194539249146756, 0.0017064846416382253, 0.0017064846416382253, 0.0017064846416382253, 0.0034129692832764505, 0.022184300341296929, 0.58333333333333337, 0.33333333333333331, 0.21890547263681592, 0.0049751243781094526, 0.23383084577114427, 0.0099502487562189053, 0.024875621890547265, 0.41293532338308458, 0.0845771144278607, 0.12195121951219512, 0.073170731707317069, 0.56097560975609762, 0.1951219512195122, 0.30769230769230771, 0.23076923076923078, 0.30769230769230771, 0.11538461538461539, 0.11138014527845036, 0.10411622276029056, 0.19612590799031476, 0.065375302663438259, 0.041162227602905568, 0.16222760290556901, 0.012106537530266344, 0.065375302663438259, 0.11380145278450363, 0.0048426150121065378, 0.0024213075060532689, 0.0072639225181598066, 0.0024213075060532689, 0.019370460048426151, 0.087167070217917669, 0.0048426150121065378, 0.07407407407407407, 0.037037037037037035, 0.037037037037037035, 0.07407407407407407, 0.51851851851851849, 0.25925925925925924, 0.22950819672131148, 0.19672131147540983, 0.0040983606557377051, 0.069672131147540978, 0.12704918032786885, 0.0040983606557377051, 0.36065573770491804, 0.34507042253521125, 0.0070422535211267607, 0.028169014084507043, 0.3380281690140845, 0.035211267605633804, 0.056338028169014086, 0.0070422535211267607, 0.14788732394366197, 0.014084507042253521, 0.014084507042253521, 0.0070422535211267607, 0.0070422535211267607, 0.07575757575757576, 0.007575757575757576, 0.13636363636363635, 0.03787878787878788, 0.21212121212121213, 0.060606060606060608, 0.030303030303030304, 0.045454545454545456, 0.083333333333333329, 0.25757575757575757, 0.030303030303030304, 0.007575757575757576, 0.9375, 0.065217391304347824, 0.15217391304347827, 0.14130434782608695, 0.021739130434782608, 0.032608695652173912, 0.065217391304347824, 0.11956521739130435, 0.097826086956521743, 0.25, 0.010869565217391304, 0.032608695652173912, 0.10059171597633136, 0.029585798816568046, 0.21301775147928995, 0.023668639053254437, 0.1893491124260355, 0.42603550295857989, 0.0059171597633136093, 0.90909090909090906, 0.064516129032258063, 0.032258064516129031, 0.12903225806451613, 0.12903225806451613, 0.16129032258064516, 0.16129032258064516, 0.12903225806451613, 0.16129032258064516, 0.032258064516129031, 0.90909090909090906, 0.6594594594594595, 0.010810810810810811, 0.021621621621621623, 0.0072072072072072073, 0.0018018018018018018, 0.15135135135135136, 0.095495495495495492, 0.010810810810810811, 0.021621621621621623, 0.0054054054054054057, 0.010810810810810811, 0.0018018018018018018, 0.90793201133144474, 0.0014164305949008499, 0.019830028328611898, 0.011331444759206799, 0.015580736543909348, 0.018413597733711047, 0.0014164305949008499, 0.012747875354107648, 0.0028328611898016999, 0.0014164305949008499, 0.0028328611898016999, 0.23587223587223588, 0.13759213759213759, 0.054054054054054057, 0.036855036855036855, 0.066339066339066333, 0.11056511056511056, 0.049140049140049137, 0.063882063882063883, 0.066339066339066333, 0.0098280098280098278, 0.088452088452088448, 0.027027027027027029, 0.0024570024570024569, 0.0024570024570024569, 0.0073710073710073713, 0.034398034398034398, 0.0049140049140049139, 0.35294117647058826, 0.058823529411764705, 0.35294117647058826, 0.17647058823529413, 0.045454545454545456, 0.045454545454545456, 0.27272727272727271, 0.13636363636363635, 0.45454545454545453, 0.0625, 0.0625, 0.0625, 0.0625, 0.125, 0.625, 0.10888252148997135, 0.068767908309455589, 0.048710601719197708, 0.042979942693409739, 0.014326647564469915, 0.0085959885386819486, 0.12034383954154727, 0.022922636103151862, 0.060171919770773637, 0.25214899713467048, 0.11461318051575932, 0.094555873925501438, 0.0028653295128939827, 0.0028653295128939827, 0.011461318051575931, 0.0057306590257879654, 0.0085959885386819486, 0.0028653295128939827, 0.0085959885386819486, 0.22191780821917809, 0.095890410958904104, 0.027397260273972601, 0.030136986301369864, 0.041095890410958902, 0.00821917808219178, 0.10410958904109589, 0.0027397260273972603, 0.010958904109589041, 0.00821917808219178, 0.30136986301369861, 0.12876712328767123, 0.0027397260273972603, 0.0054794520547945206, 0.0027397260273972603, 0.0027397260273972603, 0.45000000000000001, 0.5, 0.58746355685131191, 0.15743440233236153, 0.016034985422740525, 0.0087463556851311956, 0.039358600583090382, 0.014577259475218658, 0.040816326530612242, 0.039358600583090382, 0.023323615160349854, 0.0087463556851311956, 0.026239067055393587, 0.02478134110787172, 0.0058309037900874635, 0.0029154518950437317, 0.0014577259475218659, 0.0029154518950437317, 0.055555555555555552, 0.055555555555555552, 0.44444444444444442, 0.22222222222222221, 0.055555555555555552, 0.1111111111111111, 0.25, 0.1875, 0.5, 0.31578947368421051, 0.15789473684210525, 0.42105263157894735, 0.34666666666666668, 0.22, 0.0066666666666666671, 0.0066666666666666671, 0.015555555555555555, 0.0044444444444444444, 0.08666666666666667, 0.0022222222222222222, 0.0022222222222222222, 0.028888888888888888, 0.037777777777777778, 0.23999999999999999, 0.53846153846153844, 0.38461538461538464, 0.20112123335669235, 0.1913104414856342, 0.082690960056061663, 0.16888577435178698, 0.037140854940434481, 0.028030833917309039, 0.080588647512263495, 0.023826208829712685, 0.023125437981779958, 0.024526979677645409, 0.035739313244569026, 0.036440084092501754, 0.023125437981779958, 0.0014015416958654519, 0.004905395935529082, 0.011212333566923615, 0.0028030833917309038, 0.011913104414856343, 0.0098107918710581641, 0.12195121951219512, 0.024390243902439025, 0.12195121951219512, 0.17073170731707318, 0.024390243902439025, 0.073170731707317069, 0.41463414634146339, 0.024390243902439025, 0.27586206896551724, 0.13218390804597702, 0.022988505747126436, 0.13218390804597702, 0.1206896551724138, 0.011494252873563218, 0.068965517241379309, 0.022988505747126436, 0.10344827586206896, 0.051724137931034482, 0.017241379310344827, 0.0057471264367816091, 0.017241379310344827, 0.011494252873563218, 0.9285714285714286, 0.14018691588785046, 0.042056074766355138, 0.065420560747663545, 0.018691588785046728, 0.0046728971962616819, 0.0046728971962616819, 0.0046728971962616819, 0.69626168224299068, 0.0093457943925233638, 0.15438596491228071, 0.21754385964912282, 0.21052631578947367, 0.059649122807017542, 0.056140350877192984, 0.073684210526315783, 0.059649122807017542, 0.042105263157894736, 0.028070175438596492, 0.0070175438596491229, 0.017543859649122806, 0.014035087719298246, 0.017543859649122806, 0.0070175438596491229, 0.010526315789473684, 0.0070175438596491229, 0.0070175438596491229, 0.0035087719298245615, 0.083333333333333329, 0.20833333333333334, 0.625, 0.23798627002288331, 0.022883295194508008, 0.045766590389016017, 0.6796338672768879, 0.0045766590389016018, 0.011363636363636364, 0.57954545454545459, 0.011363636363636364, 0.375, 0.92307692307692313, 0.97999999999999998, 0.1864406779661017, 0.32203389830508472, 0.11864406779661017, 0.084745762711864403, 0.0056497175141242938, 0.022598870056497175, 0.016949152542372881, 0.0056497175141242938, 0.050847457627118647, 0.016949152542372881, 0.15254237288135594, 0.011299435028248588, 0.0056497175141242938, 0.41666666666666669, 0.5, 0.011372867587327376, 0.017871649065800164, 0.46100731112916327, 0.088545897644191712, 0.022745735174654752, 0.075954508529650688, 0.007311129163281885, 0.14987814784727863, 0.083265637692932576, 0.03452477660438668, 0.002843216896831844, 0.003249390739236393, 0.011372867587327376, 0.003249390739236393, 0.0012185215272136475, 0.010560519902518278, 0.007311129163281885, 0.0016246953696181965, 0.006092607636068237, 0.00040617384240454913, 0.16666666666666666, 0.083333333333333329, 0.083333333333333329, 0.66666666666666663, 0.91666666666666663, 0.93333333333333335, 0.14999999999999999, 0.80000000000000004, 0.083333333333333329, 0.083333333333333329, 0.66666666666666663, 0.095238095238095233, 0.76190476190476186, 0.047619047619047616, 0.37681159420289856, 0.3188405797101449, 0.072463768115942032, 0.21739130434782608, 0.21083333333333334, 0.0625, 0.063333333333333339, 0.11833333333333333, 0.17833333333333334, 0.0091666666666666667, 0.20916666666666667, 0.020833333333333332, 0.032500000000000001, 0.012500000000000001, 0.010833333333333334, 0.0074999999999999997, 0.0275, 0.029166666666666667, 0.0016666666666666668, 0.00083333333333333339, 0.00083333333333333339, 0.0016666666666666668, 0.00083333333333333339, 0.19811320754716982, 0.16037735849056603, 0.25471698113207547, 0.15094339622641509, 0.16037735849056603, 0.028301886792452831, 0.009433962264150943, 0.018867924528301886, 0.15079365079365079, 0.68253968253968256, 0.03968253968253968, 0.031746031746031744, 0.047619047619047616, 0.015873015873015872, 0.0079365079365079361, 0.023809523809523808, 0.34541792547834843, 0.35146022155085599, 0.028197381671701913, 0.0553877139979859, 0.026183282980866064, 0.015105740181268883, 0.1107754279959718, 0.011077542799597181, 0.0010070493454179255, 0.0040281973816717019, 0.0070493454179254783, 0.033232628398791542, 0.0040281973816717019, 0.002014098690835851, 0.002014098690835851, 0.0010070493454179255, 0.0010070493454179255, 0.0010070493454179255, 0.0010070493454179255, 0.32191338073691017, 0.21654815772462832, 0.04072398190045249, 0.052359405300581773, 0.15319974143503556, 0.029734970911441498, 0.095022624434389136, 0.016160310277957338, 0.0058177117000646414, 0.027795733678086618, 0.0096961861667744023, 0.0064641241111829343, 0.0045248868778280547, 0.0084033613445378148, 0.0038784744667097609, 0.0019392372333548805, 0.00064641241111829345, 0.0038784744667097609, 0.00064641241111829345, 0.84579439252336452, 0.046728971962616821, 0.0046728971962616819, 0.028037383177570093, 0.046728971962616821, 0.014018691588785047, 0.095238095238095233, 0.61904761904761907, 0.047619047619047616, 0.23809523809523808, 0.25497479437516585, 0.10506765720350225, 0.063146723268771562, 0.04908463783496949, 0.049615282568320512, 0.010347572300344918, 0.17352082780578404, 0.0095516052003183863, 0.022817723534093923, 0.062085433802069517, 0.082249933669408332, 0.06049349960201645, 0.022287078800742901, 0.013000795967100026, 0.0039798355001326611, 0.0026532236667551074, 0.00079596710002653227, 0.0068983815335632798, 0.0071637039002387902, 0.00026532236667551072, 0.23780487804878048, 0.1951219512195122, 0.018292682926829267, 0.03048780487804878, 0.036585365853658534, 0.0060975609756097563, 0.0060975609756097563, 0.12804878048780488, 0.07926829268292683, 0.21951219512195122, 0.018292682926829267, 0.0060975609756097563, 0.0060975609756097563, 0.0060975609756097563, 0.41025641025641024, 0.076923076923076927, 0.12820512820512819, 0.076923076923076927, 0.12820512820512819, 0.10256410256410256, 0.05128205128205128, 0.02564102564102564, 0.23076923076923078, 0.61538461538461542, 0.23888658080598255, 0.21520565018695473, 0.056086414624013294, 0.039468217698379729, 0.050685500623182382, 0.0045700041545492318, 0.066057332779393435, 0.002077274615704196, 0.0054009140008309097, 0.047361861238055671, 0.10137100124636476, 0.16202742002492729, 0.0045700041545492318, 0.002077274615704196, 0.0012463647694225177, 0.00083090984628167843, 0.00041545492314083921, 0.0016618196925633569, 0.00041545492314083921, 0.023474178403755867, 0.028169014084507043, 0.41784037558685444, 0.079812206572769953, 0.0046948356807511738, 0.17840375586854459, 0.0046948356807511738, 0.11267605633802817, 0.093896713615023469, 0.0093896713615023476, 0.023474178403755867, 0.0093896713615023476, 0.0049261083743842365, 0.0065681444991789817, 0.33990147783251229, 0.075533661740558297, 0.044334975369458129, 0.17405582922824303, 0.016420361247947456, 0.18883415435139572, 0.080459770114942528, 0.009852216748768473, 0.0032840722495894909, 0.013136288998357963, 0.0032840722495894909, 0.0049261083743842365, 0.013136288998357963, 0.011494252873563218, 0.0016420361247947454, 0.0065681444991789817, 0.30769230769230771, 0.23076923076923078, 0.38461538461538464, 0.028571428571428571, 0.028571428571428571, 0.085714285714285715, 0.085714285714285715, 0.31428571428571428, 0.34285714285714286, 0.057142857142857141, 0.028571428571428571, 0.18181818181818182, 0.18181818181818182, 0.090909090909090912, 0.45454545454545453, 0.45317220543806647, 0.23564954682779457, 0.072507552870090641, 0.027190332326283987, 0.024169184290030211, 0.027190332326283987, 0.048338368580060423, 0.039274924471299093, 0.012084592145015106, 0.030211480362537766, 0.015105740181268883, 0.0090634441087613302, 0.0060422960725075529, 0.0030211480362537764, 0.0030211480362537764, 0.032258064516129031, 0.93548387096774188, 0.12987012987012986, 0.0064935064935064939, 0.0064935064935064939, 0.025974025974025976, 0.01948051948051948, 0.79220779220779225, 0.0064935064935064939, 0.058823529411764705, 0.94117647058823528, 0.36170212765957449, 0.067477203647416412, 0.08085106382978724, 0.032826747720364743, 0.1386018237082067, 0.0085106382978723406, 0.12887537993920972, 0.00729483282674772, 0.032826747720364743, 0.013981762917933131, 0.071124620060790275, 0.017021276595744681, 0.0085106382978723406, 0.020668693009118541, 0.0012158054711246201, 0.0030395136778115501, 0.00060790273556231007, 0.0024316109422492403, 0.0024316109422492403, 0.20979020979020979, 0.19755244755244755, 0.031468531468531472, 0.0472027972027972, 0.07167832167832168, 0.017482517482517484, 0.055944055944055944, 0.006993006993006993, 0.024475524475524476, 0.019230769230769232, 0.25699300699300698, 0.031468531468531472, 0.01048951048951049, 0.0087412587412587419, 0.0017482517482517483, 0.0034965034965034965, 0.0017482517482517483, 0.24752475247524752, 0.089108910891089105, 0.0099009900990099011, 0.039603960396039604, 0.029702970297029702, 0.099009900990099015, 0.0099009900990099011, 0.40594059405940597, 0.049504950495049507, 0.0099009900990099011, 0.15384615384615385, 0.15384615384615385, 0.076923076923076927, 0.23076923076923078, 0.38461538461538464, 0.14999999999999999, 0.20000000000000001, 0.14999999999999999, 0.10000000000000001, 0.25, 0.10000000000000001, 0.98324022346368711, 0.21311475409836064, 0.016393442622950821, 0.13114754098360656, 0.11475409836065574, 0.13114754098360656, 0.13114754098360656, 0.21311475409836064, 0.032786885245901641, 0.016393442622950821, 0.016055045871559634, 0.016513761467889909, 0.50137614678899078, 0.10458715596330276, 0.011009174311926606, 0.13761467889908258, 0.010091743119266056, 0.085321100917431197, 0.020183486238532111, 0.055504587155963306, 0.0032110091743119268, 0.0013761467889908258, 0.013761467889908258, 0.0045871559633027525, 0.00091743119266055051, 0.0073394495412844041, 0.0041284403669724773, 0.001834862385321101, 0.0050458715596330278, 0.4358974358974359, 0.10256410256410256, 0.076923076923076927, 0.15384615384615385, 0.17948717948717949, 0.02564102564102564, 0.38461538461538464, 0.23076923076923078, 0.15384615384615385, 0.076923076923076927, 0.076923076923076927, 0.27272727272727271, 0.18181818181818182, 0.18181818181818182, 0.27272727272727271, 0.41463414634146339, 0.26829268292682928, 0.17073170731707318, 0.097560975609756101, 0.024390243902439025, 0.14285714285714285, 0.76190476190476186, 0.071428571428571425, 0.071428571428571425, 0.085714285714285715, 0.21428571428571427, 0.18571428571428572, 0.32857142857142857, 0.014285714285714285, 0.09375, 0.2109375, 0.1171875, 0.2890625, 0.015625, 0.015625, 0.015625, 0.0078125, 0.078125, 0.1328125, 0.0234375, 0.0078125, 0.079718640093786639, 0.11957796014067995, 0.13130128956623682, 0.33411488862837047, 0.021101992966002344, 0.051582649472450177, 0.041031652989449004, 0.022274325908558032, 0.0058616647127784291, 0.078546307151230954, 0.031652989449003514, 0.024618991793669401, 0.022274325908558032, 0.0011723329425556857, 0.0023446658851113715, 0.0035169988276670576, 0.0070339976553341153, 0.024618991793669401, 0.15625, 0.0625, 0.15625, 0.0625, 0.1875, 0.21875, 0.0625, 0.0625, 0.03125, 0.090909090909090912, 0.72727272727272729, 0.090909090909090912, 0.090909090909090912, 0.90909090909090906, 0.36363636363636365, 0.18181818181818182, 0.090909090909090912, 0.27272727272727271, 0.092815941269008911, 0.033036182485579442, 0.27477713686418459, 0.27163083377031988, 0.063450445726271634, 0.051914001048767699, 0.046145778710015732, 0.051389617199790245, 0.011536444677503933, 0.033036182485579442, 0.009438909281594127, 0.004195070791819612, 0.025170424750917672, 0.003146303093864709, 0.0015731515469323545, 0.005243838489774515, 0.0005243838489774515, 0.0068169900367068695, 0.013109596224436287, 0.0005243838489774515, 0.050000000000000003, 0.10000000000000001, 0.050000000000000003, 0.25, 0.10000000000000001, 0.050000000000000003, 0.10000000000000001, 0.050000000000000003, 0.050000000000000003, 0.10000000000000001, 0.050000000000000003, 0.17009345794392525, 0.43925233644859812, 0.046728971962616821, 0.056074766355140186, 0.0074766355140186919, 0.028037383177570093, 0.011214953271028037, 0.0056074766355140183, 0.0074766355140186919, 0.078504672897196259, 0.029906542056074768, 0.10841121495327102, 0.001869158878504673, 0.0037383177570093459, 0.0037383177570093459, 0.18181818181818182, 0.090909090909090912, 0.090909090909090912, 0.27272727272727271, 0.36363636363636365, 0.16, 0.16, 0.16, 0.35999999999999999, 0.12, 0.15384615384615385, 0.23076923076923078, 0.53846153846153844, 0.1891891891891892, 0.027027027027027029, 0.1891891891891892, 0.027027027027027029, 0.45945945945945948, 0.027027027027027029, 0.027027027027027029, 0.027027027027027029, 0.036036036036036036, 0.023166023166023165, 0.36550836550836552, 0.15830115830115829, 0.029601029601029602, 0.10424710424710425, 0.021879021879021878, 0.10296010296010295, 0.034749034749034749, 0.05019305019305019, 0.0038610038610038611, 0.001287001287001287, 0.037323037323037322, 0.0025740025740025739, 0.001287001287001287, 0.014157014157014158, 0.001287001287001287, 0.001287001287001287, 0.011583011583011582, 0.38461538461538464, 0.076923076923076927, 0.076923076923076927, 0.15384615384615385, 0.23076923076923078, 0.052631578947368418, 0.10526315789473684, 0.68421052631578949, 0.052631578947368418, 0.052631578947368418, 0.052631578947368418, 0.85074626865671643, 0.0042643923240938165, 0.0021321961620469083, 0.029850746268656716, 0.023454157782515993, 0.019189765458422176, 0.014925373134328358, 0.025586353944562899, 0.023454157782515993, 0.18181818181818182, 0.63636363636363635, 0.090909090909090912, 0.96153846153846156, 0.20981595092024541, 0.14846625766871166, 0.16441717791411042, 0.057668711656441718, 0.20490797546012271, 0.025766871165644172, 0.030674846625766871, 0.012269938650306749, 0.030674846625766871, 0.046625766871165646, 0.014723926380368098, 0.018404907975460124, 0.026993865030674847, 0.0012269938650306749, 0.0024539877300613498, 0.0012269938650306749, 0.0024539877300613498, 0.0012269938650306749, 0.0024539877300613498, 0.47222222222222221, 0.15277777777777779, 0.027777777777777776, 0.069444444444444448, 0.1111111111111111, 0.013888888888888888, 0.083333333333333329, 0.055555555555555552, 0.013888888888888888, 0.12, 0.12, 0.68000000000000005, 0.95833333333333337, 0.037037037037037035, 0.07407407407407407, 0.037037037037037035, 0.18518518518518517, 0.37037037037037035, 0.25925925925925924, 0.5, 0.46153846153846156, 0.12121212121212122, 0.12121212121212122, 0.090909090909090912, 0.12121212121212122, 0.21212121212121213, 0.060606060606060608, 0.24242424242424243, 0.23499999999999999, 0.055, 0.0050000000000000001, 0.20999999999999999, 0.20000000000000001, 0.040000000000000001, 0.11, 0.029999999999999999, 0.044999999999999998, 0.029999999999999999, 0.01, 0.014999999999999999, 0.01, 0.0050000000000000001, 0.68181818181818177, 0.045454545454545456, 0.13636363636363635, 0.090909090909090912, 0.24324324324324326, 0.13513513513513514, 0.027027027027027029, 0.013513513513513514, 0.081081081081081086, 0.39189189189189189, 0.0945945945945946, 0.40277777777777779, 0.15277777777777779, 0.041666666666666664, 0.069444444444444448, 0.083333333333333329, 0.1111111111111111, 0.041666666666666664, 0.027777777777777776, 0.069444444444444448, 0.90909090909090906, 0.045454545454545456, 0.29999999999999999, 0.29999999999999999, 0.066666666666666666, 0.16666666666666666, 0.033333333333333333, 0.10000000000000001, 0.72727272727272729, 0.18181818181818182, 0.94736842105263153, 0.042841037204058623, 0.023111612175873732, 0.19109357384441938, 0.23618940248027057, 0.012401352874859075, 0.052987598647125142, 0.14374295377677565, 0.041713641488162347, 0.05749718151071026, 0.10879368658399098, 0.011273957158962795, 0.0039458850056369784, 0.042277339346110485, 0.0039458850056369784, 0.011837655016910935, 0.0045095828635851182, 0.0011273957158962795, 0.0028184892897406989, 0.007328072153325817, 0.15384615384615385, 0.53846153846153844, 0.23076923076923078, 0.75, 0.027777777777777776, 0.055555555555555552, 0.083333333333333329, 0.055555555555555552, 0.050000000000000003, 0.050000000000000003, 0.050000000000000003, 0.80000000000000004, 0.026086956521739129, 0.049275362318840582, 0.069565217391304349, 0.40579710144927539, 0.0057971014492753624, 0.27536231884057971, 0.046376811594202899, 0.037681159420289857, 0.017391304347826087, 0.011594202898550725, 0.0086956521739130436, 0.0028985507246376812, 0.0028985507246376812, 0.011594202898550725, 0.017391304347826087, 0.38095238095238093, 0.33333333333333331, 0.23809523809523808, 0.15555555555555556, 0.066666666666666666, 0.22222222222222221, 0.40000000000000002, 0.13333333333333333, 0.2818181818181818, 0.16363636363636364, 0.027272727272727271, 0.081818181818181818, 0.20909090909090908, 0.0090909090909090905, 0.054545454545454543, 0.15454545454545454, 0.0090909090909090905, 0.23076923076923078, 0.55465587044534415, 0.004048582995951417, 0.0080971659919028341, 0.012145748987854251, 0.024291497975708502, 0.012145748987854251, 0.0080971659919028341, 0.13360323886639677, 0.26724137931034481, 0.32758620689655171, 0.025862068965517241, 0.068965517241379309, 0.19827586206896552, 0.068965517241379309, 0.017241379310344827, 0.086956521739130432, 0.2608695652173913, 0.043478260869565216, 0.17391304347826086, 0.13043478260869565, 0.17391304347826086, 0.086956521739130432, 0.26905829596412556, 0.09417040358744394, 0.053811659192825115, 0.080717488789237665, 0.16591928251121077, 0.031390134529147982, 0.08520179372197309, 0.071748878923766815, 0.0089686098654708519, 0.026905829596412557, 0.10762331838565023, 0.087301587301587297, 0.015873015873015872, 0.10317460317460317, 0.03968253968253968, 0.071428571428571425, 0.0079365079365079361, 0.0079365079365079361, 0.30952380952380953, 0.031746031746031744, 0.015873015873015872, 0.2857142857142857, 0.015873015873015872, 0.12244897959183673, 0.061224489795918366, 0.79591836734693877, 0.3783783783783784, 0.27027027027027029, 0.10810810810810811, 0.027027027027027029, 0.10810810810810811, 0.081081081081081086, 0.27380952380952384, 0.14285714285714285, 0.14285714285714285, 0.10714285714285714, 0.011904761904761904, 0.059523809523809521, 0.071428571428571425, 0.011904761904761904, 0.10714285714285714, 0.035714285714285712, 0.011904761904761904, 0.1111111111111111, 0.046296296296296294, 0.027777777777777776, 0.037037037037037035, 0.018518518518518517, 0.083333333333333329, 0.17592592592592593, 0.48148148148148145, 0.027027027027027029, 0.48648648648648651, 0.081081081081081086, 0.054054054054054057, 0.32432432432432434, 0.083333333333333329, 0.16666666666666666, 0.66666666666666663, 0.083333333333333329, 0.95238095238095233, 0.109375, 0.1875, 0.0625, 0.40625, 0.015625, 0.015625, 0.171875, 0.03125, 0.51923076923076927, 0.038461538461538464, 0.21153846153846154, 0.15384615384615385, 0.019230769230769232, 0.038461538461538464, 0.13333333333333333, 0.59999999999999998, 0.13333333333333333, 0.066666666666666666, 0.967741935483871, 0.95999999999999996, 0.19043478260869565, 0.066956521739130428, 0.091304347826086957, 0.0791304347826087, 0.041739130434782612, 0.051304347826086956, 0.14956521739130435, 0.046956521739130432, 0.17391304347826086, 0.036521739130434785, 0.025217391304347827, 0.0060869565217391303, 0.010434782608695653, 0.0060869565217391303, 0.0086956521739130436, 0.0052173913043478265, 0.0043478260869565218, 0.0017391304347826088, 0.0026086956521739132, 0.00086956521739130438, 0.28888888888888886, 0.33333333333333331, 0.044444444444444446, 0.13333333333333333, 0.066666666666666666, 0.088888888888888892, 0.044642857142857144, 0.017857142857142856, 0.5714285714285714, 0.053571428571428568, 0.0625, 0.017857142857142856, 0.17857142857142858, 0.044642857142857144, 0.43478260869565216, 0.065217391304347824, 0.15217391304347827, 0.13043478260869565, 0.043478260869565216, 0.065217391304347824, 0.043478260869565216, 0.021739130434782608, 0.021739130434782608, 0.967741935483871, 0.94871794871794868, 0.020408163265306121, 0.040816326530612242, 0.89795918367346939, 0.23076923076923078, 0.076923076923076927, 0.61538461538461542, 0.090909090909090912, 0.63636363636363635, 0.18181818181818182, 0.54166666666666663, 0.041666666666666664, 0.25, 0.041666666666666664, 0.041666666666666664, 0.2608695652173913, 0.028985507246376812, 0.2318840579710145, 0.18840579710144928, 0.014492753623188406, 0.014492753623188406, 0.086956521739130432, 0.028985507246376812, 0.014492753623188406, 0.10144927536231885, 0.040000000000000001, 0.16, 0.23999999999999999, 0.040000000000000001, 0.040000000000000001, 0.40000000000000002, 0.15384615384615385, 0.30769230769230771, 0.23076923076923078, 0.23076923076923078, 0.9642857142857143, 0.96531791907514453, 0.017341040462427744, 0.081081081081081086, 0.43243243243243246, 0.027027027027027029, 0.14864864864864866, 0.013513513513513514, 0.027027027027027029, 0.22972972972972974, 0.027027027027027029, 0.11702925731432859, 0.12828207051762941, 0.20480120030007501, 0.060015003750937733, 0.13203300825206302, 0.099774943735933985, 0.046511627906976744, 0.060765191297824456, 0.072018004501125277, 0.0172543135783946, 0.012003000750187547, 0.011252813203300824, 0.016504126031507877, 0.011252813203300824, 0.0015003750937734434, 0.0022505626406601649, 0.0007501875468867217, 0.0045011252813203298, 0.0007501875468867217, 0.12223291626564003, 0.039461020211742061, 0.24350336862367661, 0.05389797882579403, 0.058710298363811357, 0.088546679499518763, 0.02598652550529355, 0.054860442733397498, 0.075072184793070262, 0.05389797882579403, 0.087584215591915301, 0.02406159769008662, 0.017324350336862367, 0.011549566891241578, 0.011549566891241578, 0.011549566891241578, 0.0048123195380173241, 0.0076997112608277194, 0.0057747834456207889, 0.093220338983050849, 0.084745762711864403, 0.30508474576271188, 0.27966101694915252, 0.016949152542372881, 0.016949152542372881, 0.025423728813559324, 0.042372881355932202, 0.1271186440677966, 0.085396825396825402, 0.041269841269841269, 0.089206349206349206, 0.23047619047619047, 0.047619047619047616, 0.05015873015873016, 0.13142857142857142, 0.13587301587301587, 0.021904761904761906, 0.07301587301587302, 0.0057142857142857143, 0.0060317460317460322, 0.037142857142857144, 0.0019047619047619048, 0.021904761904761906, 0.012698412698412698, 0.0022222222222222222, 0.0031746031746031746, 0.0034920634920634921, 0.00031746031746031746, 0.087912087912087919, 0.098901098901098897, 0.02197802197802198, 0.27472527472527475, 0.14285714285714285, 0.13186813186813187, 0.10989010989010989, 0.032967032967032968, 0.065934065934065936, 0.02197802197802198, 0.35294117647058826, 0.19117647058823528, 0.11029411764705882, 0.022058823529411766, 0.088235294117647065, 0.11029411764705882, 0.036764705882352942, 0.044117647058823532, 0.014705882352941176, 0.0073529411764705881, 0.28301886792452829, 0.20754716981132076, 0.028301886792452831, 0.018867924528301886, 0.075471698113207544, 0.18867924528301888, 0.056603773584905662, 0.04716981132075472, 0.056603773584905662, 0.009433962264150943, 0.009433962264150943, 0.35294117647058826, 0.11764705882352941, 0.058823529411764705, 0.17647058823529413, 0.11764705882352941, 0.058823529411764705, 0.22278481012658227, 0.70126582278481009, 0.012658227848101266, 0.020253164556962026, 0.0075949367088607592, 0.0050632911392405064, 0.0050632911392405064, 0.0050632911392405064, 0.0025316455696202532, 0.0075949367088607592, 0.0050632911392405064, 0.040000000000000001, 0.59999999999999998, 0.080000000000000002, 0.080000000000000002, 0.040000000000000001, 0.12, 0.14762301918265222, 0.69891576313594661, 0.01834862385321101, 0.031693077564637198, 0.0091743119266055051, 0.0050041701417848205, 0.017514595496246871, 0.0041701417848206837, 0.0050041701417848205, 0.049207673060884069, 0.0025020850708924102, 0.0050041701417848205, 0.00083402835696413675, 0.00083402835696413675, 0.0025020850708924102, 0.00083402835696413675, 0.0016680567139282735, 0.26000000000000001, 0.16, 0.28000000000000003, 0.02, 0.10000000000000001, 0.10000000000000001, 0.02, 0.059999999999999998, 0.011976047904191617, 0.029940119760479042, 0.45708582834331335, 0.025948103792415168, 0.0099800399201596807, 0.19760479041916168, 0.015968063872255488, 0.071856287425149698, 0.011976047904191617, 0.017964071856287425, 0.0059880239520958087, 0.001996007984031936, 0.10379241516966067, 0.033932135728542916, 0.076923076923076927, 0.076923076923076927, 0.23076923076923078, 0.46153846153846156, 0.076923076923076927, 0.1111111111111111, 0.61111111111111116, 0.1111111111111111, 0.16666666666666666, 0.063829787234042548, 0.25531914893617019, 0.14893617021276595, 0.021276595744680851, 0.021276595744680851, 0.10638297872340426, 0.1276595744680851, 0.063829787234042548, 0.063829787234042548, 0.085106382978723402, 0.021276595744680851, 0.042553191489361701, 0.12691060676238999, 0.1792496526169523, 0.074571560907827697, 0.065308012968967113, 0.0111162575266327, 0.16535433070866143, 0.018063918480778138, 0.12876331635016211, 0.063918480778138026, 0.015284854099119963, 0.019916628068550254, 0.1079203334877258, 0.00046317739694302917, 0.00092635479388605835, 0.0046317739694302917, 0.012505789717461788, 0.00092635479388605835, 0.002779064381658175, 0.0018527095877721167, 0.076923076923076927, 0.84615384615384615, 0.14285714285714285, 0.14285714285714285, 0.6428571428571429, 0.083333333333333329, 0.41666666666666669, 0.16666666666666666, 0.16666666666666666, 0.083333333333333329, 0.91666666666666663, 0.23324396782841822, 0.51474530831099197, 0.022788203753351208, 0.016085790884718499, 0.0026809651474530832, 0.046916890080428951, 0.0026809651474530832, 0.025469168900804289, 0.024128686327077747, 0.0013404825737265416, 0.0026809651474530832, 0.0053619302949061663, 0.0040214477211796247, 0.032171581769436998, 0.016085790884718499, 0.01876675603217158, 0.024128686327077747, 0.0026809651474530832, 0.30508474576271188, 0.13559322033898305, 0.10169491525423729, 0.1864406779661017, 0.050847457627118647, 0.033898305084745763, 0.033898305084745763, 0.033898305084745763, 0.016949152542372881, 0.016949152542372881, 0.084745762711864403, 0.016129032258064516, 0.032258064516129031, 0.45161290322580644, 0.080645161290322578, 0.016129032258064516, 0.016129032258064516, 0.064516129032258063, 0.11290322580645161, 0.20967741935483872, 0.016129032258064516, 0.8125, 0.0625, 0.083333333333333329, 0.33333333333333331, 0.25, 0.33333333333333331, 0.1683673469387755, 0.74489795918367352, 0.040816326530612242, 0.01020408163265306, 0.01020408163265306, 0.01020408163265306, 0.0051020408163265302, 0.94117647058823528, 0.075342465753424653, 0.085616438356164379, 0.017123287671232876, 0.017123287671232876, 0.013698630136986301, 0.0068493150684931503, 0.013698630136986301, 0.0034246575342465752, 0.027397260273972601, 0.72602739726027399, 0.0034246575342465752, 0.0034246575342465752, 0.010273972602739725, 0.16666666666666666, 0.16666666666666666, 0.55555555555555558, 0.1111111111111111, 0.24489795918367346, 0.16326530612244897, 0.081632653061224483, 0.24489795918367346, 0.061224489795918366, 0.10204081632653061, 0.081632653061224483, 0.020408163265306121, 0.17241379310344829, 0.51724137931034486, 0.034482758620689655, 0.10344827586206896, 0.13793103448275862, 0.2857142857142857, 0.047619047619047616, 0.61904761904761907, 0.21985815602836881, 0.12056737588652482, 0.028368794326241134, 0.18439716312056736, 0.028368794326241134, 0.056737588652482268, 0.28368794326241137, 0.028368794326241134, 0.021276595744680851, 0.0070921985815602835, 0.0070921985815602835, 0.10779816513761468, 0.057339449541284407, 0.15825688073394495, 0.22935779816513763, 0.064220183486238536, 0.089449541284403675, 0.057339449541284407, 0.034403669724770644, 0.025229357798165139, 0.11467889908256881, 0.011467889908256881, 0.0022935779816513763, 0.0091743119266055051, 0.0068807339449541288, 0.0022935779816513763, 0.022935779816513763, 0.15384615384615385, 0.76923076923076927, 0.014423076923076924, 0.0096153846153846159, 0.10576923076923077, 0.02403846153846154, 0.0096153846153846159, 0.11538461538461539, 0.004807692307692308, 0.25961538461538464, 0.3125, 0.019230769230769232, 0.019230769230769232, 0.0625, 0.014423076923076924, 0.004807692307692308, 0.014423076923076924, 0.004807692307692308, 0.012345679012345678, 0.07407407407407407, 0.012345679012345678, 0.71604938271604934, 0.12345679012345678, 0.024691358024691357, 0.024691358024691357, 0.33333333333333331, 0.055555555555555552, 0.16666666666666666, 0.16666666666666666, 0.055555555555555552, 0.16666666666666666, 0.020797227036395149, 0.020797227036395149, 0.15366839976891969, 0.0054881571346042752, 0.0034662045060658577, 0.061813980358174467, 0.0040439052570768342, 0.03870595031773541, 0.59185441941074524, 0.026863084922010397, 0.012420566146735991, 0.0023108030040439051, 0.0020219526285384171, 0.0051993067590987872, 0.032351242056614674, 0.00086655112651646442, 0.014731369150779897, 0.0014442518775274408, 0.0011554015020219526, 0.00057770075101097628, 0.94936708860759489, 0.012658227848101266, 0.012658227848101266, 0.76470588235294112, 0.058823529411764705, 0.11764705882352941, 0.14814814814814814, 0.037037037037037035, 0.037037037037037035, 0.70370370370370372, 0.1875, 0.125, 0.0625, 0.125, 0.0625, 0.4375, 0.15789473684210525, 0.052631578947368418, 0.10526315789473684, 0.15789473684210525, 0.10526315789473684, 0.36842105263157893, 0.30769230769230771, 0.26923076923076922, 0.11538461538461539, 0.23076923076923078, 0.038461538461538464, 0.041666666666666664, 0.20833333333333334, 0.66666666666666663, 0.041666666666666664, 0.26666666666666666, 0.13333333333333333, 0.066666666666666666, 0.26666666666666666, 0.20000000000000001, 0.066666666666666666, 0.2857142857142857, 0.071428571428571425, 0.071428571428571425, 0.071428571428571425, 0.14285714285714285, 0.071428571428571425, 0.21428571428571427, 0.055555555555555552, 0.055555555555555552, 0.1111111111111111, 0.1111111111111111, 0.055555555555555552, 0.55555555555555558, 0.009316770186335404, 0.003105590062111801, 0.12732919254658384, 0.049689440993788817, 0.79503105590062106, 0.009316770186335404, 0.72093023255813948, 0.069767441860465115, 0.069767441860465115, 0.093023255813953487, 0.36363636363636365, 0.54545454545454541, 0.043478260869565216, 0.91304347826086951, 0.076903870162297133, 0.10362047440699126, 0.25318352059925092, 0.18801498127340824, 0.048439450686641697, 0.091136079900124844, 0.063920099875156053, 0.079151061173533085, 0.015980024968789013, 0.022222222222222223, 0.0037453183520599251, 0.0097378277153558051, 0.023970037453183522, 0.0039950062421972533, 0.00099875156054931333, 0.0049937578027465668, 0.0019975031210986267, 0.0027465667915106116, 0.0049937578027465668, 0.00024968789013732833, 0.16941391941391942, 0.1517094017094017, 0.1388888888888889, 0.10897435897435898, 0.13644688644688643, 0.043956043956043959, 0.092796092796092799, 0.032661782661782664, 0.039072039072039072, 0.023504273504273504, 0.016483516483516484, 0.012515262515262516, 0.011904761904761904, 0.008241758241758242, 0.0018315018315018315, 0.004884004884004884, 0.0018315018315018315, 0.0042735042735042739, 0.00091575091575091575, 0.00030525030525030525, 0.42857142857142855, 0.14285714285714285, 0.2857142857142857, 0.071428571428571425, 0.2982456140350877, 0.035087719298245612, 0.017543859649122806, 0.50877192982456143, 0.017543859649122806, 0.035087719298245612, 0.035087719298245612, 0.035087719298245612, 0.10021192854980321, 0.1943687556766576, 0.071147441719648805, 0.17438692098092642, 0.028458976687859523, 0.27974568574023617, 0.027247956403269755, 0.075991522858007865, 0.01725703905540418, 0.0024220405691795337, 0.002119285498032092, 0.0075688767786860432, 0.0027247956403269754, 0.00090826521344232513, 0.002119285498032092, 0.0036330608537693005, 0.00090826521344232513, 0.0045413260672116261, 0.0042385709960641839, 0.42307692307692307, 0.11538461538461539, 0.11538461538461539, 0.038461538461538464, 0.19230769230769232, 0.038461538461538464, 0.59090909090909094, 0.11363636363636363, 0.20454545454545456, 0.045454545454545456, 0.20000000000000001, 0.56000000000000005, 0.22285714285714286, 0.0057142857142857143, 0.87272727272727268, 0.036363636363636362, 0.054545454545454543, 0.5, 0.071428571428571425, 0.21428571428571427, 0.21428571428571427, 0.071428571428571425, 0.8571428571428571, 0.21686746987951808, 0.6506024096385542, 0.02710843373493976, 0.042168674698795178, 0.0030120481927710845, 0.03614457831325301, 0.006024096385542169, 0.0090361445783132526, 0.0030120481927710845, 0.0030120481927710845, 0.31767955801104975, 0.25230202578268879, 0.0046040515653775326, 0.066298342541436461, 0.042357274401473299, 0.011049723756906077, 0.17495395948434622, 0.022099447513812154, 0.010128913443830571, 0.0055248618784530384, 0.022099447513812154, 0.030386740331491711, 0.00092081031307550648, 0.00092081031307550648, 0.026703499079189688, 0.0046040515653775326, 0.00092081031307550648, 0.0046040515653775326, 0.030303030303030304, 0.71212121212121215, 0.015151515151515152, 0.19696969696969696, 0.045454545454545456, 0.022727272727272728, 0.56818181818181823, 0.38636363636363635, 0.029126213592233011, 0.0048543689320388345, 0.029126213592233011, 0.88349514563106801, 0.043689320388349516, 0.23647294589178355, 0.25010020040080161, 0.022845691382765532, 0.078957915831663325, 0.091783567134268537, 0.028456913827655309, 0.081362725450901799, 0.03647294589178357, 0.035270541082164326, 0.010821643286573146, 0.056513026052104211, 0.041683366733466932, 0.0056112224448897794, 0.0068136272545090181, 0.0048096192384769537, 0.0036072144288577155, 0.002004008016032064, 0.0040080160320641279, 0.002004008016032064, 0.00040080160320641282, 0.060518731988472622, 0.020172910662824207, 0.37752161383285304, 0.10259365994236311, 0.10547550432276658, 0.090489913544668593, 0.11585014409221903, 0.040345821325648415, 0.036311239193083572, 0.0063400576368876083, 0.0046109510086455334, 0.0040345821325648411, 0.0080691642651296823, 0.0051873198847262247, 0.0034582132564841498, 0.0051873198847262247, 0.007492795389048991, 0.0034582132564841498, 0.0023054755043227667, 0.16725352112676056, 0.04401408450704225, 0.13380281690140844, 0.093309859154929578, 0.15316901408450703, 0.073943661971830985, 0.16373239436619719, 0.042253521126760563, 0.045774647887323945, 0.028169014084507043, 0.0070422535211267607, 0.0035211267605633804, 0.0070422535211267607, 0.017605633802816902, 0.0017605633802816902, 0.0088028169014084511, 0.0035211267605633804, 0.0052816901408450703, 0.10349288486416559, 0.0090556274256144882, 0.25355756791720568, 0.10349288486416559, 0.18111254851228978, 0.097024579560155241, 0.13065976714100905, 0.047865459249676584, 0.034928848641655887, 0.012936610608020699, 0.00129366106080207, 0.0038809831824062097, 0.0051746442432082798, 0.0090556274256144882, 0.00129366106080207, 0.00129366106080207, 0.00129366106080207, 0.0025873221216041399, 0.0025873221216041399, 0.125, 0.0625, 0.125, 0.5625, 0.0625, 0.033519553072625698, 0.0111731843575419, 0.0111731843575419, 0.094972067039106142, 0.083798882681564241, 0.0223463687150838, 0.05027932960893855, 0.25698324022346369, 0.033519553072625698, 0.37988826815642457, 0.0055865921787709499, 0.0055865921787709499, 0.022058823529411766, 0.014705882352941176, 0.0073529411764705881, 0.058823529411764705, 0.022058823529411766, 0.0073529411764705881, 0.044117647058823532, 0.6029411764705882, 0.0073529411764705881, 0.20588235294117646, 0.058252427184466021, 0.11003236245954692, 0.25242718446601942, 0.17152103559870549, 0.029126213592233011, 0.1553398058252427, 0.012944983818770227, 0.080906148867313912, 0.016181229773462782, 0.0032362459546925568, 0.0032362459546925568, 0.048543689320388349, 0.022653721682847898, 0.012944983818770227, 0.0097087378640776691, 0.0097087378640776691, 0.63636363636363635, 0.27272727272727271, 0.18478260869565216, 0.44565217391304346, 0.005434782608695652, 0.076086956521739135, 0.005434782608695652, 0.076086956521739135, 0.010869565217391304, 0.043478260869565216, 0.010869565217391304, 0.038043478260869568, 0.010869565217391304, 0.086956521739130432, 0.040000000000000001, 0.23999999999999999, 0.040000000000000001, 0.12, 0.16, 0.080000000000000002, 0.28000000000000003, 0.12354988399071926, 0.12548337200309359, 0.30220417633410673, 0.083139984532095895, 0.060518174787316317, 0.12587006960556846, 0.024941995359628769, 0.042923433874709975, 0.023781902552204175, 0.035189481825212685, 0.013534416086620264, 0.0075406032482598605, 0.0061871616395978348, 0.0063805104408352666, 0.0038669760247486465, 0.0038669760247486465, 0.0059938128383604022, 0.0025135344160866204, 0.0023201856148491878, 0.00019334880123743234, 0.14285714285714285, 0.80000000000000004, 0.57692307692307687, 0.076923076923076927, 0.11538461538461539, 0.19230769230769232, 0.26666666666666666, 0.26666666666666666, 0.40000000000000002, 0.10434782608695652, 0.021739130434782608, 0.026086956521739129, 0.83913043478260874, 0.63636363636363635, 0.31818181818181818, 0.045454545454545456, 0.066666666666666666, 0.13333333333333333, 0.33333333333333331, 0.066666666666666666, 0.26666666666666666, 0.53846153846153844, 0.38461538461538464, 0.034965034965034968, 0.04195804195804196, 0.16083916083916083, 0.51048951048951052, 0.02097902097902098, 0.04195804195804196, 0.069930069930069935, 0.027972027972027972, 0.013986013986013986, 0.034965034965034968, 0.027972027972027972, 0.013986013986013986, 0.81818181818181823, 0.090909090909090912, 0.1111111111111111, 0.27777777777777779, 0.16666666666666666, 0.16666666666666666, 0.1111111111111111, 0.16666666666666666, 0.090909090909090912, 0.86363636363636365, 0.081788440567066523, 0.15376226826608505, 0.062159214830970554, 0.041439476553980371, 0.0065430752453653216, 0.047982551799345692, 0.011995637949836423, 0.31297709923664124, 0.050163576881134132, 0.16684841875681569, 0.0032715376226826608, 0.043620501635768812, 0.0054525627044711015, 0.0010905125408942203, 0.0043620501635768813, 0.0032715376226826608, 0.0021810250817884407, 0.0021810250817884407, 0.15873015873015872, 0.42857142857142855, 0.079365079365079361, 0.015873015873015872, 0.095238095238095233, 0.015873015873015872, 0.17460317460317459, 0.015873015873015872, 0.13114754098360656, 0.032786885245901641, 0.081967213114754092, 0.065573770491803282, 0.081967213114754092, 0.049180327868852458, 0.081967213114754092, 0.098360655737704916, 0.016393442622950821, 0.13114754098360656, 0.032786885245901641, 0.18032786885245902, 0.65183246073298429, 0.28272251308900526, 0.005235602094240838, 0.002617801047120419, 0.002617801047120419, 0.013089005235602094, 0.015706806282722512, 0.002617801047120419, 0.010471204188481676, 0.002617801047120419, 0.005235602094240838, 0.002617801047120419, 0.32142857142857145, 0.14285714285714285, 0.35714285714285715, 0.071428571428571425, 0.035714285714285712, 0.041666666666666664, 0.041666666666666664, 0.083333333333333329, 0.041666666666666664, 0.083333333333333329, 0.25, 0.20833333333333334, 0.20833333333333334, 0.041666666666666664, 0.041666666666666664, 0.31220657276995306, 0.051643192488262914, 0.096244131455399062, 0.011737089201877934, 0.030516431924882629, 0.035211267605633804, 0.0093896713615023476, 0.051643192488262914, 0.093896713615023469, 0.0023474178403755869, 0.0023474178403755869, 0.023474178403755867, 0.0093896713615023476, 0.0046948356807511738, 0.26291079812206575, 0.0023474178403755869, 0.2781954887218045, 0.0012531328320802004, 0.0012531328320802004, 0.61403508771929827, 0.021303258145363407, 0.031328320802005011, 0.0012531328320802004, 0.0025062656641604009, 0.042606516290726815, 0.0037593984962406013, 0.95454545454545459, 0.1875, 0.125, 0.1875, 0.25, 0.0625, 0.1875, 0.032258064516129031, 0.22580645161290322, 0.67741935483870963, 0.032258064516129031, 0.077981651376146793, 0.027522935779816515, 0.14678899082568808, 0.12844036697247707, 0.0091743119266055051, 0.0045871559633027525, 0.01834862385321101, 0.041284403669724773, 0.032110091743119268, 0.068807339449541288, 0.43119266055045874, 0.0045871559633027525, 0.0045871559633027525, 0.0045871559633027525, 0.25, 0.125, 0.5, 0.125, 0.20679886685552407, 0.48725212464589235, 0.0056657223796033997, 0.0339943342776204, 0.0099150141643059488, 0.0014164305949008499, 0.049575070821529746, 0.0084985835694051, 0.011331444759206799, 0.092067988668555242, 0.052407932011331447, 0.018413597733711047, 0.0070821529745042494, 0.0070821529745042494, 0.0014164305949008499, 0.0014164305949008499, 0.00424929178470255, 0.0014164305949008499, 0.25595238095238093, 0.26785714285714285, 0.011904761904761904, 0.0059523809523809521, 0.017857142857142856, 0.023809523809523808, 0.38690476190476192, 0.023809523809523808, 0.20459290187891441, 0.6534446764091858, 0.0041753653444676405, 0.043841336116910233, 0.0062630480167014616, 0.008350730688935281, 0.033402922755741124, 0.010438413361169102, 0.029227557411273485, 0.0020876826722338203, 0.0020876826722338203, 0.16, 0.080000000000000002, 0.44, 0.12, 0.040000000000000001, 0.080000000000000002, 0.10000000000000001, 0.050000000000000003, 0.10000000000000001, 0.20000000000000001, 0.10000000000000001, 0.10000000000000001, 0.25, 0.14999999999999999, 0.12037037037037036, 0.14814814814814814, 0.092592592592592587, 0.037037037037037035, 0.046296296296296294, 0.12037037037037036, 0.046296296296296294, 0.055555555555555552, 0.12962962962962962, 0.0092592592592592587, 0.0092592592592592587, 0.018518518518518517, 0.018518518518518517, 0.12962962962962962, 0.0092592592592592587, 0.0092592592592592587, 0.33898305084745761, 0.3728813559322034, 0.033898305084745763, 0.11864406779661017, 0.050847457627118647, 0.016949152542372881, 0.016949152542372881, 0.033898305084745763, 0.19459459459459461, 0.26486486486486488, 0.032432432432432434, 0.054054054054054057, 0.048648648648648651, 0.016216216216216217, 0.010810810810810811, 0.07567567567567568, 0.18378378378378379, 0.059459459459459463, 0.027027027027027029, 0.027027027027027029, 0.0054054054054054057, 0.27272727272727271, 0.27272727272727271, 0.18181818181818182, 0.27272727272727271, 0.24408384043272482, 0.083164300202839755, 0.15483434753211631, 0.027721433400946585, 0.031778228532792427, 0.022988505747126436, 0.041920216362407031, 0.050033806626098715, 0.077079107505070993, 0.0087897227856659904, 0.13793103448275862, 0.10547667342799188, 0.00067613252197430695, 0.0020283975659229209, 0.0047329276538201487, 0.0033806626098715348, 0.0013522650439486139, 0.0013522650439486139, 0.00067613252197430695, 0.16699029126213591, 0.1766990291262136, 0.017475728155339806, 0.015533980582524271, 0.0038834951456310678, 0.0058252427184466021, 0.073786407766990289, 0.0097087378640776691, 0.021359223300970873, 0.0058252427184466021, 0.18446601941747573, 0.28932038834951457, 0.015533980582524271, 0.0019417475728155339, 0.0077669902912621356, 0.31742424242424244, 0.2340909090909091, 0.01893939393939394, 0.0098484848484848477, 0.021212121212121213, 0.0045454545454545452, 0.1409090909090909, 0.012878787878787878, 0.0030303030303030303, 0.0090909090909090905, 0.084090909090909091, 0.11742424242424243, 0.0015151515151515152, 0.00075757575757575758, 0.01893939393939394, 0.00075757575757575758, 0.0015151515151515152, 0.0015151515151515152, 0.00075757575757575758, 0.15189873417721519, 0.0084388185654008432, 0.14345991561181434, 0.037974683544303799, 0.1729957805907173, 0.016877637130801686, 0.12236286919831224, 0.088607594936708861, 0.14345991561181434, 0.0084388185654008432, 0.0084388185654008432, 0.054852320675105488, 0.0042194092827004216, 0.0042194092827004216, 0.016877637130801686, 0.0042194092827004216, 0.0042194092827004216, 0.0042194092827004216, 0.1875, 0.1875, 0.4375, 0.125, 0.90909090909090906, 0.17307692307692307, 0.076923076923076927, 0.73076923076923073, 0.0025445292620865142, 0.0025445292620865142, 0.43256997455470736, 0.010178117048346057, 0.068702290076335881, 0.13994910941475827, 0.048346055979643768, 0.015267175572519083, 0.096692111959287536, 0.0050890585241730284, 0.16793893129770993, 0.0050890585241730284, 0.0025445292620865142, 0.17241379310344829, 0.48275862068965519, 0.068965517241379309, 0.034482758620689655, 0.068965517241379309, 0.068965517241379309, 0.034482758620689655, 0.2857142857142857, 0.31428571428571428, 0.057142857142857141, 0.057142857142857141, 0.028571428571428571, 0.028571428571428571, 0.20000000000000001, 0.099074074074074078, 0.07407407407407407, 0.32037037037037036, 0.13333333333333333, 0.065740740740740738, 0.07407407407407407, 0.047222222222222221, 0.039814814814814817, 0.045370370370370373, 0.0055555555555555558, 0.012962962962962963, 0.0083333333333333332, 0.048148148148148148, 0.0064814814814814813, 0.0037037037037037038, 0.0037037037037037038, 0.010185185185185186, 0.0018518518518518519, 0.00092592592592592596, 0.081967213114754092, 0.05737704918032787, 0.23770491803278687, 0.081967213114754092, 0.016393442622950821, 0.098360655737704916, 0.040983606557377046, 0.032786885245901641, 0.098360655737704916, 0.16393442622950818, 0.032786885245901641, 0.032786885245901641, 0.0081967213114754103, 0.0081967213114754103, 0.016393442622950821, 0.189873417721519, 0.12236286919831224, 0.075949367088607597, 0.071729957805907171, 0.050632911392405063, 0.067510548523206745, 0.054852320675105488, 0.037974683544303799, 0.063291139240506333, 0.14767932489451477, 0.025316455696202531, 0.059071729957805907, 0.0084388185654008432, 0.012658227848101266, 0.0084388185654008432, 0.14999999999999999, 0.20000000000000001, 0.10000000000000001, 0.45000000000000001, 0.050000000000000003, 0.17794028031687995, 0.1267519804996953, 0.065204143814747109, 0.10664229128580134, 0.1048141377209019, 0.035953686776355881, 0.096282754418037783, 0.046313223644119439, 0.068251066422912857, 0.014015843997562462, 0.042656916514320534, 0.057282145033516148, 0.013406459475929311, 0.01157830591102986, 0.01157830591102986, 0.0073126142595978062, 0.0097501523461304088, 0.0024375380865326022, 0.0018281535648994515, 0.0012187690432663011, 0.025862068965517241, 0.017241379310344827, 0.5431034482758621, 0.36206896551724138, 0.017241379310344827, 0.0086206896551724137, 0.11428571428571428, 0.72857142857142854, 0.028571428571428571, 0.0071428571428571426, 0.035714285714285712, 0.028571428571428571, 0.050000000000000003, 0.90909090909090906, 0.14814814814814814, 0.12345679012345678, 0.037037037037037035, 0.012345679012345678, 0.14814814814814814, 0.48148148148148145, 0.049382716049382713, 0.92307692307692313, 0.83999999999999997, 0.080000000000000002, 0.040000000000000001, 0.150390625, 0.189453125, 0.1728515625, 0.1259765625, 0.0849609375, 0.005859375, 0.064453125, 0.0078125, 0.0673828125, 0.0390625, 0.037109375, 0.017578125, 0.0087890625, 0.017578125, 0.001953125, 0.0029296875, 0.001953125, 0.00390625, 0.44444444444444442, 0.1111111111111111, 0.07407407407407407, 0.07407407407407407, 0.1111111111111111, 0.07407407407407407, 0.07407407407407407, 0.9285714285714286, 0.11538461538461539, 0.19230769230769232, 0.038461538461538464, 0.57692307692307687, 0.038461538461538464, 0.10714285714285714, 0.30357142857142855, 0.053571428571428568, 0.21428571428571427, 0.035714285714285712, 0.125, 0.071428571428571425, 0.035714285714285712, 0.035714285714285712, 0.36363636363636365, 0.090909090909090912, 0.27272727272727271, 0.18181818181818182, 0.18181818181818182, 0.050000000000000003, 0.20000000000000001, 0.14999999999999999, 0.29999999999999999, 0.050000000000000003, 0.050000000000000003, 0.10000000000000001, 0.050000000000000003, 0.030303030303030304, 0.060606060606060608, 0.15151515151515152, 0.39393939393939392, 0.18181818181818182, 0.12121212121212122, 0.030303030303030304, 0.36241610738255031, 0.16778523489932887, 0.046979865771812082, 0.053691275167785234, 0.080536912751677847, 0.033557046979865772, 0.0067114093959731542, 0.0067114093959731542, 0.16778523489932887, 0.053691275167785234, 0.0067114093959731542, 0.0067114093959731542, 0.26315789473684209, 0.26315789473684209, 0.15789473684210525, 0.10526315789473684, 0.052631578947368418, 0.052631578947368418, 0.83333333333333337, 0.083333333333333329, 0.16666666666666666, 0.75, 0.21052631578947367, 0.15789473684210525, 0.26315789473684209, 0.052631578947368418, 0.21052631578947367, 0.052631578947368418, 0.42045454545454547, 0.056818181818181816, 0.022727272727272728, 0.18181818181818182, 0.22727272727272727, 0.079545454545454544, 0.16666666666666666, 0.083333333333333329, 0.16666666666666666, 0.33333333333333331, 0.16666666666666666, 0.20833333333333334, 0.083333333333333329, 0.33333333333333331, 0.041666666666666664, 0.041666666666666664, 0.041666666666666664, 0.16666666666666666, 0.041666666666666664, 0.44565217391304346, 0.22826086956521738, 0.11956521739130435, 0.13043478260869565, 0.021739130434782608, 0.010869565217391304, 0.010869565217391304, 0.010869565217391304, 0.010869565217391304, 0.13740458015267176, 0.022900763358778626, 0.11450381679389313, 0.091603053435114504, 0.18320610687022901, 0.34351145038167941, 0.015267175572519083, 0.0076335877862595417, 0.045801526717557252, 0.015267175572519083, 0.0625, 0.125, 0.5, 0.0625, 0.125, 0.34813753581661894, 0.2822349570200573, 0.10888252148997135, 0.02865329512893983, 0.094555873925501438, 0.0071633237822349575, 0.063037249283667621, 0.010028653295128941, 0.014326647564469915, 0.014326647564469915, 0.0071633237822349575, 0.0085959885386819486, 0.0042979942693409743, 0.0042979942693409743, 0.0014326647564469914, 0.0028653295128939827, 0.0014326647564469914, 0.038461538461538464, 0.057692307692307696, 0.51923076923076927, 0.019230769230769232, 0.096153846153846159, 0.019230769230769232, 0.038461538461538464, 0.13461538461538461, 0.038461538461538464, 0.019230769230769232, 0.14814814814814814, 0.1111111111111111, 0.037037037037037035, 0.14814814814814814, 0.07407407407407407, 0.037037037037037035, 0.1111111111111111, 0.037037037037037035, 0.25925925925925924, 0.14285714285714285, 0.21428571428571427, 0.35714285714285715, 0.071428571428571425, 0.14285714285714285, 0.33333333333333331, 0.59999999999999998, 0.022222222222222223, 0.17241379310344829, 0.72413793103448276, 0.068965517241379309, 0.3783783783783784, 0.13513513513513514, 0.027027027027027029, 0.13513513513513514, 0.24324324324324326, 0.054054054054054057, 0.15384615384615385, 0.076923076923076927, 0.076923076923076927, 0.53846153846153844, 0.076923076923076927, 0.1875, 0.0625, 0.15625, 0.15625, 0.34375, 0.03125, 0.03125, 0.11358574610244988, 0.073496659242761692, 0.024498886414253896, 0.0089086859688195987, 0.057906458797327393, 0.062360801781737196, 0.15144766146993319, 0.0044543429844097994, 0.055679287305122498, 0.0022271714922048997, 0.43429844097995546, 0.0044543429844097994, 0.27272727272727271, 0.36363636363636365, 0.27272727272727271, 0.27272727272727271, 0.63636363636363635, 0.95454545454545459, 0.5714285714285714, 0.26530612244897961, 0.10204081632653061, 0.020408163265306121, 0.07792207792207792, 0.51948051948051943, 0.03896103896103896, 0.051948051948051951, 0.025974025974025976, 0.051948051948051951, 0.025974025974025976, 0.012987012987012988, 0.051948051948051951, 0.03896103896103896, 0.051948051948051951, 0.012987012987012988, 0.012987012987012988, 0.09375, 0.15625, 0.21875, 0.34375, 0.125, 0.9642857142857143, 0.27777777777777779, 0.5, 0.055555555555555552, 0.1111111111111111, 0.037037037037037035, 0.84362139917695478, 0.00411522633744856, 0.00823045267489712, 0.012345679012345678, 0.020576131687242798, 0.00411522633744856, 0.00823045267489712, 0.012345679012345678, 0.00411522633744856, 0.00823045267489712, 0.020576131687242798, 0.041666666666666664, 0.44444444444444442, 0.013888888888888888, 0.1111111111111111, 0.30555555555555558, 0.027777777777777776, 0.041666666666666664, 0.65625, 0.03125, 0.0625, 0.09375, 0.0625, 0.0625, 0.13669724770642203, 0.10275229357798166, 0.23853211009174313, 0.21100917431192662, 0.022935779816513763, 0.022935779816513763, 0.0091743119266055051, 0.020183486238532111, 0.077981651376146793, 0.046788990825688076, 0.031192660550458717, 0.011009174311926606, 0.0027522935779816515, 0.055045871559633031, 0.0055045871559633031, 0.001834862385321101, 0.00091743119266055051, 0.001834862385321101, 0.00091743119266055051, 0.1180952380952381, 0.10476190476190476, 0.35999999999999999, 0.049523809523809526, 0.022857142857142857, 0.011428571428571429, 0.060952380952380952, 0.022857142857142857, 0.076190476190476197, 0.045714285714285714, 0.053333333333333337, 0.043809523809523812, 0.007619047619047619, 0.007619047619047619, 0.0019047619047619048, 0.0019047619047619048, 0.0038095238095238095, 0.0038095238095238095, 0.0019047619047619048, 0.41025641025641024, 0.12820512820512819, 0.15384615384615385, 0.02564102564102564, 0.076923076923076927, 0.076923076923076927, 0.12820512820512819, 0.23529411764705882, 0.29411764705882354, 0.27450980392156865, 0.039215686274509803, 0.019607843137254902, 0.058823529411764705, 0.039215686274509803, 0.039215686274509803, 0.14285714285714285, 0.35714285714285715, 0.35714285714285715, 0.071428571428571425, 0.2032520325203252, 0.098915989159891596, 0.21544715447154472, 0.071815718157181574, 0.094850948509485097, 0.08943089430894309, 0.06097560975609756, 0.081300813008130079, 0.033875338753387531, 0.011517615176151762, 0.0033875338753387536, 0.0040650406504065045, 0.0054200542005420054, 0.0047425474254742545, 0.00067750677506775068, 0.008130081300813009, 0.0047425474254742545, 0.0027100271002710027, 0.0040650406504065045, 0.56666666666666665, 0.066666666666666666, 0.033333333333333333, 0.20000000000000001, 0.066666666666666666, 0.033333333333333333, 0.83018867924528306, 0.075471698113207544, 0.037735849056603772, 0.018867924528301886, 0.018867924528301886, 0.94230769230769229, 0.019230769230769232, 0.10810810810810811, 0.045045045045045043, 0.12612612612612611, 0.13513513513513514, 0.081081081081081086, 0.24324324324324326, 0.045045045045045043, 0.12612612612612611, 0.0090090090090090089, 0.0090090090090090089, 0.027027027027027029, 0.027027027027027029, 0.0090090090090090089, 0.0090090090090090089, 0.18049792531120332, 0.14107883817427386, 0.32780082987551867, 0.054979253112033194, 0.089211618257261413, 0.017634854771784232, 0.048755186721991702, 0.01970954356846473, 0.042531120331950209, 0.023858921161825725, 0.018672199170124481, 0.011410788381742738, 0.0062240663900414933, 0.0062240663900414933, 0.0020746887966804979, 0.0031120331950207467, 0.0041493775933609959, 0.001037344398340249, 0.93333333333333335, 0.17647058823529413, 0.76470588235294112, 0.077588117933939257, 0.13855021059632011, 0.12303258700953225, 0.1855464420305919, 0.017069385945466638, 0.17933939259587675, 0.020837951673686544, 0.15606295721569496, 0.017512746619374863, 0.016404344934604301, 0.0099756151629350476, 0.017291066282420751, 0.0033252050543116827, 0.00066504101086233653, 0.0024384837064952338, 0.023276435380181777, 0.0055420084238528046, 0.002881844380403458, 0.0022168033695411215, 0.00022168033695411216, 0.11565836298932385, 0.087188612099644125, 0.090747330960854092, 0.10320284697508897, 0.023131672597864767, 0.33096085409252668, 0.014234875444839857, 0.085409252669039148, 0.040925266903914591, 0.032028469750889681, 0.010676156583629894, 0.0071174377224199285, 0.0053380782918149468, 0.012455516014234875, 0.023131672597864767, 0.0035587188612099642, 0.0088967971530249119, 0.0053380782918149468, 0.92307692307692313, 0.076923076923076927, 0.84615384615384615, 0.78109452736318408, 0.019900497512437811, 0.089552238805970144, 0.059701492537313432, 0.0049751243781094526, 0.014925373134328358, 0.0099502487562189053, 0.87037037037037035, 0.07407407407407407, 0.018518518518518517, 0.018518518518518517, 0.78048780487804881, 0.04878048780487805, 0.054878048780487805, 0.012195121951219513, 0.067073170731707321, 0.012195121951219513, 0.0060975609756097563, 0.0060975609756097563, 0.11507778220981252, 0.07728360590347029, 0.28958915037893895, 0.11767052253689669, 0.051156761069006781, 0.050957319505384922, 0.031312325488631831, 0.084563222975668123, 0.058835261268448347, 0.048264858396489828, 0.026226565616274431, 0.014060630235341045, 0.012365376944555246, 0.0059832469086557637, 0.0028919026725169527, 0.0048863183087355403, 0.0018946948544076585, 0.005185480654168329, 0.0015955325089748703, 0.00029916234543278817, 0.052256532066508314, 0.0047505938242280287, 0.049881235154394299, 0.42755344418052255, 0.014251781472684086, 0.29928741092636579, 0.03800475059382423, 0.057007125890736345, 0.014251781472684086, 0.0047505938242280287, 0.0047505938242280287, 0.0047505938242280287, 0.011876484560570071, 0.0023752969121140144, 0.0071258907363420431, 0.0042507970244420826, 0.020191285866099893, 0.63124335812964927, 0.0053134962805526037, 0.048884165781083955, 0.054197662061636558, 0.0053134962805526037, 0.062699256110520726, 0.11902231668437832, 0.0010626992561105207, 0.0010626992561105207, 0.020191285866099893, 0.021253985122210415, 0.0010626992561105207, 0.0021253985122210413, 0.0010626992561105207, 0.0010626992561105207, 0.18303571428571427, 0.1875, 0.053571428571428568, 0.071428571428571425, 0.0089285714285714281, 0.0089285714285714281, 0.071428571428571425, 0.013392857142857142, 0.022321428571428572, 0.035714285714285712, 0.20535714285714285, 0.12946428571428573, 0.20817843866171004, 0.19330855018587362, 0.07434944237918216, 0.092936802973977689, 0.014869888475836431, 0.01858736059479554, 0.063197026022304828, 0.014869888475836431, 0.089219330855018583, 0.01858736059479554, 0.13011152416356878, 0.063197026022304828, 0.0074349442379182153, 0.0037174721189591076, 0.0037174721189591076, 0.26315789473684209, 0.21052631578947367, 0.21052631578947367, 0.052631578947368418, 0.31578947368421051, 0.21568627450980393, 0.098039215686274508, 0.039215686274509803, 0.41176470588235292, 0.019607843137254902, 0.078431372549019607, 0.11764705882352941, 0.15384615384615385, 0.15384615384615385, 0.076923076923076927, 0.38461538461538464, 0.076923076923076927, 0.15384615384615385, 0.1348314606741573, 0.1348314606741573, 0.10561797752808989, 0.11685393258426967, 0.076404494382022473, 0.069662921348314602, 0.14382022471910114, 0.058426966292134834, 0.056179775280898875, 0.017977528089887642, 0.011235955056179775, 0.031460674157303373, 0.011235955056179775, 0.011235955056179775, 0.0067415730337078653, 0.0067415730337078653, 0.0022471910112359553, 0.0022471910112359553, 0.2967032967032967, 0.12087912087912088, 0.076923076923076927, 0.02197802197802198, 0.10989010989010989, 0.098901098901098897, 0.13186813186813187, 0.01098901098901099, 0.043956043956043959, 0.054945054945054944, 0.01098901098901099, 0.01098901098901099, 0.30769230769230771, 0.42307692307692307, 0.23076923076923078, 0.9838709677419355, 0.32258064516129031, 0.45161290322580644, 0.032258064516129031, 0.032258064516129031, 0.064516129032258063, 0.032258064516129031, 0.078904991948470213, 0.048309178743961352, 0.21739130434782608, 0.041867954911433171, 0.020933977455716585, 0.0016103059581320451, 0.024154589371980676, 0.027375201288244767, 0.049919484702093397, 0.017713365539452495, 0.1111111111111111, 0.33655394524959742, 0.012882447665056361, 0.0016103059581320451, 0.0016103059581320451, 0.0016103059581320451, 0.0032206119162640902, 0.0016103059581320451, 0.30011862396204031, 0.14353499406880191, 0.0047449584816132862, 0.021352313167259787, 0.033214709371292998, 0.0047449584816132862, 0.053380782918149468, 0.0071174377224199285, 0.018979833926453145, 0.013048635824436536, 0.061684460260972719, 0.32384341637010677, 0.0011862396204033216, 0.0023724792408066431, 0.0047449584816132862, 0.0011862396204033216, 0.0023724792408066431, 0.0011862396204033216, 0.042553191489361701, 0.1276595744680851, 0.042553191489361701, 0.042553191489361701, 0.23404255319148937, 0.063829787234042548, 0.063829787234042548, 0.2978723404255319, 0.021276595744680851, 0.021276595744680851, 0.021276595744680851, 0.46666666666666667, 0.066666666666666666, 0.066666666666666666, 0.13333333333333333, 0.20000000000000001, 0.91666666666666663, 0.040000000000000001, 0.68000000000000005, 0.040000000000000001, 0.12, 0.080000000000000002, 0.20000000000000001, 0.66666666666666663, 0.066666666666666666, 0.055555555555555552, 0.22222222222222221, 0.1388888888888889, 0.22222222222222221, 0.055555555555555552, 0.027777777777777776, 0.25, 0.7857142857142857, 0.071428571428571425, 0.071428571428571425, 0.22580645161290322, 0.010752688172043012, 0.043010752688172046, 0.086021505376344093, 0.61290322580645162, 0.010752688172043012, 0.010752688172043012, 0.1437908496732026, 0.0065359477124183009, 0.032679738562091505, 0.098039215686274508, 0.0065359477124183009, 0.071895424836601302, 0.46405228758169936, 0.13725490196078433, 0.026143790849673203, 0.090909090909090912, 0.86363636363636365, 0.083333333333333329, 0.16666666666666666, 0.25, 0.16666666666666666, 0.25, 0.38461538461538464, 0.30769230769230771, 0.15384615384615385, 0.083333333333333329, 0.66666666666666663, 0.083333333333333329, 0.083333333333333329, 0.083333333333333329, 0.58333333333333337, 0.16666666666666666, 0.083333333333333329, 0.15638362858888211, 0.18998167379352474, 0.16310323762981063, 0.084300549786194251, 0.042150274893097125, 0.053145998778252899, 0.033598045204642636, 0.042761148442272447, 0.047037263286499695, 0.016493585827733658, 0.036652412950519242, 0.092852779474648747, 0.014050091631032376, 0.0048869883934025658, 0.0048869883934025658, 0.0030543677458766036, 0.0091631032376298105, 0.0024434941967012829, 0.0030543677458766036, 0.068376068376068383, 0.20512820512820512, 0.059829059829059832, 0.05128205128205128, 0.58119658119658124, 0.017094017094017096, 0.21052631578947367, 0.15789473684210525, 0.052631578947368418, 0.10526315789473684, 0.10526315789473684, 0.052631578947368418, 0.052631578947368418, 0.15789473684210525, 0.10526315789473684, 0.012738853503184714, 0.33757961783439489, 0.15286624203821655, 0.025477707006369428, 0.050955414012738856, 0.006369426751592357, 0.19108280254777071, 0.006369426751592357, 0.20382165605095542, 0.0059523809523809521, 0.36904761904761907, 0.27976190476190477, 0.035714285714285712, 0.059523809523809521, 0.089285714285714288, 0.071428571428571425, 0.017857142857142856, 0.011904761904761904, 0.011904761904761904, 0.011904761904761904, 0.011904761904761904, 0.0059523809523809521, 0.0059523809523809521, 0.5, 0.071428571428571425, 0.35714285714285715, 0.083333333333333329, 0.66666666666666663, 0.083333333333333329, 0.083333333333333329, 0.11864406779661017, 0.0084745762711864406, 0.40677966101694918, 0.0084745762711864406, 0.063559322033898302, 0.012711864406779662, 0.097457627118644072, 0.033898305084745763, 0.046610169491525424, 0.012711864406779662, 0.021186440677966101, 0.033898305084745763, 0.016949152542372881, 0.0084745762711864406, 0.093220338983050849, 0.0084745762711864406, 0.0042372881355932203, 0.57894736842105265, 0.052631578947368418, 0.052631578947368418, 0.10526315789473684, 0.052631578947368418, 0.052631578947368418, 0.16896551724137931, 0.21939655172413794, 0.090086206896551724, 0.088793103448275859, 0.081896551724137928, 0.12284482758620689, 0.04439655172413793, 0.04913793103448276, 0.067241379310344823, 0.021982758620689654, 0.010344827586206896, 0.0064655172413793103, 0.0017241379310344827, 0.0086206896551724137, 0.0012931034482758621, 0.0038793103448275862, 0.0034482758620689655, 0.0077586206896551723, 0.0012931034482758621, 0.033898305084745763, 0.25423728813559321, 0.084745762711864403, 0.61016949152542377, 0.16145500957243139, 0.13529036375239312, 0.10848755583918315, 0.19974473516273133, 0.050414805360561581, 0.086151882578174854, 0.021697511167836629, 0.065092533503509895, 0.034460753031269942, 0.055520102105934908, 0.029993618379068283, 0.021059349074664963, 0.0031908104658583281, 0.0038289725590299937, 0.0038289725590299937, 0.0044671346522016592, 0.0095724313975749844, 0.0038289725590299937, 0.0025526483726866626, 0.14999999999999999, 0.34999999999999998, 0.10000000000000001, 0.25, 0.10000000000000001, 0.047393364928909949, 0.0094786729857819912, 0.4218009478672986, 0.17061611374407584, 0.047393364928909949, 0.052132701421800945, 0.056872037914691941, 0.07582938388625593, 0.056872037914691941, 0.0094786729857819912, 0.0047393364928909956, 0.018957345971563982, 0.0047393364928909956, 0.023696682464454975, 0.056818181818181816, 0.011363636363636364, 0.20454545454545456, 0.045454545454545456, 0.011363636363636364, 0.10227272727272728, 0.26136363636363635, 0.011363636363636364, 0.22727272727272727, 0.045454545454545456, 0.91891891891891897, 0.027027027027027029, 0.20618556701030927, 0.51202749140893467, 0.025773195876288658, 0.041237113402061855, 0.032646048109965638, 0.001718213058419244, 0.010309278350515464, 0.0051546391752577319, 0.0051546391752577319, 0.07560137457044673, 0.044673539518900345, 0.025773195876288658, 0.0034364261168384879, 0.0034364261168384879, 0.001718213058419244, 0.001718213058419244, 0.25595238095238093, 0.45238095238095238, 0.011904761904761904, 0.02976190476190476, 0.02976190476190476, 0.041666666666666664, 0.041666666666666664, 0.02976190476190476, 0.077380952380952384, 0.017857142857142856, 0.0059523809523809521, 0.13541666666666666, 0.13541666666666666, 0.041666666666666664, 0.0625, 0.40625, 0.17708333333333334, 0.020833333333333332, 0.30316742081447962, 0.55429864253393668, 0.011312217194570135, 0.022624434389140271, 0.0022624434389140274, 0.0022624434389140274, 0.0090497737556561094, 0.020361990950226245, 0.0022624434389140274, 0.0045248868778280547, 0.0022624434389140274, 0.056561085972850679, 0.0022624434389140274, 0.0067873303167420816, 0.14709851551956815, 0.1484480431848853, 0.059379217273954114, 0.045883940620782729, 0.098515519568151147, 0.060728744939271252, 0.058029689608636977, 0.033738191632928474, 0.22941970310391363, 0.031039136302294199, 0.013495276653171391, 0.026990553306342781, 0.0026990553306342779, 0.0080971659919028341, 0.0026990553306342779, 0.0053981106612685558, 0.018893387314439947, 0.0080971659919028341, 0.0013495276653171389, 0.25874125874125875, 0.2937062937062937, 0.013986013986013986, 0.12587412587412589, 0.013986013986013986, 0.034965034965034968, 0.027972027972027972, 0.069930069930069935, 0.076923076923076927, 0.062937062937062943, 0.013986013986013986, 0.1643059490084986, 0.072237960339943341, 0.078611898016997167, 0.11685552407932011, 0.087818696883852687, 0.070821529745042494, 0.15439093484419264, 0.070821529745042494, 0.084985835694050993, 0.019830028328611898, 0.021954674220963172, 0.0084985835694051, 0.012039660056657223, 0.011331444759206799, 0.010623229461756374, 0.0077903682719546738, 0.002124645892351275, 0.0049575070821529744, 0.00070821529745042496, 0.086956521739130432, 0.86956521739130432, 0.64772727272727271, 0.022727272727272728, 0.003787878787878788, 0.053030303030303032, 0.007575757575757576, 0.1553030303030303, 0.10227272727272728, 0.5, 0.066666666666666666, 0.083333333333333329, 0.25, 0.066666666666666666, 0.31578947368421051, 0.38596491228070173, 0.017543859649122806, 0.12280701754385964, 0.017543859649122806, 0.08771929824561403, 0.017543859649122806, 0.18181818181818182, 0.36363636363636365, 0.18181818181818182, 0.090909090909090912, 0.090909090909090912, 0.090909090909090912, 0.0077519379844961239, 0.0077519379844961239, 0.36434108527131781, 0.031007751937984496, 0.03875968992248062, 0.34108527131782945, 0.031007751937984496, 0.031007751937984496, 0.093023255813953487, 0.0077519379844961239, 0.015503875968992248, 0.0077519379844961239, 0.015503875968992248, 0.14628542251723259, 0.21955578248659688, 0.074036252233852434, 0.10748021444983406, 0.050548889456216495, 0.05412305335716109, 0.068675006382435538, 0.023742660199131987, 0.016339034975746746, 0.039571100331886648, 0.14398774572376818, 0.037018126116926217, 0.004595353586928772, 0.0038294613224406433, 0.0025529742149604288, 0.0012764871074802144, 0.00051059484299208582, 0.0038294613224406433, 0.0020423793719683433, 0.13746630727762804, 0.24797843665768193, 0.18328840970350405, 0.15094339622641509, 0.0026954177897574125, 0.10242587601078167, 0.024258760107816711, 0.056603773584905662, 0.0080862533692722376, 0.0215633423180593, 0.016172506738544475, 0.035040431266846361, 0.0053908355795148251, 0.0026954177897574125, 0.0026954177897574125, 0.28266331658291455, 0.310929648241206, 0.013190954773869347, 0.088567839195979894, 0.03077889447236181, 0.045854271356783917, 0.024497487437185928, 0.019472361809045227, 0.014447236180904523, 0.018216080402010049, 0.097361809045226136, 0.038944723618090454, 0.0012562814070351759, 0.0012562814070351759, 0.0037688442211055275, 0.0012562814070351759, 0.0012562814070351759, 0.0056532663316582916, 0.0012562814070351759, 0.20000000000000001, 0.33333333333333331, 0.13333333333333333, 0.066666666666666666, 0.066666666666666666, 0.13333333333333333, 0.060606060606060608, 0.030303030303030304, 0.030303030303030304, 0.21212121212121213, 0.5757575757575758, 0.030303030303030304, 0.052631578947368418, 0.63157894736842102, 0.10526315789473684, 0.15789473684210525, 0.19387755102040816, 0.030612244897959183, 0.020408163265306121, 0.061224489795918366, 0.061224489795918366, 0.030612244897959183, 0.020408163265306121, 0.071428571428571425, 0.01020408163265306, 0.061224489795918366, 0.33673469387755101, 0.020408163265306121, 0.01020408163265306, 0.020408163265306121, 0.040816326530612242, 0.01020408163265306, 0.11764705882352941, 0.11764705882352941, 0.058823529411764705, 0.41176470588235292, 0.058823529411764705, 0.17647058823529413, 0.93333333333333335, 0.2696629213483146, 0.3595505617977528, 0.06741573033707865, 0.056179775280898875, 0.12359550561797752, 0.033707865168539325, 0.011235955056179775, 0.02247191011235955, 0.0449438202247191, 0.12380952380952381, 0.20952380952380953, 0.17142857142857143, 0.12380952380952381, 0.028571428571428571, 0.10476190476190476, 0.047619047619047616, 0.038095238095238099, 0.028571428571428571, 0.0095238095238095247, 0.076190476190476197, 0.019047619047619049, 0.0095238095238095247, 0.95833333333333337, 0.27841094106154346, 0.2950179094757408, 0.022142624552263106, 0.062194724845327252, 0.094431781178769131, 0.024422012373819604, 0.077824812764571802, 0.015304461087593618, 0.031585802670140023, 0.028003907521979812, 0.028980788016932595, 0.017909475740801043, 0.0019537609899055682, 0.0068381634646694891, 0.0032562683165092803, 0.0016281341582546401, 0.0022793878215564964, 0.0068381634646694891, 0.00065125366330185612, 0.00032562683165092806, 0.16022099447513813, 0.37569060773480661, 0.077348066298342538, 0.13812154696132597, 0.027624309392265192, 0.044198895027624308, 0.016574585635359115, 0.016574585635359115, 0.016574585635359115, 0.011049723756906077, 0.033149171270718231, 0.038674033149171269, 0.011049723756906077, 0.0055248618784530384, 0.016574585635359115, 0.04657810660837397, 0.035480073986884145, 0.20110980326214897, 0.010257272574407264, 0.0084076004708256262, 0.032285185807970407, 0.012275096687405415, 0.066420043719522454, 0.3773331091306541, 0.0084076004708256262, 0.10677652597948545, 0.053808643013284009, 0.0031948881789137379, 0.0036993442071632755, 0.0043719522448293253, 0.0030267361694972256, 0.023204977299478728, 0.0018496721035816377, 0.0013452160753321001, 0.00016815200941651252, 0.081690140845070425, 0.081690140845070425, 0.10985915492957747, 0.13239436619718309, 0.014084507042253521, 0.036619718309859155, 0.019718309859154931, 0.11267605633802817, 0.3267605633802817, 0.011267605633802818, 0.019718309859154931, 0.0028169014084507044, 0.0084507042253521118, 0.0028169014084507044, 0.0056338028169014088, 0.028169014084507043, 0.0028169014084507044, 0.0028169014084507044, 0.066666666666666666, 0.033333333333333333, 0.066666666666666666, 0.016666666666666666, 0.083333333333333329, 0.033333333333333333, 0.016666666666666666, 0.65000000000000002, 0.22222222222222221, 0.44444444444444442, 0.1111111111111111, 0.16666666666666666, 0.055555555555555552, 0.1951219512195122, 0.58536585365853655, 0.073170731707317069, 0.04878048780487805, 0.04878048780487805, 0.024390243902439025, 0.66666666666666663, 0.08771929824561403, 0.21052631578947367, 0.1166936790923825, 0.20745542949756887, 0.19286871961102106, 0.042139384116693678, 0.21880064829821719, 0.030794165316045379, 0.019448946515397084, 0.048622366288492709, 0.063209076175040513, 0.0081037277147487843, 0.0016207455429497568, 0.0016207455429497568, 0.0032414910858995136, 0.040518638573743923, 0.0032414910858995136, 0.0016207455429497568, 0.0016207455429497568, 0.085148514851485155, 0.11485148514851486, 0.12871287128712872, 0.025742574257425741, 0.41386138613861384, 0.037623762376237622, 0.029702970297029702, 0.041584158415841586, 0.033663366336633666, 0.0019801980198019802, 0.0079207920792079209, 0.075247524752475245, 0.0019801980198019802, 0.0019801980198019802, 0.12, 0.040000000000000001, 0.80000000000000004, 0.34615384615384615, 0.19230769230769232, 0.076923076923076927, 0.038461538461538464, 0.11538461538461539, 0.076923076923076927, 0.038461538461538464, 0.076923076923076927, 0.10660980810234541, 0.21321961620469082, 0.060767590618336885, 0.12366737739872068, 0.059701492537313432, 0.033049040511727079, 0.045842217484008532, 0.018123667377398719, 0.025586353944562899, 0.19722814498933902, 0.077825159914712158, 0.013859275053304905, 0.0042643923240938165, 0.007462686567164179, 0.0021321961620469083, 0.0021321961620469083, 0.0042643923240938165, 0.0021321961620469083, 0.12054001928640308, 0.27483124397299902, 0.052073288331726135, 0.22372227579556414, 0.050144648023143681, 0.081002892960462869, 0.022179363548698167, 0.030858244937319191, 0.0077145612343297977, 0.027000964320154291, 0.054001928640308582, 0.016393442622950821, 0.0086788813886210219, 0.0067502410800385727, 0.00096432015429122472, 0.0057859209257473485, 0.0038572806171648989, 0.009643201542912247, 0.0048216007714561235, 0.19047619047619047, 0.047619047619047616, 0.095238095238095233, 0.2857142857142857, 0.047619047619047616, 0.2857142857142857, 0.19230769230769232, 0.019230769230769232, 0.48076923076923078, 0.038461538461538464, 0.13461538461538461, 0.096153846153846159, 0.019230769230769232, 0.0625, 0.875, 0.041666666666666664, 0.79166666666666663, 0.083333333333333329, 0.041666666666666664, 0.032786885245901641, 0.0040983606557377051, 0.29508196721311475, 0.068306010928961755, 0.24180327868852458, 0.051912568306010931, 0.053278688524590161, 0.058743169398907107, 0.14207650273224043, 0.001366120218579235, 0.001366120218579235, 0.016393442622950821, 0.0081967213114754103, 0.0054644808743169399, 0.009562841530054645, 0.0054644808743169399, 0.001366120218579235, 0.11046511627906977, 0.050387596899224806, 0.16279069767441862, 0.054263565891472867, 0.060077519379844964, 0.1065891472868217, 0.069767441860465115, 0.062015503875968991, 0.048449612403100778, 0.0058139534883720929, 0.03875968992248062, 0.079457364341085274, 0.011627906976744186, 0.0058139534883720929, 0.001937984496124031, 0.03875968992248062, 0.083333333333333329, 0.0096899224806201549, 0.001937984496124031, 0.056910569105691054, 0.016260162601626018, 0.50406504065040647, 0.12195121951219512, 0.016260162601626018, 0.024390243902439025, 0.04065040650406504, 0.016260162601626018, 0.008130081300813009, 0.016260162601626018, 0.032520325203252036, 0.016260162601626018, 0.008130081300813009, 0.008130081300813009, 0.073170731707317069, 0.008130081300813009, 0.024390243902439025, 0.22392638036809817, 0.10122699386503067, 0.0061349693251533744, 0.036809815950920248, 0.009202453987730062, 0.0030674846625766872, 0.009202453987730062, 0.052147239263803678, 0.015337423312883436, 0.50613496932515334, 0.012269938650306749, 0.0061349693251533744, 0.0061349693251533744, 0.0061349693251533744, 0.24242424242424243, 0.21212121212121213, 0.060606060606060608, 0.060606060606060608, 0.30303030303030304, 0.060606060606060608, 0.16153846153846155, 0.2076923076923077, 0.11538461538461539, 0.08461538461538462, 0.12307692307692308, 0.038461538461538464, 0.076923076923076927, 0.061538461538461542, 0.061538461538461542, 0.015384615384615385, 0.015384615384615385, 0.015384615384615385, 0.015384615384615385, 0.11285266457680251, 0.028213166144200628, 0.10344827586206896, 0.15987460815047022, 0.27272727272727271, 0.073667711598746077, 0.042319749216300939, 0.089341692789968646, 0.012539184952978056, 0.003134796238244514, 0.001567398119122257, 0.001567398119122257, 0.0047021943573667714, 0.083072100313479627, 0.001567398119122257, 0.006269592476489028, 0.001567398119122257, 0.0009099181073703367, 0.0009099181073703367, 0.42584167424931757, 0.049135577797998181, 0.16924476797088261, 0.10373066424021839, 0.0036396724294813468, 0.041856232939035488, 0.17288444040036396, 0.0009099181073703367, 0.0009099181073703367, 0.0009099181073703367, 0.0081892629663330302, 0.010919017288444041, 0.0009099181073703367, 0.0027297543221110102, 0.004549590536851683, 0.0027297543221110102, 0.0009099181073703367, 0.125, 0.6875, 0.1875, 0.70064724919093846, 0.0064724919093851136, 0.050161812297734629, 0.07281553398058252, 0.019417475728155338, 0.12944983818770225, 0.011326860841423949, 0.0016181229773462784, 0.0016181229773462784, 0.0016181229773462784, 0.29999999999999999, 0.050000000000000003, 0.25, 0.20000000000000001, 0.10000000000000001, 0.10000000000000001, 0.043243243243243246, 0.07567567567567568, 0.15675675675675677, 0.043243243243243246, 0.48108108108108111, 0.010810810810810811, 0.064864864864864868, 0.0054054054054054057, 0.021621621621621623, 0.021621621621621623, 0.0054054054054054057, 0.064864864864864868, 0.75, 0.16666666666666666, 0.43333333333333335, 0.10000000000000001, 0.066666666666666666, 0.033333333333333333, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.13333333333333333, 0.14285714285714285, 0.14285714285714285, 0.14285714285714285, 0.42857142857142855, 0.071428571428571425, 0.058823529411764705, 0.058823529411764705, 0.76470588235294112, 0.058823529411764705, 0.14167650531286896, 0.12632821723730814, 0.24203069657615112, 0.061393152302243209, 0.063754427390791027, 0.063754427390791027, 0.051948051948051951, 0.076741440377804018, 0.031877213695395513, 0.015348288075560802, 0.049586776859504134, 0.024793388429752067, 0.0094451003541912628, 0.010625737898465172, 0.0094451003541912628, 0.0059031877213695395, 0.0035419126328217238, 0.0082644628099173556, 0.0047225501770956314, 0.90909090909090906, 0.18446601941747573, 0.038834951456310676, 0.0097087378640776691, 0.058252427184466021, 0.077669902912621352, 0.048543689320388349, 0.12621359223300971, 0.0097087378640776691, 0.019417475728155338, 0.019417475728155338, 0.22330097087378642, 0.048543689320388349, 0.029126213592233011, 0.10679611650485436, 0.35714285714285715, 0.071428571428571425, 0.14285714285714285, 0.071428571428571425, 0.2857142857142857, 0.23076923076923078, 0.15384615384615385, 0.30769230769230771, 0.15384615384615385, 0.076923076923076927, 0.61904761904761907, 0.23809523809523808, 0.047619047619047616, 0.16326530612244897, 0.2857142857142857, 0.12244897959183673, 0.12244897959183673, 0.081632653061224483, 0.040816326530612242, 0.10204081632653061, 0.020408163265306121, 0.020408163265306121, 0.020408163265306121, 0.17346938775510204, 0.47959183673469385, 0.061224489795918366, 0.030612244897959183, 0.030612244897959183, 0.020408163265306121, 0.1326530612244898, 0.040816326530612242, 0.01020408163265306, 0.3046875, 0.0859375, 0.0859375, 0.0078125, 0.0703125, 0.0078125, 0.0234375, 0.03125, 0.078125, 0.015625, 0.28125, 0.41666666666666669, 0.41666666666666669, 0.083333333333333329, 0.125, 0.041666666666666664, 0.25, 0.29166666666666669, 0.041666666666666664, 0.16666666666666666, 0.041666666666666664, 0.24242424242424243, 0.32473382473382473, 0.043611793611793612, 0.060810810810810814, 0.093161343161343155, 0.0059377559377559374, 0.073914823914823916, 0.01638001638001638, 0.022727272727272728, 0.015970515970515971, 0.057534807534807532, 0.022727272727272728, 0.0083947583947583948, 0.0042997542997542998, 0.0020475020475020475, 0.0010237510237510238, 0.00081900081900081905, 0.0014332514332514332, 0.0018427518427518428, 0.00020475020475020476, 0.073170731707317069, 0.097560975609756101, 0.024390243902439025, 0.024390243902439025, 0.024390243902439025, 0.65853658536585369, 0.073170731707317069, 0.54545454545454541, 0.22727272727272727, 0.090909090909090912, 0.090909090909090912, 0.41666666666666669, 0.5, 0.36842105263157893, 0.10526315789473684, 0.42105263157894735, 0.12941176470588237, 0.070588235294117646, 0.094117647058823528, 0.047058823529411764, 0.57647058823529407, 0.011764705882352941, 0.011764705882352941, 0.011764705882352941, 0.023529411764705882, 0.54545454545454541, 0.090909090909090912, 0.27272727272727271, 0.237417943107221, 0.1701312910284464, 0.047045951859956234, 0.13785557986870897, 0.073851203501094087, 0.047592997811816196, 0.064004376367614885, 0.033916849015317288, 0.02024070021881838, 0.030634573304157548, 0.041028446389496716, 0.057439824945295405, 0.0092997811816192561, 0.0049234135667396064, 0.0054704595185995622, 0.0071115973741794312, 0.00054704595185995622, 0.0098468271334792128, 0.00054704595185995622, 0.30935251798561153, 0.29496402877697842, 0.0071942446043165471, 0.028776978417266189, 0.014388489208633094, 0.086330935251798566, 0.23741007194244604, 0.0071942446043165471, 0.0071942446043165471, 0.55737704918032782, 0.18032786885245902, 0.016393442622950821, 0.098360655737704916, 0.016393442622950821, 0.081967213114754092, 0.016393442622950821, 0.016393442622950821, 0.24553571428571427, 0.45535714285714285, 0.026785714285714284, 0.03125, 0.026785714285714284, 0.066964285714285712, 0.035714285714285712, 0.022321428571428572, 0.013392857142857142, 0.013392857142857142, 0.040178571428571432, 0.004464285714285714, 0.004464285714285714, 0.0089285714285714281, 0.14285714285714285, 0.7857142857142857, 0.97435897435897434, 0.95238095238095233, 0.18181818181818182, 0.36363636363636365, 0.022727272727272728, 0.090909090909090912, 0.090909090909090912, 0.045454545454545456, 0.090909090909090912, 0.068181818181818177, 0.022727272727272728, 0.20000000000000001, 0.080000000000000002, 0.040000000000000001, 0.10000000000000001, 0.059999999999999998, 0.02, 0.47999999999999998, 0.96296296296296291, 0.19349005424954793, 0.10126582278481013, 0.10081374321880651, 0.039783001808318265, 0.027576853526220614, 0.026220614828209764, 0.065551537070524413, 0.024864376130198915, 0.18580470162748644, 0.1333634719710669, 0.050180831826401449, 0.0085895117540687165, 0.0027124773960216998, 0.010849909584086799, 0.0076853526220614825, 0.00406871609403255, 0.012658227848101266, 0.0018083182640144665, 0.0018083182640144665, 0.086956521739130432, 0.60869565217391308, 0.086956521739130432, 0.13043478260869565, 0.45454545454545453, 0.090909090909090912, 0.27272727272727271, 0.090909090909090912, 0.5, 0.25, 0.083333333333333329, 0.125, 0.33333333333333331, 0.16666666666666666, 0.083333333333333329, 0.25, 0.083333333333333329, 0.083333333333333329, 0.58823529411764708, 0.29411764705882354, 0.11764705882352941, 0.0625, 0.1875, 0.125, 0.125, 0.0625, 0.3125, 0.0625, 0.0625, 0.35714285714285715, 0.071428571428571425, 0.42857142857142855, 0.14285714285714285, 0.31983805668016196, 0.085020242914979755, 0.044534412955465584, 0.0080971659919028341, 0.10526315789473684, 0.35627530364372467, 0.004048582995951417, 0.024291497975708502, 0.0080971659919028341, 0.004048582995951417, 0.028340080971659919, 0.004048582995951417, 0.25892857142857145, 0.044642857142857144, 0.013392857142857142, 0.0625, 0.12946428571428573, 0.45089285714285715, 0.0089285714285714281, 0.004464285714285714, 0.022321428571428572, 0.072413793103448282, 0.1793103448275862, 0.50689655172413794, 0.034482758620689655, 0.034482758620689655, 0.020689655172413793, 0.010344827586206896, 0.041379310344827586, 0.031034482758620689, 0.010344827586206896, 0.0034482758620689655, 0.010344827586206896, 0.017241379310344827, 0.013793103448275862, 0.010344827586206896, 0.086956521739130432, 0.60869565217391308, 0.043478260869565216, 0.086956521739130432, 0.086956521739130432, 0.043478260869565216, 0.095022624434389136, 0.13122171945701358, 0.31221719457013575, 0.0060331825037707393, 0.20965309200603319, 0.0030165912518853697, 0.14027149321266968, 0.0060331825037707393, 0.019607843137254902, 0.0015082956259426848, 0.0015082956259426848, 0.0015082956259426848, 0.0015082956259426848, 0.06485671191553545, 0.0015082956259426848, 0.0030165912518853697, 0.0015082956259426848, 0.30526315789473685, 0.39473684210526316, 0.015789473684210527, 0.021052631578947368, 0.031578947368421054, 0.015789473684210527, 0.005263157894736842, 0.005263157894736842, 0.042105263157894736, 0.11578947368421053, 0.031578947368421054, 0.005263157894736842, 0.005263157894736842, 0.34999999999999998, 0.62, 0.01, 0.29999999999999999, 0.22500000000000001, 0.17499999999999999, 0.10000000000000001, 0.025000000000000001, 0.050000000000000003, 0.050000000000000003, 0.050000000000000003, 0.23076923076923078, 0.38461538461538464, 0.15384615384615385, 0.076923076923076927, 0.16371681415929204, 0.08185840707964602, 0.27433628318584069, 0.088495575221238937, 0.06637168141592921, 0.084070796460176997, 0.030973451327433628, 0.070796460176991149, 0.053097345132743362, 0.026548672566371681, 0.011061946902654867, 0.011061946902654867, 0.017699115044247787, 0.0066371681415929203, 0.0022123893805309734, 0.0022123893805309734, 0.0066371681415929203, 0.080645161290322578, 0.14516129032258066, 0.24193548387096775, 0.048387096774193547, 0.12903225806451613, 0.080645161290322578, 0.064516129032258063, 0.032258064516129031, 0.080645161290322578, 0.032258064516129031, 0.032258064516129031, 0.016129032258064516, 0.81018518518518523, 0.027777777777777776, 0.10185185185185185, 0.0046296296296296294, 0.018518518518518517, 0.0046296296296296294, 0.018518518518518517, 0.098176718092566617, 0.082748948106591863, 0.332398316970547, 0.10799438990182328, 0.064516129032258063, 0.078541374474053294, 0.088359046283309955, 0.032258064516129031, 0.021037868162692847, 0.029453015427769985, 0.023842917251051893, 0.0042075736325385693, 0.0070126227208976155, 0.011220196353436185, 0.0028050490883590462, 0.0014025245441795231, 0.0042075736325385693, 0.0028050490883590462, 0.0084151472650771386, 0.030674846625766871, 0.036809815950920248, 0.32515337423312884, 0.11042944785276074, 0.024539877300613498, 0.2822085889570552, 0.024539877300613498, 0.042944785276073622, 0.012269938650306749, 0.036809815950920248, 0.0061349693251533744, 0.018404907975460124, 0.030674846625766871, 0.0061349693251533744, 0.35106382978723405, 0.22340425531914893, 0.053191489361702128, 0.042553191489361701, 0.095744680851063829, 0.010638297872340425, 0.10638297872340426, 0.021276595744680851, 0.053191489361702128, 0.010638297872340425, 0.13636363636363635, 0.72727272727272729, 0.045454545454545456, 0.030303030303030304, 0.030303030303030304, 0.15151515151515152, 0.12121212121212122, 0.60606060606060608, 0.26744186046511625, 0.015503875968992248, 0.023255813953488372, 0.0077519379844961239, 0.17054263565891473, 0.12403100775193798, 0.37209302325581395, 0.003875968992248062, 0.33333333333333331, 0.22222222222222221, 0.055555555555555552, 0.055555555555555552, 0.1111111111111111, 0.16666666666666666, 0.071428571428571425, 0.2857142857142857, 0.21428571428571427, 0.35714285714285715, 0.55818965517241381, 0.33836206896551724, 0.0043103448275862068, 0.0021551724137931034, 0.058189655172413791, 0.0021551724137931034, 0.023706896551724137, 0.0021551724137931034, 0.0021551724137931034, 0.0021551724137931034, 0.0021551724137931034, 0.0021551724137931034, 0.0021551724137931034, 0.28199999999999997, 0.377, 0.034000000000000002, 0.025000000000000001, 0.019, 0.01, 0.021000000000000001, 0.024, 0.044999999999999998, 0.027, 0.049000000000000002, 0.021999999999999999, 0.010999999999999999, 0.002, 0.040000000000000001, 0.0030000000000000001, 0.0060000000000000001, 0.002, 0.002, 0.25434439178515006, 0.13270142180094788, 0.09004739336492891, 0.07266982622432859, 0.083728278041074244, 0.1263823064770932, 0.067930489731437602, 0.047393364928909949, 0.039494470774091628, 0.011058451816745656, 0.023696682464454975, 0.0078988941548183249, 0.012638230647709321, 0.0047393364928909956, 0.0078988941548183249, 0.0047393364928909956, 0.0047393364928909956, 0.0047393364928909956, 0.0015797788309636651, 0.22823529411764706, 0.25882352941176473, 0.080000000000000002, 0.035294117647058823, 0.070588235294117646, 0.054117647058823527, 0.047058823529411764, 0.061176470588235297, 0.072941176470588232, 0.025882352941176471, 0.040000000000000001, 0.002352941176470588, 0.007058823529411765, 0.002352941176470588, 0.0047058823529411761, 0.0047058823529411761, 0.002352941176470588, 0.002352941176470588, 0.14285714285714285, 0.6428571428571429, 0.071428571428571425, 0.14285714285714285, 0.30410958904109592, 0.14794520547945206, 0.035616438356164383, 0.060273972602739728, 0.057534246575342465, 0.054794520547945202, 0.10684931506849316, 0.027397260273972601, 0.010958904109589041, 0.046575342465753428, 0.021917808219178082, 0.035616438356164383, 0.010958904109589041, 0.00821917808219178, 0.0054794520547945206, 0.024657534246575342, 0.010958904109589041, 0.024657534246575342, 0.0054794520547945206, 0.14285714285714285, 0.7142857142857143, 0.071428571428571425, 0.010135135135135136, 0.010135135135135136, 0.35810810810810811, 0.033783783783783786, 0.5033783783783784, 0.043918918918918921, 0.010135135135135136, 0.0067567567567567571, 0.0067567567567567571, 0.0033783783783783786, 0.0067567567567567571, 0.066666666666666666, 0.8666666666666667, 0.81512605042016806, 0.11764705882352941, 0.0084033613445378148, 0.01680672268907563, 0.025210084033613446, 0.17391304347826086, 0.68322981366459623, 0.0062111801242236021, 0.0062111801242236021, 0.012422360248447204, 0.068322981366459631, 0.024844720496894408, 0.012422360248447204, 0.23228346456692914, 0.23425196850393701, 0.12795275590551181, 0.027559055118110236, 0.14566929133858267, 0.05905511811023622, 0.051181102362204724, 0.033464566929133861, 0.023622047244094488, 0.017716535433070866, 0.003937007874015748, 0.007874015748031496, 0.001968503937007874, 0.027559055118110236, 0.001968503937007874, 0.125, 0.5, 0.125, 0.041666666666666664, 0.041666666666666664, 0.083333333333333329, 0.21181556195965417, 0.15417867435158503, 0.13976945244956773, 0.012968299711815562, 0.2737752161383285, 0.1037463976945245, 0.021613832853025938, 0.017291066282420751, 0.005763688760806916, 0.001440922190201729, 0.001440922190201729, 0.0043227665706051877, 0.001440922190201729, 0.041786743515850142, 0.001440922190201729, 0.0043227665706051877, 0.001440922190201729, 0.001440922190201729, 0.375, 0.1875, 0.09375, 0.15625, 0.0625, 0.03125, 0.03125, 0.03125, 0.10638297872340426, 0.21276595744680851, 0.063829787234042548, 0.085106382978723402, 0.042553191489361701, 0.021276595744680851, 0.21276595744680851, 0.063829787234042548, 0.1276595744680851, 0.021276595744680851, 0.17757009345794392, 0.51401869158878499, 0.07476635514018691, 0.056074766355140186, 0.0093457943925233638, 0.028037383177570093, 0.018691588785046728, 0.093457943925233641, 0.0093457943925233638, 0.41666666666666669, 0.083333333333333329, 0.25, 0.16666666666666666, 0.30009775171065495, 0.2649071358748778, 0.048875855327468229, 0.075268817204301078, 0.015640273704789834, 0.019550342130987292, 0.047898338220918865, 0.016617790811339198, 0.086021505376344093, 0.017595307917888565, 0.04398826979472141, 0.024437927663734114, 0.0048875855327468231, 0.0048875855327468231, 0.0019550342130987292, 0.0019550342130987292, 0.016617790811339198, 0.0097751710654936461, 0.00097751710654936461, 0.072164948453608241, 0.1134020618556701, 0.041237113402061855, 0.020618556701030927, 0.041237113402061855, 0.55670103092783507, 0.041237113402061855, 0.051546391752577317, 0.010309278350515464, 0.010309278350515464, 0.010309278350515464, 0.010309278350515464, 0.064516129032258063, 0.32258064516129031, 0.064516129032258063, 0.064516129032258063, 0.12903225806451613, 0.096774193548387094, 0.25806451612903225, 0.15282392026578073, 0.15282392026578073, 0.19269102990033224, 0.019933554817275746, 0.016611295681063124, 0.18604651162790697, 0.039867109634551492, 0.10299003322259136, 0.0033222591362126247, 0.016611295681063124, 0.0066445182724252493, 0.0099667774086378731, 0.083056478405315617, 0.0099667774086378731, 0.0033222591362126247, 0.16129032258064516, 0.010752688172043012, 0.053763440860215055, 0.63440860215053763, 0.053763440860215055, 0.010752688172043012, 0.053763440860215055, 0.27857142857142858, 0.19285714285714287, 0.11428571428571428, 0.035714285714285712, 0.042857142857142858, 0.057142857142857141, 0.17857142857142858, 0.0071428571428571426, 0.042857142857142858, 0.035714285714285712, 0.0071428571428571426, 0.10000000000000001, 0.025000000000000001, 0.087499999999999994, 0.025000000000000001, 0.025000000000000001, 0.012500000000000001, 0.63749999999999996, 0.050000000000000003, 0.12244897959183673, 0.14285714285714285, 0.030612244897959183, 0.071428571428571425, 0.061224489795918366, 0.55102040816326525, 0.30555555555555558, 0.37037037037037035, 0.018518518518518517, 0.07407407407407407, 0.046296296296296294, 0.055555555555555552, 0.0092592592592592587, 0.018518518518518517, 0.083333333333333329, 0.018518518518518517, 0.24633431085043989, 0.20527859237536658, 0.21994134897360704, 0.0087976539589442824, 0.02932551319648094, 0.079178885630498533, 0.0058651026392961877, 0.0029325513196480938, 0.032258064516129031, 0.14956011730205279, 0.011730205278592375, 0.0029325513196480938, 0.0029325513196480938, 0.085714285714285715, 0.028571428571428571, 0.11428571428571428, 0.65714285714285714, 0.057142857142857141, 0.028571428571428571, 0.028571428571428571, 0.22727272727272727, 0.31818181818181818, 0.045454545454545456, 0.090909090909090912, 0.13636363636363635, 0.13636363636363635, 0.045454545454545456, 0.0625, 0.0625, 0.8125, 0.25, 0.4375, 0.015625, 0.109375, 0.015625, 0.015625, 0.015625, 0.109375, 0.015625, 0.015625, 0.34235552304316019, 0.29334308705193857, 0.01755669348939283, 0.043160204828090708, 0.038771031455742504, 0.097293343087051939, 0.029992684711046085, 0.011704462326261888, 0.037307973664959769, 0.0051207022677395757, 0.032187271397220191, 0.0043891733723482075, 0.0058522311631309439, 0.008778346744696415, 0.010241404535479151, 0.002926115581565472, 0.008778346744696415, 0.0065837600585223113, 0.001463057790782736, 0.16666666666666666, 0.064102564102564097, 0.14102564102564102, 0.05128205128205128, 0.076923076923076927, 0.11538461538461539, 0.089743589743589744, 0.16666666666666666, 0.01282051282051282, 0.01282051282051282, 0.01282051282051282, 0.038461538461538464, 0.02564102564102564, 0.22103386809269163, 0.096256684491978606, 0.13903743315508021, 0.030303030303030304, 0.40819964349376114, 0.0035650623885918001, 0.019607843137254902, 0.033868092691622102, 0.0017825311942959001, 0.0035650623885918001, 0.0035650623885918001, 0.0053475935828877002, 0.012477718360071301, 0.0035650623885918001, 0.012477718360071301, 0.0017825311942959001, 0.0017825311942959001, 0.0071301247771836003, 0.21428571428571427, 0.071428571428571425, 0.42857142857142855, 0.071428571428571425, 0.071428571428571425, 0.14285714285714285, 0.30769230769230771, 0.35164835164835168, 0.054945054945054944, 0.15384615384615385, 0.02197802197802198, 0.01098901098901099, 0.02197802197802198, 0.02197802197802198, 0.032967032967032968, 0.01098901098901099, 0.1328125, 0.11328125, 0.25390625, 0.2421875, 0.00390625, 0.015625, 0.00390625, 0.02734375, 0.03125, 0.00390625, 0.07421875, 0.01171875, 0.00390625, 0.00390625, 0.07421875, 0.20000000000000001, 0.23999999999999999, 0.040000000000000001, 0.20000000000000001, 0.12, 0.080000000000000002, 0.080000000000000002, 0.040000000000000001, 0.040000000000000001, 0.098039215686274508, 0.11764705882352941, 0.31372549019607843, 0.019607843137254902, 0.25490196078431371, 0.039215686274509803, 0.078431372549019607, 0.039215686274509803, 0.039215686274509803, 0.30827067669172931, 0.21804511278195488, 0.0037593984962406013, 0.056390977443609019, 0.10526315789473684, 0.0075187969924812026, 0.16165413533834586, 0.0075187969924812026, 0.011278195488721804, 0.060150375939849621, 0.037593984962406013, 0.015037593984962405, 0.0037593984962406013, 0.0037593984962406013, 0.20000000000000001, 0.53333333333333333, 0.13333333333333333, 0.066666666666666666, 0.28671328671328672, 0.25174825174825177, 0.017482517482517484, 0.01048951048951049, 0.024475524475524476, 0.027972027972027972, 0.013986013986013986, 0.0034965034965034965, 0.01048951048951049, 0.30769230769230771, 0.038461538461538464, 0.0034965034965034965, 0.25714285714285712, 0.48571428571428571, 0.042857142857142858, 0.014285714285714285, 0.028571428571428571, 0.071428571428571425, 0.057142857142857141, 0.042857142857142858, 0.27000000000000002, 0.26000000000000001, 0.16, 0.115, 0.014999999999999999, 0.040000000000000001, 0.0050000000000000001, 0.035000000000000003, 0.0050000000000000001, 0.035000000000000003, 0.029999999999999999, 0.014999999999999999, 0.0050000000000000001, 0.46666666666666667, 0.066666666666666666, 0.066666666666666666, 0.066666666666666666, 0.26666666666666666, 0.20689655172413793, 0.055172413793103448, 0.034482758620689655, 0.034482758620689655, 0.48275862068965519, 0.0068965517241379309, 0.15172413793103448, 0.0068965517241379309, 0.33333333333333331, 0.33333333333333331, 0.033333333333333333, 0.23333333333333334, 0.033333333333333333, 0.21052631578947367, 0.31578947368421051, 0.10526315789473684, 0.10526315789473684, 0.15789473684210525, 0.052631578947368418, 0.625, 0.125, 0.03125, 0.15625, 0.16666666666666666, 0.1744186046511628, 0.031007751937984496, 0.015503875968992248, 0.062015503875968991, 0.01937984496124031, 0.003875968992248062, 0.01937984496124031, 0.36046511627906974, 0.12403100775193798, 0.015503875968992248, 0.17209302325581396, 0.15813953488372093, 0.088372093023255813, 0.055813953488372092, 0.07441860465116279, 0.051162790697674418, 0.027906976744186046, 0.12558139534883722, 0.083720930232558138, 0.051162790697674418, 0.027906976744186046, 0.013953488372093023, 0.0093023255813953487, 0.023255813953488372, 0.0046511627906976744, 0.0046511627906976744, 0.018604651162790697, 0.0046511627906976744, 0.19327731092436976, 0.17647058823529413, 0.084033613445378158, 0.075630252100840331, 0.067226890756302518, 0.042016806722689079, 0.14285714285714285, 0.050420168067226892, 0.067226890756302518, 0.025210084033613446, 0.0084033613445378148, 0.033613445378151259, 0.0084033613445378148, 0.01680672268907563, 0.22413793103448276, 0.051724137931034482, 0.22413793103448276, 0.086206896551724144, 0.10344827586206896, 0.068965517241379309, 0.068965517241379309, 0.068965517241379309, 0.051724137931034482, 0.017241379310344827, 0.017241379310344827, 0.46000000000000002, 0.20666666666666667, 0.052666666666666667, 0.0066666666666666671, 0.038666666666666669, 0.037999999999999999, 0.050000000000000003, 0.035999999999999997, 0.070666666666666669, 0.0053333333333333332, 0.0073333333333333332, 0.0080000000000000002, 0.0013333333333333333, 0.00066666666666666664, 0.0080000000000000002, 0.0033333333333333335, 0.0033333333333333335, 0.0026666666666666666, 0.00066666666666666664, 0.00066666666666666664, 0.043478260869565216, 0.043478260869565216, 0.13043478260869565, 0.2608695652173913, 0.043478260869565216, 0.13043478260869565, 0.043478260869565216, 0.13043478260869565, 0.13043478260869565, 0.25, 0.14999999999999999, 0.29999999999999999, 0.050000000000000003, 0.14999999999999999, 0.10000000000000001, 0.11616161616161616, 0.065656565656565663, 0.13131313131313133, 0.1111111111111111, 0.21212121212121213, 0.10101010101010101, 0.10101010101010101, 0.040404040404040407, 0.040404040404040407, 0.0050505050505050509, 0.040404040404040407, 0.0050505050505050509, 0.010101010101010102, 0.0050505050505050509, 0.2226027397260274, 0.22773972602739725, 0.031678082191780824, 0.047089041095890412, 0.034246575342465752, 0.013698630136986301, 0.047089041095890412, 0.033390410958904111, 0.036815068493150686, 0.032534246575342464, 0.21746575342465754, 0.023116438356164382, 0.0034246575342465752, 0.010273972602739725, 0.0051369863013698627, 0.0059931506849315065, 0.0059931506849315065, 0.00085616438356164379, 0.27272727272727271, 0.54545454545454541, 0.090909090909090912, 0.090909090909090912, 0.22098421541318478, 0.29805013927576601, 0.020427112349117919, 0.16248839368616527, 0.012070566388115135, 0.060352831940575676, 0.047353760445682451, 0.073351903435468893, 0.018570102135561744, 0.020427112349117919, 0.011142061281337047, 0.012999071494893221, 0.0018570102135561746, 0.009285051067780872, 0.025998142989786442, 0.00092850510677808728, 0.0018570102135561746, 0.0018570102135561746, 0.06313993174061433, 0.059726962457337884, 0.3225255972696246, 0.12798634812286688, 0.01877133105802048, 0.0051194539249146756, 0.0068259385665529011, 0.011945392491467578, 0.17064846416382254, 0.068259385665529013, 0.032423208191126277, 0.022184300341296929, 0.0017064846416382253, 0.06655290102389079, 0.011945392491467578, 0.0051194539249146756, 0.0034129692832764505, 0.090909090909090912, 0.090909090909090912, 0.81818181818181823, 0.0043668122270742356, 0.63755458515283847, 0.030567685589519649, 0.0043668122270742356, 0.0087336244541484712, 0.19213973799126638, 0.065502183406113537, 0.0043668122270742356, 0.013100436681222707, 0.030567685589519649, 0.3273381294964029, 0.26978417266187049, 0.014388489208633094, 0.16906474820143885, 0.0071942446043165471, 0.010791366906474821, 0.16546762589928057, 0.0035971223021582736, 0.010791366906474821, 0.0071942446043165471, 0.0071942446043165471, 0.18518518518518517, 0.07407407407407407, 0.07407407407407407, 0.07407407407407407, 0.55555555555555558, 0.22500000000000001, 0.10000000000000001, 0.625, 0.10169491525423729, 0.067796610169491525, 0.22033898305084745, 0.050847457627118647, 0.016949152542372881, 0.016949152542372881, 0.42372881355932202, 0.033898305084745763, 0.050847457627118647, 0.21830985915492956, 0.021126760563380281, 0.084507042253521125, 0.063380281690140844, 0.38380281690140844, 0.017605633802816902, 0.035211267605633804, 0.028169014084507043, 0.07746478873239436, 0.0035211267605633804, 0.0035211267605633804, 0.0070422535211267607, 0.0035211267605633804, 0.042253521126760563, 0.0035211267605633804, 0.11538461538461539, 0.076923076923076927, 0.076923076923076927, 0.73076923076923073, 0.28888888888888886, 0.41111111111111109, 0.033333333333333333, 0.011111111111111112, 0.011111111111111112, 0.22222222222222221, 0.14760914760914762, 0.15592515592515593, 0.020790020790020791, 0.029106029106029108, 0.0041580041580041582, 0.056133056133056136, 0.016632016632016633, 0.043659043659043661, 0.058212058212058215, 0.0020790020790020791, 0.34303534303534305, 0.079002079002079006, 0.0020790020790020791, 0.010395010395010396, 0.010395010395010396, 0.020790020790020791, 0.0020790020790020791, 0.046153846153846156, 0.12307692307692308, 0.08461538461538462, 0.12307692307692308, 0.0076923076923076927, 0.069230769230769235, 0.015384615384615385, 0.015384615384615385, 0.038461538461538464, 0.038461538461538464, 0.29999999999999999, 0.076923076923076927, 0.0076923076923076927, 0.0076923076923076927, 0.015384615384615385, 0.015384615384615385, 0.0076923076923076927, 0.050000000000000003, 0.050000000000000003, 0.050000000000000003, 0.050000000000000003, 0.40000000000000002, 0.050000000000000003, 0.20000000000000001, 0.14999999999999999, 0.23529411764705882, 0.44117647058823528, 0.058823529411764705, 0.029411764705882353, 0.058823529411764705, 0.088235294117647065, 0.029411764705882353, 0.029411764705882353, 0.085858585858585856, 0.010101010101010102, 0.21717171717171718, 0.030303030303030304, 0.07575757575757576, 0.20202020202020202, 0.025252525252525252, 0.13636363636363635, 0.13636363636363635, 0.010101010101010102, 0.015151515151515152, 0.015151515151515152, 0.015151515151515152, 0.010101010101010102, 0.13392857142857142, 0.087053571428571425, 0.16964285714285715, 0.0625, 0.049107142857142856, 0.066964285714285712, 0.091517857142857137, 0.049107142857142856, 0.0625, 0.046875, 0.13392857142857142, 0.0066964285714285711, 0.013392857142857142, 0.002232142857142857, 0.013392857142857142, 0.002232142857142857, 0.004464285714285714, 0.04878048780487805, 0.024390243902439025, 0.48780487804878048, 0.17073170731707318, 0.04878048780487805, 0.04878048780487805, 0.14634146341463414, 0.04878048780487805, 0.25, 0.33333333333333331, 0.16666666666666666, 0.16666666666666666, 0.1875, 0.28125, 0.03125, 0.0625, 0.375, 0.03125, 0.03125, 0.37158469945355194, 0.15846994535519127, 0.01092896174863388, 0.027322404371584699, 0.16393442622950818, 0.016393442622950821, 0.16939890710382513, 0.016393442622950821, 0.032786885245901641, 0.016393442622950821, 0.0054644808743169399, 0.0054644808743169399, 0.0054644808743169399, 0.23076923076923078, 0.19780219780219779, 0.032967032967032968, 0.076923076923076927, 0.065934065934065936, 0.087912087912087919, 0.10989010989010989, 0.10989010989010989, 0.02197802197802198, 0.032967032967032968, 0.01098901098901099, 0.01098901098901099, 0.15555555555555556, 0.28888888888888886, 0.022222222222222223, 0.16666666666666666, 0.011111111111111112, 0.077777777777777779, 0.044444444444444446, 0.022222222222222223, 0.011111111111111112, 0.077777777777777779, 0.077777777777777779, 0.011111111111111112, 0.011111111111111112, 0.090909090909090912, 0.27272727272727271, 0.45454545454545453, 0.090909090909090912, 0.16788321167883211, 0.051094890510948905, 0.35036496350364965, 0.080291970802919707, 0.19708029197080293, 0.0072992700729927005, 0.072992700729927001, 0.014598540145985401, 0.021897810218978103, 0.014598540145985401, 0.0072992700729927005, 0.16666666666666666, 0.27777777777777779, 0.22222222222222221, 0.16666666666666666, 0.1111111111111111, 0.055555555555555552, 0.29829290206648695, 0.47978436657681939, 0.013477088948787063, 0.01078167115902965, 0.10332434860736747, 0.0035938903863432167, 0.022461814914645103, 0.00089847259658580418, 0.0035938903863432167, 0.0071877807726864335, 0.017070979335130278, 0.02605570530098832, 0.00089847259658580418, 0.0089847259658580418, 0.00089847259658580418, 0.00089847259658580418, 0.00089847259658580418, 0.04878048780487805, 0.17073170731707318, 0.073170731707317069, 0.46341463414634149, 0.024390243902439025, 0.073170731707317069, 0.097560975609756101, 0.04878048780487805, 0.33333333333333331, 0.1388888888888889, 0.0046296296296296294, 0.0092592592592592587, 0.20370370370370369, 0.0092592592592592587, 0.10648148148148148, 0.0046296296296296294, 0.013888888888888888, 0.16666666666666666, 0.36363636363636365, 0.16666666666666666, 0.10606060606060606, 0.12121212121212122, 0.045454545454545456, 0.07575757575757576, 0.10606060606060606, 0.10503282275711159, 0.17724288840262581, 0.17943107221006566, 0.18818380743982493, 0.015317286652078774, 0.10503282275711159, 0.024070021881838075, 0.045951859956236324, 0.0021881838074398249, 0.070021881838074396, 0.0043763676148796497, 0.0021881838074398249, 0.015317286652078774, 0.052516411378555797, 0.010940919037199124, 0.0021881838074398249, 0.16981132075471697, 0.45283018867924529, 0.037735849056603772, 0.094339622641509441, 0.16981132075471697, 0.037735849056603772, 0.018867924528301886, 0.51351351351351349, 0.13513513513513514, 0.29729729729729731, 0.058823529411764705, 0.17647058823529413, 0.058823529411764705, 0.058823529411764705, 0.61764705882352944, 0.5, 0.42857142857142855, 0.68421052631578949, 0.21052631578947367, 0.052631578947368418, 0.13013196480938416, 0.10557184750733138, 0.21957478005865103, 0.10483870967741936, 0.021260997067448679, 0.020894428152492667, 0.053885630498533725, 0.050586510263929615, 0.053519061583577714, 0.097140762463343105, 0.074780058651026396, 0.015395894428152493, 0.025293255131964808, 0.0040322580645161289, 0.0036656891495601175, 0.0054985337243401763, 0.0043988269794721412, 0.005131964809384164, 0.0036656891495601175, 0.11764705882352941, 0.058823529411764705, 0.61764705882352944, 0.058823529411764705, 0.029411764705882353, 0.029411764705882353, 0.058823529411764705, 0.1799812030075188, 0.18280075187969924, 0.096334586466165412, 0.1325187969924812, 0.014097744360902255, 0.080357142857142863, 0.043703007518796994, 0.020676691729323307, 0.058740601503759399, 0.034774436090225562, 0.048872180451127817, 0.029605263157894735, 0.035244360902255641, 0.0032894736842105261, 0.0018796992481203006, 0.016917293233082706, 0.0037593984962406013, 0.0098684210526315784, 0.0061090225563909771, 0.00046992481203007516, 0.38095238095238093, 0.047619047619047616, 0.42857142857142855, 0.53846153846153844, 0.15384615384615385, 0.076923076923076927, 0.15384615384615385, 0.047619047619047616, 0.059523809523809521, 0.48214285714285715, 0.077380952380952384, 0.1130952380952381, 0.1130952380952381, 0.023809523809523808, 0.035714285714285712, 0.017857142857142856, 0.023809523809523808, 0.045977011494252873, 0.2413793103448276, 0.068965517241379309, 0.022988505747126436, 0.43678160919540232, 0.045977011494252873, 0.091954022988505746, 0.011494252873563218, 0.022988505747126436, 0.052631578947368418, 0.10526315789473684, 0.31578947368421051, 0.42105263157894735, 0.018867924528301886, 0.32075471698113206, 0.018867924528301886, 0.037735849056603772, 0.11320754716981132, 0.11320754716981132, 0.32075471698113206, 0.018867924528301886, 0.018867924528301886, 0.33333333333333331, 0.5, 0.083333333333333329, 0.4175824175824176, 0.02197802197802198, 0.24175824175824176, 0.24175824175824176, 0.02197802197802198, 0.02197802197802198, 0.01098901098901099, 0.11363636363636363, 0.045454545454545456, 0.65909090909090906, 0.068181818181818177, 0.090909090909090912, 0.73684210526315785, 0.10526315789473684, 0.10526315789473684, 0.058823529411764705, 0.41176470588235292, 0.058823529411764705, 0.058823529411764705, 0.11764705882352941, 0.23529411764705882, 0.32000000000000001, 0.22, 0.040000000000000001, 0.02, 0.02, 0.35999999999999999, 0.95652173913043481, 0.17777777777777778, 0.15555555555555556, 0.10000000000000001, 0.17777777777777778, 0.044444444444444446, 0.022222222222222223, 0.14444444444444443, 0.077777777777777779, 0.033333333333333333, 0.022222222222222223, 0.011111111111111112, 0.033333333333333333, 0.25, 0.43181818181818182, 0.15909090909090909, 0.045454545454545456, 0.090909090909090912, 0.18613861386138614, 0.15247524752475247, 0.095049504950495051, 0.11089108910891089, 0.025742574257425741, 0.079207920792079209, 0.059405940594059403, 0.019801980198019802, 0.011881188118811881, 0.045544554455445543, 0.019801980198019802, 0.14851485148514851, 0.01782178217821782, 0.0059405940594059407, 0.0019801980198019802, 0.0039603960396039604, 0.019801980198019802, 0.050000000000000003, 0.14999999999999999, 0.10000000000000001, 0.20000000000000001, 0.25, 0.050000000000000003, 0.050000000000000003, 0.10000000000000001, 0.050000000000000003, 0.41666666666666669, 0.083333333333333329, 0.16666666666666666, 0.16666666666666666, 0.083333333333333329, 0.16666666666666666, 0.77777777777777779, 0.77319587628865982, 0.030927835051546393, 0.17525773195876287, 0.81818181818181823, 0.090909090909090912, 0.098765432098765427, 0.037037037037037035, 0.07407407407407407, 0.14814814814814814, 0.13580246913580246, 0.18518518518518517, 0.049382716049382713, 0.012345679012345678, 0.024691358024691357, 0.22222222222222221, 0.049180327868852458, 0.05737704918032787, 0.56557377049180324, 0.049180327868852458, 0.0081967213114754103, 0.1721311475409836, 0.016393442622950821, 0.024590163934426229, 0.0081967213114754103, 0.0081967213114754103, 0.024590163934426229, 0.070183281180151991, 0.02637460885113992, 0.26195797943674565, 0.029056772463120252, 0.016092981671881983, 0.053643272239606618, 0.021457308895842648, 0.082253017434063477, 0.15020116227089853, 0.043808672329012067, 0.029950827000447027, 0.16808225301743407, 0.010728654447921324, 0.0062583817612874388, 0.0013410818059901655, 0.0062583817612874388, 0.012963790791238265, 0.0031291908806437194, 0.0058113544926240504, 0.31746031746031744, 0.023809523809523808, 0.031746031746031744, 0.11904761904761904, 0.023809523809523808, 0.0079365079365079361, 0.0079365079365079361, 0.23809523809523808, 0.023809523809523808, 0.0079365079365079361, 0.1984126984126984, 0.22222222222222221, 0.73333333333333328, 0.011111111111111112, 0.29310344827586204, 0.017241379310344827, 0.051724137931034482, 0.13793103448275862, 0.068965517241379309, 0.29310344827586204, 0.10344827586206896, 0.045454545454545456, 0.045454545454545456, 0.40909090909090912, 0.090909090909090912, 0.090909090909090912, 0.13636363636363635, 0.090909090909090912, 0.045454545454545456, 0.94117647058823528, 0.4195121951219512, 0.2097560975609756, 0.053658536585365853, 0.043902439024390241, 0.0097560975609756097, 0.053658536585365853, 0.034146341463414637, 0.097560975609756101, 0.039024390243902439, 0.024390243902439025, 0.0048780487804878049, 0.15384615384615385, 0.55384615384615388, 0.092307692307692313, 0.030769230769230771, 0.015384615384615385, 0.061538461538461542, 0.076923076923076927, 0.052631578947368418, 0.052631578947368418, 0.84210526315789469, 0.59090909090909094, 0.022727272727272728, 0.22727272727272727, 0.11363636363636363, 0.022727272727272728, 0.068965517241379309, 0.034482758620689655, 0.55172413793103448, 0.27586206896551724, 0.034482758620689655, 0.034482758620689655, 0.083333333333333329, 0.79166666666666663, 0.041666666666666664, 0.041666666666666664, 0.4107142857142857, 0.375, 0.071428571428571425, 0.071428571428571425, 0.017857142857142856, 0.017857142857142856, 0.017857142857142856, 0.041666666666666664, 0.29166666666666669, 0.041666666666666664, 0.45833333333333331, 0.083333333333333329, 0.041666666666666664, 0.090909090909090912, 0.84090909090909094, 0.022727272727272728, 0.94444444444444442, 0.026615969581749048, 0.50950570342205326, 0.0076045627376425855, 0.0038022813688212928, 0.011406844106463879, 0.0076045627376425855, 0.053231939163498096, 0.15209125475285171, 0.11406844106463879, 0.038022813688212927, 0.019011406844106463, 0.0038022813688212928, 0.011406844106463879, 0.015209125475285171, 0.0076045627376425855, 0.015209125475285171, 0.0038022813688212928, 0.14705882352941177, 0.21764705882352942, 0.088235294117647065, 0.094117647058823528, 0.12352941176470589, 0.058823529411764705, 0.14705882352941177, 0.058823529411764705, 0.011764705882352941, 0.017647058823529412, 0.023529411764705882, 0.011764705882352941, 0.12295081967213115, 0.016393442622950821, 0.065573770491803282, 0.049180327868852458, 0.049180327868852458, 0.040983606557377046, 0.032786885245901641, 0.073770491803278687, 0.032786885245901641, 0.49180327868852458, 0.0081967213114754103, 0.20000000000000001, 0.080000000000000002, 0.080000000000000002, 0.20000000000000001, 0.35999999999999999, 0.1111111111111111, 0.066666666666666666, 0.044444444444444446, 0.022222222222222223, 0.088888888888888892, 0.35555555555555557, 0.28888888888888886, 0.11764705882352941, 0.76470588235294112, 0.11764705882352941, 0.41666666666666669, 0.5, 0.40000000000000002, 0.10000000000000001, 0.050000000000000003, 0.10000000000000001, 0.025000000000000001, 0.09166666666666666, 0.14166666666666666, 0.025000000000000001, 0.0083333333333333332, 0.0083333333333333332, 0.033333333333333333, 0.034482758620689655, 0.31034482758620691, 0.10344827586206896, 0.034482758620689655, 0.51724137931034486, 0.14285714285714285, 0.82857142857142863, 0.19101123595505617, 0.02247191011235955, 0.011235955056179775, 0.011235955056179775, 0.02247191011235955, 0.12359550561797752, 0.5730337078651685, 0.033707865168539325, 0.3888888888888889, 0.55555555555555558, 0.1984126984126984, 0.33730158730158732, 0.0079365079365079361, 0.28174603174603174, 0.003968253968253968, 0.011904761904761904, 0.0079365079365079361, 0.043650793650793648, 0.003968253968253968, 0.01984126984126984, 0.079365079365079361, 0.69230769230769229, 0.076923076923076927, 0.15384615384615385, 0.25806451612903225, 0.096774193548387094, 0.032258064516129031, 0.096774193548387094, 0.41935483870967744, 0.032258064516129031, 0.054054054054054057, 0.027027027027027029, 0.89189189189189189, 0.027027027027027029, 0.047619047619047616, 0.047619047619047616, 0.76190476190476186, 0.095238095238095233, 0.076923076923076927, 0.84615384615384615, 0.11904761904761904, 0.5714285714285714, 0.16666666666666666, 0.047619047619047616, 0.047619047619047616, 0.12976190476190477, 0.059523809523809521, 0.21666666666666667, 0.054761904761904762, 0.065476190476190479, 0.095238095238095233, 0.076190476190476197, 0.088095238095238101, 0.063095238095238093, 0.022619047619047618, 0.058333333333333334, 0.036904761904761905, 0.0071428571428571426, 0.010714285714285714, 0.0023809523809523812, 0.0083333333333333332, 0.0023809523809523812, 0.0011904761904761906, 0.0023809523809523812, 0.26829268292682928, 0.04878048780487805, 0.097560975609756101, 0.024390243902439025, 0.31707317073170732, 0.14634146341463414, 0.073170731707317069, 0.31565906838453917, 0.19425173439048563, 0.027254707631318136, 0.0059464816650148661, 0.026759167492566897, 0.067888999008919718, 0.032210109018830528, 0.04410307234886026, 0.13627353815659068, 0.0034687809712586719, 0.063429137760158572, 0.043607532210109018, 0.0054509415262636272, 0.0019821605550049554, 0.018830525272547076, 0.0024777006937561942, 0.0059464816650148661, 0.0024777006937561942, 0.00049554013875123884, 0.00049554013875123884, 0.28725701943844495, 0.045356371490280781, 0.0064794816414686825, 0.032397408207343416, 0.034557235421166309, 0.030237580993520519, 0.0064794816414686825, 0.02159827213822894, 0.056155507559395246, 0.27213822894168466, 0.17494600431965443, 0.019438444924406047, 0.0021598272138228943, 0.0086393088552915772, 0.21875, 0.23958333333333334, 0.20833333333333334, 0.052083333333333336, 0.010416666666666666, 0.25, 0.010416666666666666, 0.26970954356846472, 0.2033195020746888, 0.016597510373443983, 0.041493775933609957, 0.070539419087136929, 0.016597510373443983, 0.27385892116182575, 0.029045643153526972, 0.012448132780082987, 0.012448132780082987, 0.024896265560165973, 0.0041493775933609959, 0.0041493775933609959, 0.016597510373443983, 0.0041493775933609959, 0.054452637549631311, 0.12081678956324447, 0.31990924560408396, 0.076574021554169036, 0.035167328417470223, 0.19795802609188884, 0.0028360748723766306, 0.082246171298922296, 0.046511627906976744, 0.0051049347702779354, 0.0079410096426545656, 0.0051049347702779354, 0.0090754395916052191, 0.0039705048213272828, 0.00056721497447532619, 0.020419739081111742, 0.006239364719228588, 0.0028360748723766306, 0.0022688598979013048, 0.047752808988764044, 0.049157303370786519, 0.24719101123595505, 0.18820224719101122, 0.046348314606741575, 0.25140449438202245, 0.015449438202247191, 0.075842696629213488, 0.0084269662921348312, 0.0084269662921348312, 0.0014044943820224719, 0.0084269662921348312, 0.023876404494382022, 0.0056179775280898875, 0.0014044943820224719, 0.0042134831460674156, 0.0014044943820224719, 0.0098314606741573031, 0.0056179775280898875, 0.1134020618556701, 0.030927835051546393, 0.13402061855670103, 0.25773195876288657, 0.072164948453608241, 0.092783505154639179, 0.08247422680412371, 0.072164948453608241, 0.020618556701030927, 0.030927835051546393, 0.020618556701030927, 0.030927835051546393, 0.020618556701030927, 0.020618556701030927, 0.080858085808580851, 0.21287128712871287, 0.27887788778877887, 0.090759075907590761, 0.034653465346534656, 0.070957095709570955, 0.01155115511551155, 0.049504950495049507, 0.077557755775577553, 0.026402640264026403, 0.0099009900990099011, 0.0066006600660066007, 0.018151815181518153, 0.0033003300330033004, 0.0016501650165016502, 0.013201320132013201, 0.0016501650165016502, 0.0016501650165016502, 0.01155115511551155, 0.090909090909090912, 0.36363636363636365, 0.18181818181818182, 0.27272727272727271, 0.92307692307692313, 0.19047619047619047, 0.071428571428571425, 0.23809523809523808, 0.11904761904761904, 0.21428571428571427, 0.047619047619047616, 0.023809523809523808, 0.023809523809523808, 0.047619047619047616, 0.023809523809523808, 0.0625, 0.53125, 0.34375, 0.03125, 0.18103448275862069, 0.1816976127320955, 0.075596816976127315, 0.021883289124668436, 0.034482758620689655, 0.014588859416445624, 0.022546419098143235, 0.011273209549071617, 0.13594164456233421, 0.028514588859416445, 0.22745358090185677, 0.027188328912466843, 0.0039787798408488064, 0.015915119363395226, 0.0053050397877984082, 0.00066312997347480103, 0.0046419098143236073, 0.0066312997347480109, 0.00066312997347480103, 0.0059880239520958087, 0.0029940119760479044, 0.32335329341317365, 0.0044910179640718561, 0.0074850299401197605, 0.0059880239520958087, 0.0044910179640718561, 0.022455089820359281, 0.54491017964071853, 0.043413173652694613, 0.013473053892215569, 0.0029940119760479044, 0.010479041916167664, 0.0014970059880239522, 0.0014970059880239522, 0.0029940119760479044, 0.0014970059880239522, 0.0014970059880239522, 0.12849162011173185, 0.033519553072625698, 0.094972067039106142, 0.039106145251396648, 0.0111731843575419, 0.0111731843575419, 0.0055865921787709499, 0.14525139664804471, 0.12290502793296089, 0.35754189944134079, 0.0111731843575419, 0.0111731843575419, 0.0111731843575419, 0.14942528735632185, 0.068965517241379309, 0.21839080459770116, 0.034482758620689655, 0.011494252873563218, 0.034482758620689655, 0.045977011494252873, 0.19540229885057472, 0.16091954022988506, 0.045977011494252873, 0.011494252873563218, 0.13333333333333333, 0.066666666666666666, 0.66666666666666663, 0.066666666666666666, 0.95238095238095233, 0.023809523809523808, 0.13333333333333333, 0.73333333333333328, 0.066666666666666666, 0.066666666666666666, 0.17708333333333334, 0.12916666666666668, 0.12916666666666668, 0.072916666666666671, 0.027083333333333334, 0.027083333333333334, 0.035416666666666666, 0.10833333333333334, 0.1125, 0.020833333333333332, 0.025000000000000001, 0.010416666666666666, 0.020833333333333332, 0.018749999999999999, 0.066666666666666666, 0.012500000000000001, 0.0020833333333333333, 0.0041666666666666666, 0.0020833333333333333, 0.0020833333333333333, 0.052631578947368418, 0.15789473684210525, 0.73684210526315785, 0.35308441558441561, 0.12337662337662338, 0.064529220779220783, 0.083198051948051951, 0.087662337662337664, 0.013392857142857142, 0.10714285714285714, 0.015016233766233766, 0.02150974025974026, 0.0081168831168831161, 0.012175324675324676, 0.090503246753246752, 0.006899350649350649, 0.00081168831168831174, 0.0093344155844155841, 0.00081168831168831174, 0.00040584415584415587, 0.0016233766233766235, 0.00081168831168831174, 0.23529411764705882, 0.70588235294117652, 0.12121212121212122, 0.060606060606060608, 0.18181818181818182, 0.030303030303030304, 0.090909090909090912, 0.45454545454545453, 0.030303030303030304, 0.2859778597785978, 0.40498154981549817, 0.020295202952029519, 0.022140221402214021, 0.085793357933579339, 0.014760147601476014, 0.045202952029520294, 0.0073800738007380072, 0.023062730627306273, 0.016605166051660517, 0.034132841328413287, 0.0083025830258302586, 0.01107011070110701, 0.012915129151291513, 0.0027675276752767526, 0.0009225092250922509, 0.0009225092250922509, 0.0018450184501845018, 0.0009225092250922509, 0.30434782608695654, 0.21739130434782608, 0.43478260869565216, 0.043478260869565216, 0.14130434782608695, 0.097826086956521743, 0.30434782608695654, 0.10869565217391304, 0.086956521739130432, 0.043478260869565216, 0.05434782608695652, 0.021739130434782608, 0.010869565217391304, 0.032608695652173912, 0.05434782608695652, 0.010869565217391304, 0.021739130434782608, 0.010869565217391304, 0.32872503840245776, 0.22887864823348694, 0.0061443932411674347, 0.095238095238095233, 0.050691244239631339, 0.061443932411674347, 0.039938556067588324, 0.078341013824884786, 0.024577572964669739, 0.036866359447004608, 0.0030721966205837174, 0.010752688172043012, 0.0015360983102918587, 0.0030721966205837174, 0.0061443932411674347, 0.010752688172043012, 0.0092165898617511521, 0.0015360983102918587, 0.46666666666666667, 0.13333333333333333, 0.066666666666666666, 0.33333333333333331, 0.28301886792452829, 0.28301886792452829, 0.037735849056603772, 0.075471698113207544, 0.037735849056603772, 0.075471698113207544, 0.037735849056603772, 0.018867924528301886, 0.11320754716981132, 0.018867924528301886, 0.16721311475409836, 0.065573770491803282, 0.17704918032786884, 0.13114754098360656, 0.072131147540983612, 0.013114754098360656, 0.059016393442622953, 0.072131147540983612, 0.14098360655737704, 0.022950819672131147, 0.0065573770491803279, 0.055737704918032788, 0.0065573770491803279, 0.0032786885245901639, 0.0032786885245901639, 0.23170731707317074, 0.036585365853658534, 0.06097560975609756, 0.036585365853658534, 0.12195121951219512, 0.15853658536585366, 0.12195121951219512, 0.012195121951219513, 0.097560975609756101, 0.10975609756097561, 0.9375, 0.27272727272727271, 0.45454545454545453, 0.18181818181818182, 0.090909090909090912, 0.13043478260869565, 0.28260869565217389, 0.10869565217391304, 0.021739130434782608, 0.043478260869565216, 0.13043478260869565, 0.086956521739130432, 0.13043478260869565, 0.043478260869565216, 0.96969696969696972, 0.18843584427551255, 0.15733701912001843, 0.016355678415111725, 0.1455885740612762, 0.046763418567150425, 0.024879060124395301, 0.035706058511863627, 0.027643400138217002, 0.0071412117023727248, 0.0608154803040774, 0.082469477079014059, 0.18336788758350611, 0.010135913384012899, 0.0048375950241879755, 0.0029947016816401751, 0.00092144667127389999, 0.00046072333563695, 0.0027643400138217, 0.0016125316747293251, 0.031746031746031744, 0.015873015873015872, 0.46031746031746029, 0.031746031746031744, 0.031746031746031744, 0.2857142857142857, 0.095238095238095233, 0.031746031746031744, 0.015873015873015872, 0.31578947368421051, 0.63157894736842102, 0.15384615384615385, 0.076923076923076927, 0.30769230769230771, 0.15384615384615385, 0.15384615384615385, 0.15384615384615385, 0.20000000000000001, 0.050000000000000003, 0.69999999999999996, 0.14285714285714285, 0.8571428571428571, 0.41818181818181815, 0.072727272727272724, 0.10909090909090909, 0.090909090909090912, 0.072727272727272724, 0.054545454545454543, 0.10909090909090909, 0.054545454545454543, 0.018181818181818181, 0.95238095238095233, 0.047619047619047616, 0.047619047619047616, 0.047619047619047616, 0.80952380952380953, 0.28465804066543438, 0.18484288354898337, 0.016635859519408502, 0.21996303142329021, 0.031423290203327174, 0.022181146025878003, 0.10905730129390019, 0.060998151571164512, 0.0018484288354898336, 0.012939001848428836, 0.0018484288354898336, 0.0018484288354898336, 0.0036968576709796672, 0.0055452865064695009, 0.040665434380776341, 0.21428571428571427, 0.35714285714285715, 0.071428571428571425, 0.14285714285714285, 0.071428571428571425, 0.14285714285714285, 0.047619047619047616, 0.76190476190476186, 0.35714285714285715, 0.071428571428571425, 0.071428571428571425, 0.071428571428571425, 0.14285714285714285, 0.14285714285714285, 0.14285714285714285, 0.069444444444444448, 0.013888888888888888, 0.27777777777777779, 0.041666666666666664, 0.041666666666666664, 0.29166666666666669, 0.027777777777777776, 0.027777777777777776, 0.18055555555555555, 0.013888888888888888, 0.013888888888888888, 0.30769230769230771, 0.23076923076923078, 0.076923076923076927, 0.30769230769230771, 0.083333333333333329, 0.83333333333333337, 0.42758620689655175, 0.07586206896551724, 0.15172413793103448, 0.013793103448275862, 0.068965517241379309, 0.10344827586206896, 0.0068965517241379309, 0.013793103448275862, 0.1103448275862069, 0.0068965517241379309, 0.0068965517241379309, 0.076923076923076927, 0.38461538461538464, 0.15384615384615385, 0.23076923076923078, 0.61538461538461542, 0.23076923076923078, 0.1111111111111111, 0.83333333333333337, 0.1111111111111111, 0.1111111111111111, 0.16666666666666666, 0.1111111111111111, 0.22222222222222221, 0.1111111111111111, 0.1111111111111111, 0.2857142857142857, 0.071428571428571425, 0.071428571428571425, 0.5, 0.89559164733178653, 0.041763341067285381, 0.0092807424593967514, 0.0023201856148491878, 0.027842227378190254, 0.0023201856148491878, 0.0046403712296983757, 0.0023201856148491878, 0.0069605568445475635, 0.0023201856148491878, 0.0625, 0.375, 0.25, 0.1875, 0.0625, 0.12267080745341614, 0.094720496894409936, 0.24068322981366461, 0.14285714285714285, 0.043478260869565216, 0.083850931677018639, 0.04192546583850932, 0.05434782608695652, 0.027950310559006212, 0.059006211180124224, 0.04813664596273292, 0.009316770186335404, 0.009316770186335404, 0.0015527950310559005, 0.0015527950310559005, 0.0015527950310559005, 0.0062111801242236021, 0.003105590062111801, 0.007763975155279503, 0.8125, 0.125, 0.025862068965517241, 0.012931034482758621, 0.077586206896551727, 0.0043103448275862068, 0.025862068965517241, 0.03017241379310345, 0.71551724137931039, 0.021551724137931036, 0.0043103448275862068, 0.025862068965517241, 0.0043103448275862068, 0.047413793103448273, 0.1388888888888889, 0.29166666666666669, 0.069444444444444448, 0.19444444444444445, 0.041666666666666664, 0.027777777777777776, 0.16666666666666666, 0.027777777777777776, 0.027777777777777776, 0.4375, 0.3125, 0.125, 0.125, 0.20000000000000001, 0.43636363636363634, 0.072727272727272724, 0.14545454545454545, 0.054545454545454543, 0.018181818181818181, 0.018181818181818181, 0.036363636363636362, 0.12824427480916031, 0.15572519083969466, 0.029007633587786259, 0.042748091603053436, 0.18778625954198475, 0.051908396946564885, 0.010687022900763359, 0.10687022900763359, 0.18625954198473282, 0.0045801526717557254, 0.0061068702290076335, 0.0030534351145038168, 0.0061068702290076335, 0.018320610687022901, 0.016793893129770993, 0.0061068702290076335, 0.01984732824427481, 0.016793893129770993, 0.0015267175572519084, 0.0030534351145038168, 0.17241379310344829, 0.034482758620689655, 0.10344827586206896, 0.034482758620689655, 0.068965517241379309, 0.55172413793103448, 0.10280373831775701, 0.12461059190031153, 0.0062305295950155761, 0.0062305295950155761, 0.0062305295950155761, 0.0031152647975077881, 0.0062305295950155761, 0.71339563862928346, 0.0031152647975077881, 0.012461059190031152, 0.0062305295950155761, 0.0031152647975077881, 0.15384615384615385, 0.30769230769230771, 0.30769230769230771, 0.15384615384615385, 0.076923076923076927, 0.055932203389830508, 0.0067796610169491523, 0.022033898305084745, 0.032203389830508473, 0.0033898305084745762, 0.0016949152542372881, 0.0084745762711864406, 0.0033898305084745762, 0.82372881355932204, 0.011864406779661017, 0.015254237288135594, 0.0084745762711864406, 0.0016949152542372881, 0.0016949152542372881, 0.0016949152542372881, 0.086124401913875603, 0.062200956937799042, 0.0095693779904306216, 0.0047846889952153108, 0.0047846889952153108, 0.76555023923444976, 0.033492822966507178, 0.019138755980861243, 0.76470588235294112, 0.11764705882352941, 0.058823529411764705, 0.125, 0.125, 0.125, 0.3125, 0.1875, 0.0625, 0.044776119402985072, 0.082089552238805971, 0.34328358208955223, 0.17350746268656717, 0.026119402985074626, 0.061567164179104475, 0.016791044776119403, 0.046641791044776122, 0.050373134328358209, 0.039179104477611942, 0.011194029850746268, 0.007462686567164179, 0.076492537313432835, 0.0018656716417910447, 0.007462686567164179, 0.0018656716417910447, 0.011194029850746268, 0.095238095238095233, 0.095238095238095233, 0.76190476190476186, 0.88461538461538458, 0.076923076923076927, 0.5, 0.083333333333333329, 0.33333333333333331, 0.083333333333333329, 0.22857142857142856, 0.62857142857142856, 0.071428571428571425, 0.028571428571428571, 0.028571428571428571, 0.14000000000000001, 0.01, 0.080000000000000002, 0.14333333333333334, 0.21333333333333335, 0.14000000000000001, 0.043333333333333335, 0.089999999999999997, 0.076666666666666661, 0.0033333333333333335, 0.016666666666666666, 0.0033333333333333335, 0.0033333333333333335, 0.02, 0.0066666666666666671, 0.01020408163265306, 0.5, 0.096938775510204078, 0.096938775510204078, 0.081632653061224483, 0.045918367346938778, 0.051020408163265307, 0.056122448979591837, 0.040816326530612242, 0.0051020408163265302, 0.015306122448979591, 0.12698412698412698, 0.047619047619047616, 0.80952380952380953, 0.18181818181818182, 0.72727272727272729, 0.090909090909090912, 0.071428571428571425, 0.2857142857142857, 0.35714285714285715, 0.14285714285714285, 0.071428571428571425, 0.034482758620689655, 0.43103448275862066, 0.068965517241379309, 0.051724137931034482, 0.086206896551724144, 0.20689655172413793, 0.051724137931034482, 0.034482758620689655, 0.30769230769230771, 0.15384615384615385, 0.076923076923076927, 0.076923076923076927, 0.15384615384615385, 0.15384615384615385, 0.5714285714285714, 0.14285714285714285, 0.14285714285714285, 0.095238095238095233, 0.1119942196531792, 0.067196531791907516, 0.046242774566473986, 0.029624277456647398, 0.016618497109826588, 0.048410404624277453, 0.031791907514450865, 0.33092485549132949, 0.10332369942196531, 0.13222543352601157, 0.002167630057803468, 0.059248554913294796, 0.0065028901734104048, 0.002167630057803468, 0.0036127167630057803, 0.0036127167630057803, 0.0028901734104046241, 0.0014450867052023121, 0.00072254335260115603, 0.0068965517241379309, 0.048275862068965517, 0.0068965517241379309, 0.0068965517241379309, 0.1793103448275862, 0.0068965517241379309, 0.57931034482758625, 0.15172413793103448, 0.0068965517241379309, 0.0068965517241379309, 0.00090744101633393826, 0.00090744101633393826, 0.099818511796733206, 0.0045372050816696917, 0.00090744101633393826, 0.67332123411978217, 0.07985480943738657, 0.080762250453720513, 0.00090744101633393826, 0.013611615245009074, 0.041742286751361164, 0.00090744101633393826, 0.0018148820326678765, 0.13291139240506328, 0.70886075949367089, 0.069620253164556958, 0.031645569620253167, 0.0063291139240506328, 0.025316455696202531, 0.0063291139240506328, 0.54545454545454541, 0.27272727272727271, 0.090909090909090912, 0.11627906976744186, 0.58139534883720934, 0.069767441860465115, 0.046511627906976744, 0.13953488372093023, 0.023255813953488372, 0.16666666666666666, 0.66666666666666663, 0.083333333333333329, 0.020833333333333332, 0.041666666666666664, 0.26041666666666669, 0.11458333333333333, 0.005208333333333333, 0.036458333333333336, 0.020833333333333332, 0.11458333333333333, 0.24479166666666666, 0.083333333333333329, 0.020833333333333332, 0.005208333333333333, 0.015625, 0.005208333333333333, 0.005208333333333333, 0.010416666666666666, 0.034482758620689655, 0.2413793103448276, 0.068965517241379309, 0.034482758620689655, 0.034482758620689655, 0.20689655172413793, 0.20689655172413793, 0.13793103448275862, 0.034482758620689655, 0.0021645021645021645, 0.8528138528138528, 0.010822510822510822, 0.012987012987012988, 0.054112554112554112, 0.010822510822510822, 0.02813852813852814, 0.010822510822510822, 0.008658008658008658, 0.0021645021645021645, 0.0021645021645021645, 0.24096385542168675, 0.2289156626506024, 0.012048192771084338, 0.14457831325301204, 0.10843373493975904, 0.03614457831325301, 0.012048192771084338, 0.03614457831325301, 0.072289156626506021, 0.084337349397590355, 0.25, 0.10714285714285714, 0.2857142857142857, 0.071428571428571425, 0.25, 0.11578112609040445, 0.22997620935765264, 0.16019032513877876, 0.21649484536082475, 0.043616177636796191, 0.041237113402061855, 0.041237113402061855, 0.017446471054718478, 0.0071371927042030133, 0.045995241871530534, 0.021411578112609041, 0.015860428231562251, 0.023790642347343377, 0.0015860428231562252, 0.0063441712926249009, 0.0031720856463124504, 0.00079302141157811261, 0.0039651070578905628, 0.0055511498810467885, 0.01, 0.089999999999999997, 0.52000000000000002, 0.20999999999999999, 0.080000000000000002, 0.01, 0.01, 0.029999999999999999, 0.040000000000000001, 0.46666666666666667, 0.066666666666666666, 0.20000000000000001, 0.20000000000000001, 0.46666666666666667, 0.33333333333333331, 0.13333333333333333, 0.5, 0.038461538461538464, 0.038461538461538464, 0.076923076923076927, 0.30769230769230771, 0.20512820512820512, 0.48717948717948717, 0.05128205128205128, 0.076923076923076927, 0.12820512820512819, 0.02564102564102564, 0.02564102564102564, 0.035714285714285712, 0.8571428571428571, 0.071428571428571425, 0.23000000000000001, 0.37428571428571428, 0.22714285714285715, 0.0042857142857142859, 0.022857142857142857, 0.0014285714285714286, 0.021428571428571429, 0.018571428571428572, 0.031428571428571431, 0.012857142857142857, 0.0057142857142857143, 0.032857142857142856, 0.0042857142857142859, 0.0028571428571428571, 0.0042857142857142859, 0.0014285714285714286, 0.0014285714285714286, 0.0014285714285714286, 0.16477272727272727, 0.068181818181818177, 0.17613636363636365, 0.10795454545454546, 0.14772727272727273, 0.16477272727272727, 0.039772727272727272, 0.079545454545454544, 0.017045454545454544, 0.005681818181818182, 0.005681818181818182, 0.017045454545454544, 0.055555555555555552, 0.44444444444444442, 0.22222222222222221, 0.055555555555555552, 0.083333333333333329, 0.083333333333333329, 0.17073170731707318, 0.024390243902439025, 0.26829268292682928, 0.14634146341463414, 0.04878048780487805, 0.12195121951219512, 0.024390243902439025, 0.17073170731707318, 0.46666666666666667, 0.066666666666666666, 0.26666666666666666, 0.066666666666666666, 0.066666666666666666, 0.02188782489740082, 0.043775649794801641, 0.34473324213406292, 0.12722298221614228, 0.016415868673050615, 0.087551299589603282, 0.054719562243502051, 0.10259917920656635, 0.077975376196990423, 0.047879616963064295, 0.023255813953488372, 0.0027359781121751026, 0.009575923392612859, 0.0013679890560875513, 0.0041039671682626538, 0.013679890560875513, 0.0013679890560875513, 0.0068399452804377564, 0.01094391244870041, 0.032258064516129031, 0.016129032258064516, 0.016129032258064516, 0.064516129032258063, 0.032258064516129031, 0.66129032258064513, 0.11290322580645161, 0.032258064516129031, 0.016129032258064516, 0.28125, 0.6875, 0.020833333333333332, 0.017857142857142856, 0.0059523809523809521, 0.47023809523809523, 0.041666666666666664, 0.053571428571428568, 0.047619047619047616, 0.02976190476190476, 0.19047619047619047, 0.083333333333333329, 0.011904761904761904, 0.0059523809523809521, 0.0059523809523809521, 0.011904761904761904, 0.023809523809523808, 0.0059523809523809521, 0.22222222222222221, 0.55555555555555558, 0.1111111111111111, 0.18384649709950915, 0.20838911200356983, 0.078090138331102191, 0.031236055332440876, 0.037706381079875055, 0.024765729585006693, 0.036367692994199015, 0.014056224899598393, 0.032128514056224897, 0.090584560464078534, 0.083221775992860333, 0.14301651048639, 0.010932619366354306, 0.0024542614904060687, 0.012271307452030344, 0.0033467202141900937, 0.0033467202141900937, 0.0029004908522980814, 0.00089245872378402495, 0.00044622936189201248, 0.17840375586854459, 0.10563380281690141, 0.046948356807511735, 0.032863849765258218, 0.051643192488262914, 0.056338028169014086, 0.028169014084507043, 0.049295774647887321, 0.3380281690140845, 0.018779342723004695, 0.018779342723004695, 0.016431924882629109, 0.0023474178403755869, 0.018779342723004695, 0.0023474178403755869, 0.023474178403755867, 0.011737089201877934, 0.25212646445193387, 0.25838549189536192, 0.044936607286149899, 0.039159043492216335, 0.025999037072701011, 0.056010271224522547, 0.025838549189536191, 0.029289038677579843, 0.031535869041887335, 0.037634408602150539, 0.053522709035467825, 0.11595249558658322, 0.0044134167870325787, 0.0031295137217140106, 0.0069009789760873051, 0.0032900016048788318, 0.0036109773712084737, 0.0069009789760873051, 0.001203659123736158, 0.00016048788316482104, 0.26666666666666666, 0.44444444444444442, 0.1111111111111111, 0.066666666666666666, 0.066666666666666666, 0.022222222222222223, 0.38405797101449274, 0.036231884057971016, 0.010869565217391304, 0.021739130434782608, 0.028985507246376812, 0.34420289855072461, 0.0036231884057971015, 0.014492753623188406, 0.014492753623188406, 0.097826086956521743, 0.014492753623188406, 0.0036231884057971015, 0.007246376811594203, 0.0036231884057971015, 0.007246376811594203, 0.72727272727272729, 0.090909090909090912, 0.090909090909090912, 0.12474012474012475, 0.079002079002079006, 0.20582120582120583, 0.072765072765072769, 0.10395010395010396, 0.17047817047817049, 0.060291060291060294, 0.058212058212058215, 0.045738045738045741, 0.018711018711018712, 0.014553014553014554, 0.0041580041580041582, 0.0062370062370062374, 0.014553014553014554, 0.0062370062370062374, 0.0041580041580041582, 0.0062370062370062374, 0.0062370062370062374, 0.0625, 0.3125, 0.1875, 0.25, 0.125, 0.058823529411764705, 0.70588235294117652, 0.058823529411764705, 0.058823529411764705, 0.058823529411764705, 0.38461538461538464, 0.23076923076923078, 0.23076923076923078, 0.076923076923076927, 0.058823529411764705, 0.11764705882352941, 0.17647058823529413, 0.11764705882352941, 0.11764705882352941, 0.058823529411764705, 0.058823529411764705, 0.23529411764705882, 0.03482587064676617, 0.054726368159203981, 0.35323383084577115, 0.17412935323383086, 0.019900497512437811, 0.09950248756218906, 0.044776119402985072, 0.074626865671641784, 0.054726368159203981, 0.019900497512437811, 0.024875621890547265, 0.014925373134328358, 0.014925373134328358, 0.0049751243781094526, 0.014925373134328358, 0.01282051282051282, 0.00641025641025641, 0.44230769230769229, 0.12820512820512819, 0.01282051282051282, 0.089743589743589744, 0.16025641025641027, 0.057692307692307696, 0.00641025641025641, 0.019230769230769232, 0.00641025641025641, 0.00641025641025641, 0.032051282051282048, 0.00641025641025641, 0.015936254980079681, 0.0039840637450199202, 0.20717131474103587, 0.011952191235059761, 0.0039840637450199202, 0.58565737051792832, 0.0039840637450199202, 0.10358565737051793, 0.015936254980079681, 0.0039840637450199202, 0.031872509960159362, 0.0079681274900398405, 0.0093457943925233638, 0.67289719626168221, 0.028037383177570093, 0.046728971962616821, 0.0093457943925233638, 0.037383177570093455, 0.07476635514018691, 0.018691588785046728, 0.046728971962616821, 0.018691588785046728, 0.037383177570093455, 0.072999999999999995, 0.090999999999999998, 0.25, 0.14099999999999999, 0.055, 0.23699999999999999, 0.0089999999999999993, 0.069000000000000006, 0.041000000000000002, 0.0089999999999999993, 0.0030000000000000001, 0.0030000000000000001, 0.0040000000000000001, 0.002, 0.002, 0.001, 0.001, 0.002, 0.0070000000000000001, 0.071428571428571425, 0.14285714285714285, 0.14285714285714285, 0.14285714285714285, 0.14285714285714285, 0.071428571428571425, 0.071428571428571425, 0.071428571428571425, 0.013888888888888888, 0.013888888888888888, 0.097222222222222224, 0.14583333333333334, 0.048611111111111112, 0.069444444444444448, 0.14583333333333334, 0.1736111111111111, 0.20833333333333334, 0.041666666666666664, 0.013888888888888888, 0.034722222222222224, 0.0069444444444444441, 0.35294117647058826, 0.058823529411764705, 0.11764705882352941, 0.29411764705882354, 0.11764705882352941, 0.059405940594059403, 0.13861386138613863, 0.31683168316831684, 0.049504950495049507, 0.16831683168316833, 0.15841584158415842, 0.029702970297029702, 0.019801980198019802, 0.0099009900990099011, 0.0099009900990099011, 0.019801980198019802, 0.22943722943722944, 0.12987012987012986, 0.15151515151515152, 0.021645021645021644, 0.064935064935064929, 0.043290043290043288, 0.07792207792207792, 0.047619047619047616, 0.12554112554112554, 0.017316017316017316, 0.030303030303030304, 0.004329004329004329, 0.008658008658008658, 0.008658008658008658, 0.008658008658008658, 0.021645021645021644, 0.004329004329004329, 0.74193548387096775, 0.064516129032258063, 0.032258064516129031, 0.016129032258064516, 0.080645161290322578, 0.032258064516129031, 0.016129032258064516, 0.16666666666666666, 0.16666666666666666, 0.083333333333333329, 0.083333333333333329, 0.41666666666666669, 0.34352836879432624, 0.35062056737588654, 0.014184397163120567, 0.019946808510638299, 0.031914893617021274, 0.015070921985815602, 0.050531914893617018, 0.0057624113475177301, 0.033687943262411348, 0.034574468085106384, 0.044326241134751775, 0.039893617021276598, 0.0026595744680851063, 0.0044326241134751776, 0.0013297872340425532, 0.00044326241134751772, 0.0039893617021276593, 0.0017730496453900709, 0.00088652482269503544, 0.25352112676056338, 0.042253521126760563, 0.056338028169014086, 0.014084507042253521, 0.21126760563380281, 0.12676056338028169, 0.29577464788732394, 0.015151515151515152, 0.42424242424242425, 0.07575757575757576, 0.19696969696969696, 0.030303030303030304, 0.060606060606060608, 0.16666666666666666, 0.35416666666666669, 0.10416666666666667, 0.15625, 0.03125, 0.010416666666666666, 0.0625, 0.052083333333333336, 0.083333333333333329, 0.125, 0.010416666666666666, 0.39285714285714285, 0.21428571428571427, 0.10714285714285714, 0.017857142857142856, 0.10714285714285714, 0.053571428571428568, 0.017857142857142856, 0.017857142857142856, 0.071428571428571425, 0.083333333333333329, 0.16666666666666666, 0.25, 0.25, 0.16666666666666666, 0.25, 0.5, 0.083333333333333329, 0.083333333333333329, 0.083333333333333329, 0.23529411764705882, 0.11764705882352941, 0.35294117647058826, 0.11764705882352941, 0.11764705882352941, 0.18181818181818182, 0.45454545454545453, 0.090909090909090912, 0.22727272727272727, 0.21052631578947367, 0.10526315789473684, 0.052631578947368418, 0.052631578947368418, 0.31578947368421051, 0.052631578947368418, 0.15789473684210525, 0.18840579710144928, 0.19565217391304349, 0.10869565217391304, 0.10144927536231885, 0.050724637681159424, 0.057971014492753624, 0.09420289855072464, 0.014492753623188406, 0.043478260869565216, 0.043478260869565216, 0.043478260869565216, 0.021739130434782608, 0.021739130434782608, 0.007246376811594203, 0.090909090909090912, 0.18181818181818182, 0.045454545454545456, 0.045454545454545456, 0.045454545454545456, 0.40909090909090912, 0.13636363636363635, 0.12790697674418605, 0.20930232558139536, 0.13953488372093023, 0.081395348837209308, 0.011627906976744186, 0.081395348837209308, 0.069767441860465115, 0.034883720930232558, 0.11627906976744186, 0.10465116279069768, 0.011627906976744186, 0.16666666666666666, 0.10416666666666667, 0.125, 0.3125, 0.125, 0.083333333333333329, 0.020833333333333332, 0.29999999999999999, 0.20000000000000001, 0.10000000000000001, 0.14999999999999999, 0.10000000000000001, 0.10000000000000001, 0.22222222222222221, 0.31851851851851853, 0.044444444444444446, 0.07407407407407407, 0.022222222222222223, 0.12592592592592591, 0.0074074074074074077, 0.037037037037037035, 0.088888888888888892, 0.014814814814814815, 0.0074074074074074077, 0.022222222222222223, 0.0074074074074074077, 0.38283828382838286, 0.12871287128712872, 0.062706270627062702, 0.095709570957095716, 0.036303630363036306, 0.036303630363036306, 0.019801980198019802, 0.0099009900990099011, 0.14521452145214522, 0.0066006600660066007, 0.0099009900990099011, 0.0066006600660066007, 0.0066006600660066007, 0.013201320132013201, 0.0066006600660066007, 0.0165016501650165, 0.0066006600660066007, 0.0033003300330033004, 0.13636363636363635, 0.13636363636363635, 0.18181818181818182, 0.18181818181818182, 0.36363636363636365, 0.29268292682926828, 0.1951219512195122, 0.12195121951219512, 0.21951219512195122, 0.073170731707317069, 0.04878048780487805, 0.04878048780487805, 0.40350877192982454, 0.41228070175438597, 0.012280701754385965, 0.029824561403508771, 0.063157894736842107, 0.015789473684210527, 0.014035087719298246, 0.005263157894736842, 0.0070175438596491229, 0.014035087719298246, 0.0070175438596491229, 0.0017543859649122807, 0.0035087719298245615, 0.0017543859649122807, 0.0017543859649122807, 0.005263157894736842, 0.071428571428571425, 0.8928571428571429, 0.076923076923076927, 0.10256410256410256, 0.30769230769230771, 0.02564102564102564, 0.15384615384615385, 0.076923076923076927, 0.23076923076923078, 0.02564102564102564, 0.21428571428571427, 0.071428571428571425, 0.071428571428571425, 0.14285714285714285, 0.2857142857142857, 0.071428571428571425, 0.14285714285714285, 0.14912280701754385, 0.2807017543859649, 0.017543859649122806, 0.052631578947368418, 0.061403508771929821, 0.052631578947368418, 0.052631578947368418, 0.017543859649122806, 0.052631578947368418, 0.043859649122807015, 0.17543859649122806, 0.017543859649122806, 0.017543859649122806, 0.23076923076923078, 0.69230769230769229, 0.4375, 0.25, 0.0625, 0.0625, 0.125, 0.33905579399141633, 0.038626609442060089, 0.0085836909871244635, 0.017167381974248927, 0.064377682403433473, 0.012875536480686695, 0.39914163090128757, 0.017167381974248927, 0.051502145922746781, 0.02575107296137339, 0.0042918454935622317, 0.012875536480686695, 0.040000000000000001, 0.040000000000000001, 0.040000000000000001, 0.76000000000000001, 0.040000000000000001, 0.20454545454545456, 0.18181818181818182, 0.13636363636363635, 0.15909090909090909, 0.045454545454545456, 0.15909090909090909, 0.045454545454545456, 0.045454545454545456, 0.022727272727272728, 0.19354838709677419, 0.16129032258064516, 0.032258064516129031, 0.032258064516129031, 0.064516129032258063, 0.22580645161290322, 0.096774193548387094, 0.096774193548387094, 0.032258064516129031, 0.064516129032258063, 0.16083916083916083, 0.048951048951048952, 0.27972027972027974, 0.11888111888111888, 0.048951048951048952, 0.11888111888111888, 0.027972027972027972, 0.1048951048951049, 0.034965034965034968, 0.013986013986013986, 0.013986013986013986, 0.013986013986013986, 0.006993006993006993, 0.23529411764705882, 0.41176470588235292, 0.058823529411764705, 0.11764705882352941, 0.17647058823529413, 0.42574257425742573, 0.34653465346534651, 0.019801980198019802, 0.0099009900990099011, 0.0099009900990099011, 0.0099009900990099011, 0.019801980198019802, 0.059405940594059403, 0.019801980198019802, 0.049504950495049507, 0.0099009900990099011, 0.17073170731707318, 0.097560975609756101, 0.34146341463414637, 0.14634146341463414, 0.073170731707317069, 0.12195121951219512, 0.024390243902439025, 0.1875, 0.375, 0.0625, 0.1875, 0.1875, 0.076923076923076927, 0.11538461538461539, 0.30769230769230771, 0.26923076923076922, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.050000000000000003, 0.5, 0.40000000000000002, 0.083333333333333329, 0.5, 0.16666666666666666, 0.16666666666666666, 0.083333333333333329, 0.16666666666666666, 0.16666666666666666, 0.16666666666666666, 0.375, 0.083333333333333329, 0.13157894736842105, 0.23684210526315788, 0.34210526315789475, 0.10526315789473684, 0.13157894736842105, 0.18181818181818182, 0.63636363636363635, 0.090909090909090912, 0.029411764705882353, 0.029411764705882353, 0.17647058823529413, 0.38235294117647056, 0.17647058823529413, 0.058823529411764705, 0.058823529411764705, 0.029411764705882353, 0.21739130434782608, 0.043478260869565216, 0.086956521739130432, 0.043478260869565216, 0.52173913043478259, 0.043478260869565216, 0.04878048780487805, 0.097560975609756101, 0.024390243902439025, 0.14634146341463414, 0.073170731707317069, 0.04878048780487805, 0.17073170731707318, 0.31707317073170732, 0.024390243902439025, 0.050000000000000003, 0.90000000000000002, 0.096774193548387094, 0.043010752688172046, 0.40322580645161288, 0.021505376344086023, 0.010752688172043012, 0.037634408602150539, 0.10215053763440861, 0.091397849462365593, 0.059139784946236562, 0.026881720430107527, 0.032258064516129031, 0.026881720430107527, 0.0053763440860215058, 0.0053763440860215058, 0.0053763440860215058, 0.016129032258064516, 0.0053763440860215058, 0.0053763440860215058, 0.33112582781456956, 0.019867549668874173, 0.019867549668874173, 0.0066225165562913907, 0.079470198675496692, 0.41059602649006621, 0.013245033112582781, 0.10596026490066225, 0.5252525252525253, 0.010101010101010102, 0.060606060606060608, 0.10101010101010101, 0.20707070707070707, 0.030303030303030304, 0.0050505050505050509, 0.0050505050505050509, 0.040404040404040407, 0.90909090909090906, 0.2857142857142857, 0.047619047619047616, 0.42857142857142855, 0.14285714285714285, 0.047619047619047616, 0.94736842105263153, 0.40740740740740738, 0.018518518518518517, 0.037037037037037035, 0.12962962962962962, 0.092592592592592587, 0.16666666666666666, 0.14814814814814814, 0.17315436241610738, 0.17718120805369128, 0.0013422818791946308, 0.036241610738255034, 0.18926174496644296, 0.0013422818791946308, 0.19328859060402684, 0.0013422818791946308, 0.0013422818791946308, 0.0026845637583892616, 0.0013422818791946308, 0.0013422818791946308, 0.0013422818791946308, 0.21610738255033557, 0.0013422818791946308, 0.0013422818791946308, 0.0013422818791946308, 0.010416666666666666, 0.125, 0.60416666666666663, 0.15625, 0.010416666666666666, 0.0625, 0.043050430504305043, 0.022140221402214021, 0.54182041820418203, 0.0055350553505535052, 0.26568265682656828, 0.0067650676506765071, 0.041205412054120538, 0.0061500615006150061, 0.039360393603936041, 0.0018450184501845018, 0.0043050430504305041, 0.0024600246002460025, 0.0012300123001230013, 0.014145141451414513, 0.00061500615006150063, 0.0012300123001230013, 0.00061500615006150063, 0.00061500615006150063, 0.00061500615006150063, 0.125, 0.125, 0.6875, 0.11320754716981132, 0.16981132075471697, 0.13207547169811321, 0.20754716981132076, 0.094339622641509441, 0.13207547169811321, 0.094339622641509441, 0.018867924528301886, 0.018867924528301886, 0.032786885245901641, 0.53278688524590168, 0.31967213114754101, 0.065573770491803282, 0.024590163934426229, 0.058064516129032261, 0.0064516129032258064, 0.70322580645161292, 0.045161290322580643, 0.032258064516129031, 0.01935483870967742, 0.012903225806451613, 0.096774193548387094, 0.012903225806451613, 0.5714285714285714, 0.028571428571428571, 0.028571428571428571, 0.085714285714285715, 0.085714285714285715, 0.14285714285714285, 0.5714285714285714, 0.14285714285714285, 0.071428571428571425, 0.14285714285714285, 0.67839195979899503, 0.0050251256281407036, 0.0050251256281407036, 0.21608040201005024, 0.0050251256281407036, 0.020100502512562814, 0.040201005025125629, 0.020100502512562814, 0.93333333333333335, 0.1111111111111111, 0.83333333333333337, 0.30434782608695654, 0.60869565217391308, 0.086956521739130432, 0.052631578947368418, 0.013157894736842105, 0.039473684210526314, 0.11842105263157894, 0.75, 0.27272727272727271, 0.090909090909090912, 0.54545454545454541, 0.80000000000000004, 0.059999999999999998, 0.029999999999999999, 0.050000000000000003, 0.01, 0.01, 0.02, 0.01, 0.91666666666666663, 0.2857142857142857, 0.33333333333333331, 0.047619047619047616, 0.023809523809523808, 0.047619047619047616, 0.14285714285714285, 0.071428571428571425, 0.023809523809523808, 0.064516129032258063, 0.016129032258064516, 0.4838709677419355, 0.064516129032258063, 0.032258064516129031, 0.048387096774193547, 0.032258064516129031, 0.20967741935483872, 0.016129032258064516, 0.032258064516129031, 0.076923076923076927, 0.02564102564102564, 0.74358974358974361, 0.05128205128205128, 0.05128205128205128, 0.02564102564102564, 0.15384615384615385, 0.23076923076923078, 0.076923076923076927, 0.23076923076923078, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.19444444444444445, 0.63888888888888884, 0.013888888888888888, 0.027777777777777776, 0.013888888888888888, 0.055555555555555552, 0.013888888888888888, 0.027777777777777776, 0.28947368421052633, 0.52631578947368418, 0.008771929824561403, 0.017543859649122806, 0.008771929824561403, 0.017543859649122806, 0.008771929824561403, 0.08771929824561403, 0.017543859649122806, 0.008771929824561403, 0.090909090909090912, 0.18181818181818182, 0.45454545454545453, 0.18181818181818182, 0.29606625258799174, 0.3022774327122153, 0.0082815734989648039, 0.020703933747412008, 0.002070393374741201, 0.0082815734989648039, 0.024844720496894408, 0.0082815734989648039, 0.002070393374741201, 0.22981366459627328, 0.0082815734989648039, 0.078674948240165632, 0.002070393374741201, 0.004140786749482402, 0.002070393374741201, 0.002070393374741201, 0.27396280400572248, 0.33905579399141633, 0.0028612303290414878, 0.028612303290414878, 0.0057224606580829757, 0.022174535050071532, 0.022889842632331903, 0.013590844062947067, 0.0035765379113018598, 0.16237482117310442, 0.012160228898426323, 0.092274678111587988, 0.0050071530758226037, 0.00071530758226037196, 0.0071530758226037196, 0.0035765379113018598, 0.0021459227467811159, 0.0021459227467811159, 0.026315789473684209, 0.005263157894736842, 0.48947368421052634, 0.04736842105263158, 0.005263157894736842, 0.11052631578947368, 0.005263157894736842, 0.24736842105263157, 0.021052631578947368, 0.010526315789473684, 0.005263157894736842, 0.010526315789473684, 0.005263157894736842, 0.093085106382978719, 0.029255319148936171, 0.21808510638297873, 0.13829787234042554, 0.037234042553191488, 0.21276595744680851, 0.029255319148936171, 0.026595744680851064, 0.061170212765957445, 0.0079787234042553185, 0.0053191489361702126, 0.13031914893617022, 0.0026595744680851063, 0.0026595744680851063, 0.0053191489361702126, 0.17829457364341086, 0.093023255813953487, 0.015503875968992248, 0.031007751937984496, 0.0077519379844961239, 0.03875968992248062, 0.03875968992248062, 0.031007751937984496, 0.13178294573643412, 0.0077519379844961239, 0.10852713178294573, 0.22480620155038761, 0.03875968992248062, 0.03875968992248062, 0.015503875968992248, 0.050943396226415097, 0.65283018867924525, 0.054716981132075473, 0.0018867924528301887, 0.0056603773584905656, 0.020754716981132074, 0.011320754716981131, 0.0037735849056603774, 0.018867924528301886, 0.067924528301886791, 0.0037735849056603774, 0.092452830188679239, 0.0037735849056603774, 0.0018867924528301887, 0.0018867924528301887, 0.0018867924528301887, 0.0056603773584905656, 0.19204851752021562, 0.35714285714285715, 0.10107816711590296, 0.0067385444743935314, 0.0067385444743935314, 0.024932614555256066, 0.0053908355795148251, 0.030323450134770891, 0.055256064690026953, 0.019541778975741241, 0.051886792452830191, 0.12129380053908356, 0.0053908355795148251, 0.0026954177897574125, 0.0067385444743935314, 0.0026954177897574125, 0.0026954177897574125, 0.0053908355795148251, 0.0020215633423180594, 0.10526315789473684, 0.15789473684210525, 0.63157894736842102, 0.65251989389920428, 0.019893899204244031, 0.0026525198938992041, 0.10742705570291777, 0.0013262599469496021, 0.090185676392572939, 0.049071618037135278, 0.0013262599469496021, 0.027851458885941646, 0.0013262599469496021, 0.0026525198938992041, 0.022546419098143235, 0.014588859416445624, 0.0053050397877984082, 0.28343949044585987, 0.10828025477707007, 0.0031847133757961785, 0.0031847133757961785, 0.025477707006369428, 0.025477707006369428, 0.14012738853503184, 0.39490445859872614, 0.0031847133757961785, 0.0031847133757961785, 0.006369426751592357, 0.94736842105263153, 0.030120481927710843, 0.027285613040396881, 0.24734231041814317, 0.027639971651311126, 0.009922041105598866, 0.019844082211197732, 0.012756909992912827, 0.082919914953933374, 0.45357902197023386, 0.034372785258681787, 0.0056697377746279237, 0.0024805102763997165, 0.006024096385542169, 0.0070871722182849041, 0.0010630758327427356, 0.0028348688873139618, 0.025513819985825654, 0.0024805102763997165, 0.001771793054571226, 0.066666666666666666, 0.80000000000000004, 0.066666666666666666, 0.035294117647058823, 0.11764705882352941, 0.57647058823529407, 0.070588235294117646, 0.12941176470588237, 0.023529411764705882, 0.023529411764705882, 0.011764705882352941, 0.005434782608695652, 0.008152173913043478, 0.22010869565217392, 0.040760869565217392, 0.01358695652173913, 0.47282608695652173, 0.008152173913043478, 0.14673913043478262, 0.019021739130434784, 0.01358695652173913, 0.008152173913043478, 0.002717391304347826, 0.005434782608695652, 0.002717391304347826, 0.019021739130434784, 0.008152173913043478, 0.002717391304347826, 0.1875, 0.125, 0.0625, 0.4375, 0.0625, 0.125, 0.057142857142857141, 0.25714285714285712, 0.028571428571428571, 0.028571428571428571, 0.085714285714285715, 0.22857142857142856, 0.25714285714285712, 0.028571428571428571, 0.36585365853658536, 0.097560975609756101, 0.073170731707317069, 0.17073170731707318, 0.14634146341463414, 0.04878048780487805, 0.024390243902439025, 0.04878048780487805, 0.050000000000000003, 0.10000000000000001, 0.80000000000000004, 0.16635095574306871, 0.1511968314103668, 0.20423626657482349, 0.063027380747373865, 0.060272085414155331, 0.055966936456001377, 0.045634578956431894, 0.061305321164112275, 0.07267091441363871, 0.023764422249009817, 0.025658687790597556, 0.030308248665403822, 0.010160151541243327, 0.006371620458067849, 0.0025830893748923713, 0.0055105906664370584, 0.0080936800413294301, 0.0036163251248493198, 0.0032719132081970035, 0.00017220595832615808, 0.90909090909090906, 0.125, 0.33333333333333331, 0.083333333333333329, 0.20833333333333334, 0.125, 0.083333333333333329, 0.00053134962805526033, 0.00053134962805526033, 0.38044633368756642, 0.068012752391073322, 0.028161530286928801, 0.20031880977683317, 0.0026567481402763019, 0.1434643995749203, 0.083953241232731138, 0.001594048884165781, 0.00053134962805526033, 0.00053134962805526033, 0.043570669500531352, 0.0053134962805526037, 0.00053134962805526033, 0.01381509032943677, 0.01647183846971307, 0.001594048884165781, 0.007970244420828906, 0.00053134962805526033, 0.25, 0.25, 0.074999999999999997, 0.074999999999999997, 0.050000000000000003, 0.050000000000000003, 0.125, 0.050000000000000003, 0.025000000000000001, 0.025000000000000001, 0.47619047619047616, 0.14285714285714285, 0.095238095238095233, 0.14285714285714285, 0.047619047619047616, 0.047619047619047616, 0.00086430423509075197, 0.69057908383751077, 0.0017286084701815039, 0.0025929127052722557, 0.0449438202247191, 0.00086430423509075197, 0.21348314606741572, 0.013828867761452032, 0.00086430423509075197, 0.00086430423509075197, 0.018150388936905792, 0.0017286084701815039, 0.00086430423509075197, 0.0069144338807260158, 0.00086430423509075197, 0.00086430423509075197, 0.00086430423509075197, 0.090737240075614373, 0.10964083175803403, 0.32514177693761814, 0.04725897920604915, 0.024574669187145556, 0.090737240075614373, 0.01890359168241966, 0.10964083175803403, 0.077504725897920609, 0.02835538752362949, 0.011342155009451797, 0.0075614366729678641, 0.020793950850661626, 0.0075614366729678641, 0.015122873345935728, 0.001890359168241966, 0.003780718336483932, 0.0075614366729678641, 0.001890359168241966, 0.037037037037037035, 0.92592592592592593, 0.17391304347826086, 0.21739130434782608, 0.043478260869565216, 0.2608695652173913, 0.043478260869565216, 0.17391304347826086, 0.45454545454545453, 0.090909090909090912, 0.27272727272727271, 0.090909090909090912, 0.0625, 0.0625, 0.4375, 0.375, 0.15294117647058825, 0.011764705882352941, 0.16470588235294117, 0.082352941176470587, 0.094117647058823528, 0.31764705882352939, 0.058823529411764705, 0.058823529411764705, 0.023529411764705882, 0.011764705882352941, 0.011764705882352941, 0.10714285714285714, 0.011904761904761904, 0.19047619047619047, 0.40476190476190477, 0.047619047619047616, 0.071428571428571425, 0.047619047619047616, 0.023809523809523808, 0.023809523809523808, 0.047619047619047616, 0.011904761904761904, 0.0625, 0.5, 0.3125, 0.0625, 0.043478260869565216, 0.91304347826086951, 0.1875, 0.3125, 0.15625, 0.1875, 0.09375, 0.41496598639455784, 0.25170068027210885, 0.11564625850340136, 0.013605442176870748, 0.013605442176870748, 0.0068027210884353739, 0.020408163265306121, 0.15646258503401361, 0.068965517241379309, 0.13793103448275862, 0.034482758620689655, 0.034482758620689655, 0.034482758620689655, 0.62068965517241381, 0.068965517241379309, 0.31578947368421051, 0.47368421052631576, 0.052631578947368418, 0.052631578947368418, 0.052631578947368418, 0.22500000000000001, 0.050000000000000003, 0.14999999999999999, 0.025000000000000001, 0.10000000000000001, 0.050000000000000003, 0.025000000000000001, 0.050000000000000003, 0.29999999999999999, 0.0625, 0.22916666666666666, 0.10416666666666667, 0.1875, 0.0625, 0.29166666666666669, 0.020833333333333332, 0.3642213642213642, 0.43114543114543114, 0.010296010296010296, 0.0070785070785070788, 0.073359073359073365, 0.001287001287001287, 0.013513513513513514, 0.001287001287001287, 0.012226512226512226, 0.0025740025740025739, 0.055341055341055344, 0.015444015444015444, 0.0025740025740025739, 0.0051480051480051478, 0.0019305019305019305, 0.00064350064350064348, 0.001287001287001287, 0.00064350064350064348, 0.10344827586206896, 0.10344827586206896, 0.10344827586206896, 0.068965517241379309, 0.068965517241379309, 0.31034482758620691, 0.034482758620689655, 0.10344827586206896, 0.034482758620689655, 0.068965517241379309, 0.35662299854439594, 0.3930131004366812, 0.021348859776807377, 0.0082484230955846682, 0.016496846191169336, 0.1227559437166424, 0.0067928190198932557, 0.012130033964095099, 0.021834061135371178, 0.0097040271712760789, 0.002911208151382824, 0.0087336244541484712, 0.001455604075691412, 0.00048520135856380397, 0.0077632217370208634, 0.0033964095099466279, 0.0019408054342552159, 0.0033964095099466279, 0.00048520135856380397, 0.071428571428571425, 0.2857142857142857, 0.035714285714285712, 0.071428571428571425, 0.32142857142857145, 0.10714285714285714, 0.10714285714285714, 0.61538461538461542, 0.23076923076923078, 0.076923076923076927, 0.81481481481481477, 0.1111111111111111, 0.34426229508196721, 0.49180327868852458, 0.032786885245901641, 0.016393442622950821, 0.081967213114754092, 0.29521276595744683, 0.6542553191489362, 0.0026595744680851063, 0.0026595744680851063, 0.0026595744680851063, 0.010638297872340425, 0.0026595744680851063, 0.015957446808510637, 0.0026595744680851063, 0.0026595744680851063, 0.11627906976744186, 0.19767441860465115, 0.19767441860465115, 0.22093023255813954, 0.069767441860465115, 0.046511627906976744, 0.069767441860465115, 0.023255813953488372, 0.023255813953488372, 0.011627906976744186, 0.97222222222222221, 0.15384615384615385, 0.46153846153846156, 0.15384615384615385, 0.23076923076923078, 0.7857142857142857, 0.14285714285714285, 0.14902506963788301, 0.18802228412256267, 0.11699164345403899, 0.013927576601671309, 0.004178272980501393, 0.06545961002785515, 0.030640668523676879, 0.25208913649025072, 0.027855153203342618, 0.040389972144846797, 0.012534818941504178, 0.011142061281337047, 0.0055710306406685237, 0.0013927576601671309, 0.06545961002785515, 0.0013927576601671309, 0.004178272980501393, 0.004178272980501393, 0.0013927576601671309, 0.004178272980501393, 0.39130434782608697, 0.043478260869565216, 0.043478260869565216, 0.086956521739130432, 0.043478260869565216, 0.30434782608695654, 0.076923076923076927, 0.23076923076923078, 0.076923076923076927, 0.61538461538461542, 0.23076923076923078, 0.057692307692307696, 0.057692307692307696, 0.19230769230769232, 0.25, 0.096153846153846159, 0.038461538461538464, 0.038461538461538464, 0.019230769230769232, 0.95652173913043481, 0.90909090909090906, 0.085714285714285715, 0.54285714285714282, 0.085714285714285715, 0.11428571428571428, 0.085714285714285715, 0.057142857142857141, 0.028571428571428571, 0.90909090909090906, 0.033333333333333333, 0.041666666666666664, 0.21666666666666667, 0.29999999999999999, 0.025000000000000001, 0.13333333333333333, 0.025000000000000001, 0.13333333333333333, 0.016666666666666666, 0.016666666666666666, 0.033333333333333333, 0.015544041450777202, 0.0051813471502590676, 0.96373056994818651, 0.26842105263157895, 0.073684210526315783, 0.04736842105263158, 0.089473684210526316, 0.15263157894736842, 0.052631578947368418, 0.052631578947368418, 0.042105263157894736, 0.057894736842105263, 0.031578947368421054, 0.015789473684210527, 0.052631578947368418, 0.010526315789473684, 0.005263157894736842, 0.021052631578947368, 0.015789473684210527, 0.18461538461538463, 0.061538461538461542, 0.030769230769230771, 0.12307692307692308, 0.076923076923076927, 0.092307692307692313, 0.12307692307692308, 0.030769230769230771, 0.092307692307692313, 0.092307692307692313, 0.076923076923076927, 0.015384615384615385, 0.28000000000000003, 0.56000000000000005, 0.12, 0.055555555555555552, 0.55555555555555558, 0.27777777777777779, 0.29999999999999999, 0.21428571428571427, 0.085714285714285715, 0.014285714285714285, 0.071428571428571425, 0.014285714285714285, 0.028571428571428571, 0.25714285714285712, 0.066666666666666666, 0.33333333333333331, 0.13333333333333333, 0.33333333333333331, 0.066666666666666666, 0.15384615384615385, 0.38461538461538464, 0.30769230769230771, 0.15384615384615385, 0.29629629629629628, 0.59259259259259256, 0.037037037037037035, 0.037037037037037035, 0.10000000000000001, 0.29999999999999999, 0.10000000000000001, 0.050000000000000003, 0.10000000000000001, 0.25, 0.050000000000000003, 0.055555555555555552, 0.72222222222222221, 0.055555555555555552, 0.1111111111111111, 0.090909090909090912, 0.15151515151515152, 0.27272727272727271, 0.30303030303030304, 0.060606060606060608, 0.060606060606060608, 0.12903225806451613, 0.064516129032258063, 0.096774193548387094, 0.67741935483870963, 0.13636363636363635, 0.18181818181818182, 0.045454545454545456, 0.090909090909090912, 0.090909090909090912, 0.13636363636363635, 0.090909090909090912, 0.18181818181818182, 0.22058823529411764, 0.14705882352941177, 0.014705882352941176, 0.044117647058823532, 0.33823529411764708, 0.044117647058823532, 0.088235294117647065, 0.014705882352941176, 0.014705882352941176, 0.014705882352941176, 0.014705882352941176, 0.029411764705882353, 0.92307692307692313, 0.036496350364963501, 0.029197080291970802, 0.27737226277372262, 0.014598540145985401, 0.52554744525547448, 0.0072992700729927005, 0.014598540145985401, 0.014598540145985401, 0.0072992700729927005, 0.0072992700729927005, 0.051094890510948905, 0.0072992700729927005, 0.489247311827957, 0.0053763440860215058, 0.37903225806451613, 0.032258064516129031, 0.010752688172043012, 0.040322580645161289, 0.024193548387096774, 0.0026881720430107529, 0.0080645161290322578, 0.0026881720430107529, 0.34042553191489361, 0.46808510638297873, 0.14893617021276595, 0.20512820512820512, 0.25641025641025639, 0.068376068376068383, 0.042735042735042736, 0.10256410256410256, 0.0085470085470085479, 0.14529914529914531, 0.0085470085470085479, 0.0085470085470085479, 0.085470085470085472, 0.02564102564102564, 0.0085470085470085479, 0.017094017094017096, 0.91666666666666663, 0.16666666666666666, 0.1111111111111111, 0.055555555555555552, 0.16666666666666666, 0.055555555555555552, 0.1111111111111111, 0.27777777777777779, 0.29411764705882354, 0.14705882352941177, 0.11764705882352941, 0.26470588235294118, 0.088235294117647065, 0.029411764705882353, 0.058823529411764705, 0.92307692307692313, 0.11246559182068423, 0.19897758552890288, 0.084152575697994489, 0.040503342508847816, 0.006685017695635077, 0.17577664176169877, 0.0078647267007471485, 0.028706252457727094, 0.041683051513959887, 0.21195438458513566, 0.028313016122689737, 0.040503342508847816, 0.0011797090051120724, 0.0011797090051120724, 0.0011797090051120724, 0.0015729453401494297, 0.013763271726307511, 0.0023594180102241447, 0.0011797090051120724, 0.2266857962697274, 0.24011067841770856, 0.045706087312973973, 0.047755687640910024, 0.0195736831317893, 0.10217257634761222, 0.023160483705677394, 0.051342488214798115, 0.043554006968641118, 0.011887681902029105, 0.038737446197991389, 0.11692969870875179, 0.0035868005738880918, 0.0036892805902848944, 0.008095921295347407, 0.0028694404591104736, 0.003791760606681697, 0.0088132814101250252, 0.0014347202295552368, 0.00010248001639680262, 0.03048780487804878, 0.018292682926829267, 0.27439024390243905, 0.091463414634146339, 0.0060975609756097563, 0.11585365853658537, 0.012195121951219513, 0.024390243902439025, 0.10975609756097561, 0.29268292682926828, 0.012195121951219513, 0.22764227642276422, 0.08943089430894309, 0.016260162601626018, 0.008130081300813009, 0.008130081300813009, 0.08943089430894309, 0.008130081300813009, 0.016260162601626018, 0.008130081300813009, 0.056910569105691054, 0.44715447154471544, 0.008130081300813009, 0.058823529411764705, 0.13725490196078433, 0.078431372549019607, 0.17647058823529413, 0.25490196078431371, 0.019607843137254902, 0.019607843137254902, 0.17647058823529413, 0.039215686274509803, 0.019607843137254902, 0.019607843137254902, 0.1875, 0.25, 0.4375, 0.16666666666666666, 0.14583333333333334, 0.041666666666666664, 0.27083333333333331, 0.041666666666666664, 0.125, 0.020833333333333332, 0.14583333333333334, 0.27966101694915252, 0.26271186440677968, 0.046610169491525424, 0.042372881355932202, 0.046610169491525424, 0.0042372881355932203, 0.055084745762711863, 0.067796610169491525, 0.046610169491525424, 0.055084745762711863, 0.063559322033898302, 0.0042372881355932203, 0.0042372881355932203, 0.012711864406779662, 0.90909090909090906, 0.22580645161290322, 0.18279569892473119, 0.086021505376344093, 0.075268817204301078, 0.10752688172043011, 0.20430107526881722, 0.043010752688172046, 0.043010752688172046, 0.010752688172043012, 0.010752688172043012, 0.36363636363636365, 0.036363636363636362, 0.027272727272727271, 0.0090909090909090905, 0.0090909090909090905, 0.53636363636363638, 0.0090909090909090905, 0.07407407407407407, 0.62962962962962965, 0.22222222222222221, 0.2857142857142857, 0.5, 0.071428571428571425, 0.071428571428571425, 0.059999999999999998, 0.02, 0.059999999999999998, 0.080000000000000002, 0.52000000000000002, 0.23999999999999999, 0.12844036697247707, 0.32110091743119268, 0.027522935779816515, 0.22018348623853212, 0.0091743119266055051, 0.01834862385321101, 0.0091743119266055051, 0.055045871559633031, 0.082568807339449546, 0.11009174311926606, 0.01834862385321101, 0.90909090909090906, 0.23999999999999999, 0.16, 0.16, 0.080000000000000002, 0.053333333333333337, 0.013333333333333334, 0.093333333333333338, 0.053333333333333337, 0.040000000000000001, 0.10666666666666667, 0.40000000000000002, 0.55000000000000004, 0.48401826484018262, 0.1952054794520548, 0.043378995433789952, 0.044520547945205477, 0.082191780821917804, 0.022831050228310501, 0.065068493150684928, 0.0045662100456621002, 0.0068493150684931503, 0.0079908675799086754, 0.012557077625570776, 0.0045662100456621002, 0.0022831050228310501, 0.014840182648401826, 0.0022831050228310501, 0.0022831050228310501, 0.0011415525114155251, 0.0034246575342465752, 0.16666666666666666, 0.58333333333333337, 0.16666666666666666, 0.15384615384615385, 0.76923076923076927, 0.38461538461538464, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.076923076923076927, 0.23076923076923078, 0.42372881355932202, 0.20338983050847459, 0.016949152542372881, 0.20338983050847459, 0.033898305084745763, 0.033898305084745763, 0.033898305084745763, 0.016949152542372881, 0.00058309037900874635, 0.00058309037900874635, 0.78775510204081634, 0.00058309037900874635, 0.00058309037900874635, 0.083965014577259481, 0.00058309037900874635, 0.029154518950437316, 0.049562682215743441, 0.00058309037900874635, 0.00058309037900874635, 0.00058309037900874635, 0.0029154518950437317, 0.0011661807580174927, 0.018658892128279883, 0.018658892128279883, 0.00058309037900874635, 0.0029154518950437317, 0.75862068965517238, 0.19540229885057472, 0.022988505747126436, 0.055555555555555552, 0.88888888888888884, 0.041666666666666664, 0.041666666666666664, 0.041666666666666664, 0.041666666666666664, 0.70833333333333337, 0.041666666666666664, 0.041666666666666664, 0.37392373923739236, 0.48093480934809346, 0.0012300123001230013, 0.0073800738007380072, 0.01968019680196802, 0.0024600246002460025, 0.024600246002460024, 0.0061500615006150061, 0.0012300123001230013, 0.0024600246002460025, 0.0012300123001230013, 0.041820418204182044, 0.0049200492004920051, 0.030750307503075031, 0.16363636363636364, 0.24848484848484848, 0.024242424242424242, 0.0060606060606060606, 0.0060606060606060606, 0.066666666666666666, 0.0060606060606060606, 0.0060606060606060606, 0.012121212121212121, 0.21818181818181817, 0.23030303030303031, 0.0060606060606060606, 0.25, 0.66666666666666663, 0.011764705882352941, 0.0058823529411764705, 0.13529411764705881, 0.035294117647058823, 0.60588235294117643, 0.029411764705882353, 0.076470588235294124, 0.082352941176470587, 0.0058823529411764705, 0.0058823529411764705, 0.63636363636363635, 0.072727272727272724, 0.018181818181818181, 0.14545454545454545, 0.018181818181818181, 0.072727272727272724, 0.058161350844277676, 0.024390243902439025, 0.35647279549718575, 0.01125703564727955, 0.0037523452157598499, 0.024390243902439025, 0.0150093808630394, 0.026266416510318951, 0.34896810506566606, 0.001876172607879925, 0.10694183864915573, 0.0056285178236397749, 0.001876172607879925, 0.0037523452157598499, 0.0037523452157598499, 0.0056285178236397749, 0.001876172607879925, 0.02564102564102564, 0.30769230769230771, 0.15384615384615385, 0.02564102564102564, 0.20512820512820512, 0.02564102564102564, 0.20512820512820512, 0.081300813008130079, 0.097560975609756101, 0.30894308943089432, 0.032520325203252036, 0.016260162601626018, 0.032520325203252036, 0.016260162601626018, 0.13008130081300814, 0.016260162601626018, 0.25203252032520324, 0.008130081300813009, 0.01483679525222552, 0.041543026706231452, 0.2314540059347181, 0.21068249258160238, 0.0089020771513353119, 0.080118694362017809, 0.0059347181008902079, 0.35905044510385759, 0.002967359050445104, 0.011869436201780416, 0.002967359050445104, 0.020771513353115726, 0.002967359050445104, 0.012195121951219513, 0.0030487804878048782, 0.11585365853658537, 0.04878048780487805, 0.80487804878048785, 0.0091463414634146336, 0.96551724137931039, 0.064197530864197536, 0.0012345679012345679, 0.0012345679012345679, 0.027160493827160494, 0.87654320987654322, 0.020987654320987655, 0.0012345679012345679, 0.0012345679012345679, 0.0012345679012345679, 0.01680672268907563, 0.025210084033613446, 0.82352941176470584, 0.12605042016806722, 0.15151515151515152, 0.43434343434343436, 0.12121212121212122, 0.060606060606060608, 0.010101010101010102, 0.14141414141414141, 0.010101010101010102, 0.010101010101010102, 0.010101010101010102, 0.010101010101010102, 0.020202020202020204, 0.14634146341463414, 0.26829268292682928, 0.12195121951219512, 0.073170731707317069, 0.12195121951219512, 0.024390243902439025, 0.024390243902439025, 0.04878048780487805, 0.14634146341463414, 0.024390243902439025, 0.12553191489361701, 0.082978723404255314, 0.24893617021276596, 0.046808510638297871, 0.014893617021276596, 0.048936170212765959, 0.044680851063829789, 0.1148936170212766, 0.046808510638297871, 0.031914893617021274, 0.029787234042553193, 0.093617021276595741, 0.034042553191489362, 0.01276595744680851, 0.010638297872340425, 0.0021276595744680851, 0.006382978723404255, 0.0021276595744680851, 0.17791411042944785, 0.35582822085889571, 0.030674846625766871, 0.1411042944785276, 0.018404907975460124, 0.024539877300613498, 0.0061349693251533744, 0.012269938650306749, 0.12883435582822086, 0.09202453987730061, 0.012269938650306749, 0.0061349693251533744, 0.25714285714285712, 0.22857142857142856, 0.057142857142857141, 0.34285714285714286, 0.028571428571428571, 0.057142857142857141, 0.25, 0.15625, 0.46875, 0.09375, 0.076923076923076927, 0.076923076923076927, 0.69230769230769229, 0.076923076923076927, 0.084210526315789472, 0.1368421052631579, 0.18421052631578946, 0.27368421052631581, 0.005263157894736842, 0.005263157894736842, 0.010526315789473684, 0.057894736842105263, 0.068421052631578952, 0.04736842105263158, 0.04736842105263158, 0.005263157894736842, 0.021052631578947368, 0.005263157894736842, 0.005263157894736842, 0.052631578947368418, 0.18579234972677597, 0.13114754098360656, 0.20218579234972678, 0.03825136612021858, 0.25136612021857924, 0.032786885245901641, 0.02185792349726776, 0.0054644808743169399, 0.016393442622950821, 0.016393442622950821, 0.043715846994535519, 0.027322404371584699, 0.0054644808743169399, 0.0054644808743169399, 0.0054644808743169399, 0.071856287425149698, 0.011976047904191617, 0.1437125748502994, 0.023952095808383235, 0.011976047904191617, 0.0059880239520958087, 0.011976047904191617, 0.023952095808383235, 0.065868263473053898, 0.15568862275449102, 0.43712574850299402, 0.023952095808383235, 0.0059880239520958087, 0.090909090909090912, 0.90909090909090906, 0.014492753623188406, 0.018115942028985508, 0.27173913043478259, 0.076086956521739135, 0.28260869565217389, 0.010869565217391304, 0.22826086956521738, 0.018115942028985508, 0.05434782608695652, 0.0036231884057971015, 0.007246376811594203, 0.007246376811594203, 0.0036231884057971015, 0.10903426791277258, 0.028037383177570093, 0.13707165109034267, 0.065420560747663545, 0.51401869158878499, 0.0031152647975077881, 0.040498442367601244, 0.043613707165109032, 0.0031152647975077881, 0.0062305295950155761, 0.024922118380062305, 0.021806853582554516, 0.93333333333333335, 0.07407407407407407, 0.066666666666666666, 0.2814814814814815, 0.19259259259259259, 0.07407407407407407, 0.022222222222222223, 0.0074074074074074077, 0.11851851851851852, 0.07407407407407407, 0.0074074074074074077, 0.022222222222222223, 0.0074074074074074077, 0.0074074074074074077, 0.014814814814814815, 0.014814814814814815, 0.014814814814814815, 0.090909090909090912, 0.72727272727272729, 0.090909090909090912, 0.15384615384615385, 0.15384615384615385, 0.61538461538461542, 0.066666666666666666, 0.8666666666666667, 0.96226415094339623, 0.023809523809523808, 0.034632034632034632, 0.46536796536796537, 0.038419913419913417, 0.017316017316017316, 0.054653679653679656, 0.003246753246753247, 0.14502164502164502, 0.14393939393939395, 0.0059523809523809521, 0.0064935064935064939, 0.0016233766233766235, 0.026515151515151516, 0.0059523809523809521, 0.0010822510822510823, 0.007575757575757576, 0.015151515151515152, 0.0016233766233766235, 0.0016233766233766235, 0.12638915049915239, 0.21510642305518929, 0.076850631003955547, 0.15238274627990206, 0.033904690148803915, 0.084196647202863059, 0.028818986626483332, 0.17140704464117537, 0.033527971369372765, 0.012243360331512526, 0.015822188736108495, 0.031456018082501411, 0.0033904690148803917, 0.001130156338293464, 0.0032021096251648143, 0.0032021096251648143, 0.0016952345074401959, 0.0039555471840271236, 0.0015068751177246186, 0.00018835938971557733, 0.14374999999999999, 0.18124999999999999, 0.018749999999999999, 0.26250000000000001, 0.018749999999999999, 0.125, 0.012500000000000001, 0.125, 0.0062500000000000003, 0.0062500000000000003, 0.09375, 0.25, 0.67500000000000004, 0.025000000000000001, 0.080000000000000002, 0.71999999999999997, 0.16, 0.13165013525698827, 0.073038773669972953, 0.20018034265103696, 0.20108205590622183, 0.032461677186654644, 0.030658250676284943, 0.040577096483318302, 0.035166816952209197, 0.059513074842200184, 0.046889089269612265, 0.004508566275924256, 0.071235347159603252, 0.0036068530207394047, 0.0027051397655545538, 0.057709648331830475, 0.0018034265103697023, 0.00090171325518485117, 0.0036068530207394047, 0.0018034265103697023, 0.083333333333333329, 0.16666666666666666, 0.25, 0.16666666666666666, 0.25, 0.051948051948051951, 0.090909090909090912, 0.83116883116883122, 0.28252788104089221, 0.26394052044609667, 0.029739776951672861, 0.078066914498141265, 0.022304832713754646, 0.022304832713754646, 0.078066914498141265, 0.055762081784386616, 0.014869888475836431, 0.10408921933085502, 0.03717472118959108, 0.093567251461988299, 0.045883940620782729, 0.30409356725146197, 0.10796221322537113, 0.055330634278002701, 0.060278902384165542, 0.087269455690508327, 0.081421502474134058, 0.0625281151596941, 0.037786774628879895, 0.0076473234367971212, 0.0089968511021142599, 0.015744489428699954, 0.0058479532163742687, 0.0035987404408457041, 0.0085470085470085479, 0.0067476383265856954, 0.0053981106612685558, 0.0017993702204228521, 0.00044984255510571302, 0.14285714285714285, 0.2857142857142857, 0.38095238095238093, 0.14285714285714285, 0.13333333333333333, 0.66666666666666663, 0.13333333333333333, 0.012987012987012988, 0.32467532467532467, 0.090909090909090912, 0.012987012987012988, 0.32467532467532467, 0.03896103896103896, 0.090909090909090912, 0.012987012987012988, 0.012987012987012988, 0.051948051948051951, 0.012987012987012988, 0.0059435364041604752, 0.0014858841010401188, 0.31500742942050519, 0.016344725111441308, 0.0029717682020802376, 0.49777117384843983, 0.0044576523031203564, 0.066864784546805348, 0.037147102526002972, 0.0029717682020802376, 0.0014858841010401188, 0.0029717682020802376, 0.0014858841010401188, 0.007429420505200594, 0.031203566121842496, 0.0014858841010401188, 0.0014858841010401188, 0.1951219512195122, 0.073170731707317069, 0.46341463414634149, 0.097560975609756101, 0.024390243902439025, 0.04878048780487805, 0.04878048780487805, 0.024390243902439025, 0.11223021582733812, 0.24316546762589927, 0.060431654676258995, 0.060431654676258995, 0.027338129496402876, 0.23741007194244604, 0.073381294964028773, 0.024460431654676259, 0.021582733812949641, 0.074820143884892082, 0.024460431654676259, 0.011510791366906475, 0.0028776978417266188, 0.0028776978417266188, 0.015827338129496403, 0.0028776978417266188, 0.0028776978417266188, 0.090909090909090912, 0.81818181818181823, 0.050000000000000003, 0.016666666666666666, 0.050000000000000003, 0.8666666666666667, 0.12280701754385964, 0.6900584795321637, 0.0058479532163742687, 0.029239766081871343, 0.12280701754385964, 0.011695906432748537, 0.062780269058295965, 0.017937219730941704, 0.25112107623318386, 0.0089686098654708519, 0.046337817638266068, 0.031390134529147982, 0.049327354260089683, 0.082212257100149483, 0.14050822122571002, 0.14050822122571002, 0.019431988041853511, 0.010463378176382661, 0.095665171898355758, 0.0029895366218236174, 0.028400597907324365, 0.0029895366218236174, 0.0059790732436472349, 0.0014947683109118087, 0.0014947683109118087, 0.18181818181818182, 0.079545454545454544, 0.056818181818181816, 0.011363636363636364, 0.034090909090909088, 0.045454545454545456, 0.022727272727272728, 0.011363636363636364, 0.19318181818181818, 0.079545454545454544, 0.26136363636363635, 0.12953367875647667, 0.077720207253886009, 0.093264248704663211, 0.22797927461139897, 0.21243523316062177, 0.093264248704663211, 0.046632124352331605, 0.02072538860103627, 0.015544041450777202, 0.036269430051813469, 0.0051813471502590676, 0.0051813471502590676, 0.015544041450777202, 0.02072538860103627, 0.0051813471502590676, 0.94444444444444442, 0.94444444444444442, 0.058823529411764705, 0.58823529411764708, 0.11764705882352941, 0.058823529411764705, 0.11764705882352941, 0.050000000000000003, 0.5, 0.050000000000000003, 0.050000000000000003, 0.29999999999999999, 0.23076923076923078, 0.076923076923076927, 0.23076923076923078, 0.23076923076923078, 0.076923076923076927, 0.15384615384615385, 0.17757009345794392, 0.07476635514018691, 0.12149532710280374, 0.037383177570093455, 0.31775700934579437, 0.028037383177570093, 0.028037383177570093, 0.046728971962616821, 0.12149532710280374, 0.037383177570093455, 0.12, 0.040000000000000001, 0.23999999999999999, 0.16, 0.32000000000000001, 0.080000000000000002, 0.040000000000000001, 0.28309572301425662, 0.18329938900203666, 0.036659877800407331, 0.087576374745417518, 0.04684317718940937, 0.018329938900203666, 0.17107942973523421, 0.028513238289205704, 0.022403258655804479, 0.04684317718940937, 0.036659877800407331, 0.0081466395112016286, 0.016293279022403257, 0.0040733197556008143, 0.0020366598778004071, 0.0081466395112016286, 0.0020366598778004071, 0.063116370808678504, 0.080867850098619326, 0.072978303747534515, 0.30177514792899407, 0.084812623274161739, 0.086785009861932938, 0.076923076923076927, 0.055226824457593686, 0.031558185404339252, 0.071005917159763315, 0.0039447731755424065, 0.0039447731755424065, 0.029585798816568046, 0.007889546351084813, 0.0098619329388560158, 0.0059171597633136093, 0.011834319526627219, 0.0019723865877712033, 0.25, 0.23863636363636365, 0.011363636363636364, 0.090909090909090912, 0.022727272727272728, 0.045454545454545456, 0.011363636363636364, 0.056818181818181816, 0.23863636363636365, 0.011363636363636364, 0.011363636363636364, 0.076923076923076927, 0.84615384615384615, 0.098591549295774641, 0.26760563380281688, 0.11267605633802817, 0.22535211267605634, 0.070422535211267609, 0.084507042253521125, 0.014084507042253521, 0.042253521126760563, 0.028169014084507043, 0.014084507042253521, 0.014084507042253521, 0.028169014084507043, 0.30508474576271188, 0.016949152542372881, 0.050847457627118647, 0.016949152542372881, 0.050847457627118647, 0.016949152542372881, 0.084745762711864403, 0.033898305084745763, 0.30508474576271188, 0.033898305084745763, 0.050847457627118647, 0.033898305084745763, 0.016949152542372881, 0.019337016574585635, 0.0027624309392265192, 0.4585635359116022, 0.14502762430939226, 0.063535911602209949, 0.023480662983425413, 0.033149171270718231, 0.106353591160221, 0.026243093922651933, 0.0013812154696132596, 0.089779005524861885, 0.0027624309392265192, 0.0096685082872928173, 0.011049723756906077, 0.0027624309392265192, 0.0041436464088397788, 0.070175438596491224, 0.017543859649122806, 0.54385964912280704, 0.096491228070175433, 0.017543859649122806, 0.035087719298245612, 0.078947368421052627, 0.017543859649122806, 0.008771929824561403, 0.026315789473684209, 0.043859649122807015, 0.017543859649122806, 0.017543859649122806, 0.34999999999999998, 0.25, 0.34999999999999998, 0.15789473684210525, 0.026315789473684209, 0.10526315789473684, 0.026315789473684209, 0.052631578947368418, 0.34210526315789475, 0.026315789473684209, 0.23684210526315788, 0.026315789473684209, 0.26666666666666666, 0.033333333333333333, 0.033333333333333333, 0.20000000000000001, 0.23333333333333334, 0.066666666666666666, 0.16666666666666666, 0.16176470588235295, 0.044117647058823532, 0.014705882352941176, 0.088235294117647065, 0.13235294117647059, 0.54411764705882348, 0.22222222222222221, 0.037037037037037035, 0.66666666666666663, 0.10958026273630246, 0.024991989746876001, 0.33546940083306631, 0.054790131368151231, 0.14322332585709707, 0.049343159243832105, 0.14931111823133611, 0.049983979493752002, 0.030118551746235182, 0.0086510733739186153, 0.0025632809996795898, 0.0025632809996795898, 0.017622556872797179, 0.0028836911246395386, 0.0012816404998397949, 0.0054469721243191284, 0.007369432874078821, 0.0012816404998397949, 0.0028836911246395386, 0.021212121212121213, 0.0060606060606060606, 0.52121212121212124, 0.051515151515151514, 0.045454545454545456, 0.066666666666666666, 0.054545454545454543, 0.078787878787878782, 0.081818181818181818, 0.015151515151515152, 0.0060606060606060606, 0.0030303030303030303, 0.021212121212121213, 0.024242424242424242, 0.15789473684210525, 0.10526315789473684, 0.052631578947368418, 0.26315789473684209, 0.052631578947368418, 0.26315789473684209, 0.033219608547315496, 0.037708744837493265, 0.24690249595977734, 0.19536721134853655, 0.049739630095169692, 0.24474771054049202, 0.020829592386424851, 0.093374034835697617, 0.028550906805530615, 0.01382653977374753, 0.0019752199676782187, 0.0012569581612497755, 0.0066439217094630991, 0.0028730472257137729, 0.0016160890644639971, 0.0062847908062488777, 0.0059256599030346564, 0.0026934817741066618, 0.0064643562578559884, 0.0001795654516071108, 0.18181818181818182, 0.27272727272727271, 0.090909090909090912, 0.090909090909090912, 0.27272727272727271, 0.090909090909090912, 0.18181818181818182, 0.090909090909090912, 0.090909090909090912, 0.36363636363636365, 0.090909090909090912, 0.090909090909090912, 0.14285714285714285, 0.5714285714285714, 0.14285714285714285, 0.14285714285714285, 0.083333333333333329, 0.91666666666666663, 0.05128205128205128, 0.15384615384615385, 0.02564102564102564, 0.69230769230769229, 0.02564102564102564, 0.05128205128205128, 0.047619047619047616, 0.047619047619047616, 0.095238095238095233, 0.19047619047619047, 0.52380952380952384, 0.91304347826086951, 0.043478260869565216, 0.5, 0.23333333333333334, 0.033333333333333333, 0.13333333333333333, 0.033333333333333333, 0.033333333333333333, 0.30595071128030454, 0.1450611099979964, 0.24403927068723702, 0.012021638950110198, 0.091965537968343017, 0.044279703466239231, 0.023442195952714885, 0.039871769184532155, 0.041274293728711678, 0.010418753756762171, 0.012021638950110198, 0.011620917651773192, 0.0066119014225606088, 0.0026046884391905428, 0.00080144259667401323, 0.0032057703866960529, 0.0012021638950110197, 0.0028050490883590462, 0.00080144259667401323, 0.00020036064916850331, 0.12123974475843209, 0.08409298085688241, 0.36007292616226072, 0.0601640838650866, 0.067000911577028255, 0.083637192342752964, 0.047402005469462168, 0.057885141294439377, 0.039881494986326343, 0.023701002734731084, 0.012306289881494986, 0.007520510483135825, 0.015952597994530537, 0.0059252506836827709, 0.0011394712853236098, 0.0047857793983591612, 0.0020510483135824978, 0.0027347310847766638, 0.0022789425706472195, 0.00022789425706472196, 0.36842105263157893, 0.15789473684210525, 0.052631578947368418, 0.10526315789473684, 0.052631578947368418, 0.21052631578947367, 0.052631578947368418, 0.3125, 0.3125, 0.0625, 0.125, 0.0625, 0.0625, 0.0625, 0.25531914893617019, 0.063829787234042548, 0.021276595744680851, 0.10638297872340426, 0.19148936170212766, 0.021276595744680851, 0.31914893617021278, 0.29411764705882354, 0.44117647058823528, 0.058823529411764705, 0.029411764705882353, 0.11764705882352941, 0.029411764705882353], &quot;Term&quot;: [&quot;abiding&quot;, &quot;abiding&quot;, &quot;abiding&quot;, &quot;abiding&quot;, &quot;abiding&quot;, &quot;abiding&quot;, &quot;abiding&quot;, &quot;abiding&quot;, &quot;abiding&quot;, &quot;abiding&quot;, &quot;abiding&quot;, &quot;abiding&quot;, &quot;abodes&quot;, &quot;abodes&quot;, &quot;abolished&quot;, &quot;abolished&quot;, &quot;abolished&quot;, &quot;abolished&quot;, &quot;abolished&quot;, &quot;abolished&quot;, &quot;abolished&quot;, &quot;abolished&quot;, &quot;abolished&quot;, &quot;abolished&quot;, &quot;abolition&quot;, &quot;abolition&quot;, &quot;abolition&quot;, &quot;abolition&quot;, &quot;abolition&quot;, &quot;abolition&quot;, &quot;abolition&quot;, &quot;abolition&quot;, &quot;abortion&quot;, &quot;abortion&quot;, &quot;abraham&quot;, &quot;abraham&quot;, &quot;abraham&quot;, &quot;abraham&quot;, &quot;abraham&quot;, &quot;abraham&quot;, &quot;abraham&quot;, &quot;abraham&quot;, &quot;abraham&quot;, &quot;abraham&quot;, &quot;abraham&quot;, &quot;abuse&quot;, &quot;abuse&quot;, &quot;abuse&quot;, &quot;abuse&quot;, &quot;abuse&quot;, &quot;abuse&quot;, &quot;abuse&quot;, &quot;abuse&quot;, &quot;abuse&quot;, &quot;abuse&quot;, &quot;abuse&quot;, &quot;abuse&quot;, &quot;abuse&quot;, &quot;abuse&quot;, &quot;abuse&quot;, &quot;accidents&quot;, &quot;accidents&quot;, &quot;accidents&quot;, &quot;accidents&quot;, &quot;accidents&quot;, &quot;accidents&quot;, &quot;accomplished&quot;, &quot;accomplished&quot;, &quot;accomplished&quot;, &quot;accomplished&quot;, &quot;accomplished&quot;, &quot;accomplished&quot;, &quot;accomplished&quot;, &quot;accomplished&quot;, &quot;accomplished&quot;, &quot;accomplished&quot;, &quot;accomplished&quot;, &quot;accomplished&quot;, &quot;accomplished&quot;, &quot;accomplished&quot;, &quot;accomplished&quot;, &quot;accomplished&quot;, &quot;accomplished&quot;, &quot;accomplishing&quot;, &quot;accomplishing&quot;, &quot;accomplishing&quot;, &quot;accomplishing&quot;, &quot;accomplishing&quot;, &quot;accomplishing&quot;, &quot;accomplishing&quot;, &quot;accomplishing&quot;, &quot;accomplishing&quot;, &quot;accomplishing&quot;, &quot;accountability&quot;, &quot;accountability&quot;, &quot;accountability&quot;, &quot;accountability&quot;, &quot;accountability&quot;, &quot;accountability&quot;, &quot;accumulating&quot;, &quot;accumulating&quot;, &quot;accumulating&quot;, &quot;accumulating&quot;, &quot;accusation&quot;, &quot;accusation&quot;, &quot;accusation&quot;, &quot;accustomed&quot;, &quot;accustomed&quot;, &quot;accustomed&quot;, &quot;accustomed&quot;, &quot;accustomed&quot;, &quot;accustomed&quot;, &quot;accustomed&quot;, &quot;accustomed&quot;, &quot;acknowledged&quot;, &quot;acknowledged&quot;, &quot;acknowledged&quot;, &quot;acknowledged&quot;, &quot;acknowledged&quot;, &quot;acknowledged&quot;, &quot;acknowledged&quot;, &quot;acknowledged&quot;, &quot;acknowledged&quot;, &quot;acknowledged&quot;, &quot;acknowledged&quot;, &quot;acknowledged&quot;, &quot;acknowledged&quot;, &quot;acreage&quot;, &quot;act&quot;, &quot;act&quot;, &quot;act&quot;, &quot;act&quot;, &quot;act&quot;, &quot;act&quot;, &quot;act&quot;, &quot;act&quot;, &quot;act&quot;, &quot;act&quot;, &quot;act&quot;, &quot;act&quot;, &quot;act&quot;, &quot;act&quot;, &quot;act&quot;, &quot;act&quot;, &quot;act&quot;, &quot;act&quot;, &quot;act&quot;, &quot;acted&quot;, &quot;acted&quot;, &quot;acted&quot;, &quot;acted&quot;, &quot;acted&quot;, &quot;acted&quot;, &quot;acted&quot;, &quot;acted&quot;, &quot;acted&quot;, &quot;acted&quot;, &quot;acted&quot;, &quot;acted&quot;, &quot;acted&quot;, &quot;acted&quot;, &quot;acted&quot;, &quot;action&quot;, &quot;action&quot;, &quot;action&quot;, &quot;action&quot;, &quot;action&quot;, &quot;action&quot;, &quot;action&quot;, &quot;action&quot;, &quot;action&quot;, &quot;action&quot;, &quot;action&quot;, &quot;action&quot;, &quot;action&quot;, &quot;action&quot;, &quot;action&quot;, &quot;action&quot;, &quot;action&quot;, &quot;action&quot;, &quot;action&quot;, &quot;action&quot;, &quot;acts&quot;, &quot;acts&quot;, &quot;acts&quot;, &quot;acts&quot;, &quot;acts&quot;, &quot;acts&quot;, &quot;acts&quot;, &quot;acts&quot;, &quot;acts&quot;, &quot;acts&quot;, &quot;acts&quot;, &quot;acts&quot;, &quot;acts&quot;, &quot;acts&quot;, &quot;acts&quot;, &quot;acts&quot;, &quot;acts&quot;, &quot;acts&quot;, &quot;acute&quot;, &quot;acute&quot;, &quot;acute&quot;, &quot;acute&quot;, &quot;acute&quot;, &quot;acute&quot;, &quot;acute&quot;, &quot;acute&quot;, &quot;addiction&quot;, &quot;adhering&quot;, &quot;adhering&quot;, &quot;adhering&quot;, &quot;adhering&quot;, &quot;adhering&quot;, &quot;adhering&quot;, &quot;adjutant&quot;, &quot;adjutant&quot;, &quot;administration&quot;, &quot;administration&quot;, &quot;administration&quot;, &quot;administration&quot;, &quot;administration&quot;, &quot;administration&quot;, &quot;administration&quot;, &quot;administration&quot;, &quot;administration&quot;, &quot;administration&quot;, &quot;administration&quot;, &quot;administration&quot;, &quot;administration&quot;, &quot;administration&quot;, &quot;administration&quot;, &quot;administration&quot;, &quot;administration&quot;, &quot;administration&quot;, &quot;administration&quot;, &quot;admirals&quot;, &quot;admirals&quot;, &quot;admirals&quot;, &quot;admirals&quot;, &quot;admirals&quot;, &quot;admonished&quot;, &quot;admonished&quot;, &quot;admonished&quot;, &quot;admonished&quot;, &quot;advent&quot;, &quot;advent&quot;, &quot;advent&quot;, &quot;advent&quot;, &quot;advent&quot;, &quot;adventurers&quot;, &quot;adventurers&quot;, &quot;adverting&quot;, &quot;adverting&quot;, &quot;adverting&quot;, &quot;adverting&quot;, &quot;adverting&quot;, &quot;advisable&quot;, &quot;advisable&quot;, &quot;advisable&quot;, &quot;advisable&quot;, &quot;advisable&quot;, &quot;advisable&quot;, &quot;advisable&quot;, &quot;advisable&quot;, &quot;advised&quot;, &quot;advised&quot;, &quot;advised&quot;, &quot;advised&quot;, &quot;advised&quot;, &quot;advised&quot;, &quot;advised&quot;, &quot;advised&quot;, &quot;advised&quot;, &quot;advised&quot;, &quot;advised&quot;, &quot;advised&quot;, &quot;advised&quot;, &quot;advised&quot;, &quot;advised&quot;, &quot;aeronautics&quot;, &quot;aeronautics&quot;, &quot;aeronautics&quot;, &quot;affect&quot;, &quot;affect&quot;, &quot;affect&quot;, &quot;affect&quot;, &quot;affect&quot;, &quot;affect&quot;, &quot;affect&quot;, &quot;affect&quot;, &quot;affect&quot;, &quot;affect&quot;, &quot;affect&quot;, &quot;affect&quot;, &quot;affect&quot;, &quot;affect&quot;, &quot;affecting&quot;, &quot;affecting&quot;, &quot;affecting&quot;, &quot;affecting&quot;, &quot;affecting&quot;, &quot;affecting&quot;, &quot;affecting&quot;, &quot;affecting&quot;, &quot;affecting&quot;, &quot;affecting&quot;, &quot;affecting&quot;, &quot;affecting&quot;, &quot;affecting&quot;, &quot;affirmative&quot;, &quot;affirmative&quot;, &quot;affirmative&quot;, &quot;affirmative&quot;, &quot;affirmative&quot;, &quot;affirmative&quot;, &quot;affirmative&quot;, &quot;affirmative&quot;, &quot;affirmative&quot;, &quot;affirmative&quot;, &quot;affirmative&quot;, &quot;affirmative&quot;, &quot;affirmative&quot;, &quot;affixed&quot;, &quot;affixed&quot;, &quot;affordable&quot;, &quot;aforesaid&quot;, &quot;aforesaid&quot;, &quot;aforesaid&quot;, &quot;aforesaid&quot;, &quot;aforesaid&quot;, &quot;africa&quot;, &quot;africa&quot;, &quot;africa&quot;, &quot;africa&quot;, &quot;africa&quot;, &quot;africa&quot;, &quot;africa&quot;, &quot;africa&quot;, &quot;africa&quot;, &quot;africa&quot;, &quot;africa&quot;, &quot;africans&quot;, &quot;africans&quot;, &quot;africans&quot;, &quot;africans&quot;, &quot;africans&quot;, &quot;agencies&quot;, &quot;agencies&quot;, &quot;agencies&quot;, &quot;agencies&quot;, &quot;agencies&quot;, &quot;agencies&quot;, &quot;agencies&quot;, &quot;agencies&quot;, &quot;agencies&quot;, &quot;agencies&quot;, &quot;agencies&quot;, &quot;agencies&quot;, &quot;agencies&quot;, &quot;agencies&quot;, &quot;agents&quot;, &quot;agents&quot;, &quot;agents&quot;, &quot;agents&quot;, &quot;agents&quot;, &quot;agents&quot;, &quot;agents&quot;, &quot;agents&quot;, &quot;agents&quot;, &quot;agents&quot;, &quot;agents&quot;, &quot;agents&quot;, &quot;agents&quot;, &quot;agents&quot;, &quot;agents&quot;, &quot;aggravate&quot;, &quot;aggravate&quot;, &quot;aggravate&quot;, &quot;aggravate&quot;, &quot;aggravate&quot;, &quot;aggression&quot;, &quot;aggression&quot;, &quot;aggression&quot;, &quot;aggression&quot;, &quot;aggression&quot;, &quot;aggression&quot;, &quot;aggression&quot;, &quot;aggression&quot;, &quot;aggression&quot;, &quot;aggression&quot;, &quot;aggression&quot;, &quot;aggression&quot;, &quot;agitation&quot;, &quot;agitation&quot;, &quot;agitation&quot;, &quot;agitation&quot;, &quot;agitation&quot;, &quot;agitation&quot;, &quot;agitation&quot;, &quot;agitator&quot;, &quot;agitator&quot;, &quot;agitator&quot;, &quot;agreeing&quot;, &quot;agreeing&quot;, &quot;agreeing&quot;, &quot;agreeing&quot;, &quot;agreeing&quot;, &quot;agreeing&quot;, &quot;agreeing&quot;, &quot;agreeing&quot;, &quot;agreeing&quot;, &quot;agricultural&quot;, &quot;agricultural&quot;, &quot;agricultural&quot;, &quot;agricultural&quot;, &quot;agricultural&quot;, &quot;agricultural&quot;, &quot;agricultural&quot;, &quot;agricultural&quot;, &quot;agricultural&quot;, &quot;agricultural&quot;, &quot;agricultural&quot;, &quot;agricultural&quot;, &quot;agricultural&quot;, &quot;agricultural&quot;, &quot;agricultural&quot;, &quot;agriculture&quot;, &quot;agriculture&quot;, &quot;agriculture&quot;, &quot;agriculture&quot;, &quot;agriculture&quot;, &quot;agriculture&quot;, &quot;agriculture&quot;, &quot;agriculture&quot;, &quot;agriculture&quot;, &quot;agriculture&quot;, &quot;agriculture&quot;, &quot;agriculture&quot;, &quot;agriculture&quot;, &quot;agriculture&quot;, &quot;air&quot;, &quot;air&quot;, &quot;air&quot;, &quot;air&quot;, &quot;air&quot;, &quot;air&quot;, &quot;air&quot;, &quot;air&quot;, &quot;air&quot;, &quot;air&quot;, &quot;air&quot;, &quot;air&quot;, &quot;air&quot;, &quot;air&quot;, &quot;airlift&quot;, &quot;airlift&quot;, &quot;airlift&quot;, &quot;airlift&quot;, &quot;airliner&quot;, &quot;airliner&quot;, &quot;airport&quot;, &quot;airport&quot;, &quot;airport&quot;, &quot;airport&quot;, &quot;alacrity&quot;, &quot;alacrity&quot;, &quot;alaska&quot;, &quot;alaska&quot;, &quot;alaska&quot;, &quot;alaska&quot;, &quot;alaska&quot;, &quot;alaska&quot;, &quot;alaska&quot;, &quot;alaska&quot;, &quot;alaska&quot;, &quot;alliance&quot;, &quot;alliance&quot;, &quot;alliance&quot;, &quot;alliance&quot;, &quot;alliance&quot;, &quot;alliance&quot;, &quot;alliance&quot;, &quot;alliance&quot;, &quot;alliance&quot;, &quot;allies&quot;, &quot;allies&quot;, &quot;allies&quot;, &quot;allies&quot;, &quot;allies&quot;, &quot;allies&quot;, &quot;allies&quot;, &quot;allies&quot;, &quot;allies&quot;, &quot;allies&quot;, &quot;allies&quot;, &quot;allies&quot;, &quot;allies&quot;, &quot;allies&quot;, &quot;allies&quot;, &quot;allow&quot;, &quot;allow&quot;, &quot;allow&quot;, &quot;allow&quot;, &quot;allow&quot;, &quot;allow&quot;, &quot;allow&quot;, &quot;allow&quot;, &quot;allow&quot;, &quot;allow&quot;, &quot;allow&quot;, &quot;allow&quot;, &quot;allow&quot;, &quot;allow&quot;, &quot;allow&quot;, &quot;allow&quot;, &quot;allowed&quot;, &quot;allowed&quot;, &quot;allowed&quot;, &quot;allowed&quot;, &quot;allowed&quot;, &quot;allowed&quot;, &quot;allowed&quot;, &quot;allowed&quot;, &quot;allowed&quot;, &quot;allowed&quot;, &quot;allowed&quot;, &quot;allowed&quot;, &quot;allowed&quot;, &quot;allowed&quot;, &quot;almighty&quot;, &quot;almighty&quot;, &quot;almighty&quot;, &quot;almighty&quot;, &quot;almighty&quot;, &quot;almighty&quot;, &quot;almighty&quot;, &quot;almighty&quot;, &quot;almighty&quot;, &quot;alternate&quot;, &quot;alternate&quot;, &quot;alternate&quot;, &quot;alternate&quot;, &quot;alternate&quot;, &quot;alternate&quot;, &quot;amazon&quot;, &quot;america&quot;, &quot;america&quot;, &quot;america&quot;, &quot;america&quot;, &quot;america&quot;, &quot;america&quot;, &quot;america&quot;, &quot;america&quot;, &quot;america&quot;, &quot;america&quot;, &quot;america&quot;, &quot;america&quot;, &quot;america&quot;, &quot;america&quot;, &quot;america&quot;, &quot;america&quot;, &quot;america&quot;, &quot;america&quot;, &quot;america&quot;, &quot;american&quot;, &quot;american&quot;, &quot;american&quot;, &quot;american&quot;, &quot;american&quot;, &quot;american&quot;, &quot;american&quot;, &quot;american&quot;, &quot;american&quot;, &quot;american&quot;, &quot;american&quot;, &quot;american&quot;, &quot;american&quot;, &quot;american&quot;, &quot;american&quot;, &quot;american&quot;, &quot;american&quot;, &quot;american&quot;, &quot;american&quot;, &quot;american&quot;, &quot;americanism&quot;, &quot;americanism&quot;, &quot;americanism&quot;, &quot;americans&quot;, &quot;americans&quot;, &quot;americans&quot;, &quot;americans&quot;, &quot;americans&quot;, &quot;americans&quot;, &quot;americans&quot;, &quot;americans&quot;, &quot;americans&quot;, &quot;americans&quot;, &quot;americans&quot;, &quot;americans&quot;, &quot;americans&quot;, &quot;americans&quot;, &quot;americans&quot;, &quot;americans&quot;, &quot;americans&quot;, &quot;americans&quot;, &quot;americans&quot;, &quot;amicable&quot;, &quot;amicable&quot;, &quot;amicable&quot;, &quot;amicable&quot;, &quot;amicable&quot;, &quot;amicable&quot;, &quot;amicably&quot;, &quot;amicably&quot;, &quot;anarchist&quot;, &quot;anarchist&quot;, &quot;andwhereas&quot;, &quot;angeles&quot;, &quot;angeles&quot;, &quot;angeles&quot;, &quot;angola&quot;, &quot;angola&quot;, &quot;animated&quot;, &quot;animated&quot;, &quot;animated&quot;, &quot;animated&quot;, &quot;animated&quot;, &quot;animosities&quot;, &quot;animosities&quot;, &quot;animosities&quot;, &quot;animosities&quot;, &quot;annals&quot;, &quot;annals&quot;, &quot;annals&quot;, &quot;annals&quot;, &quot;annals&quot;, &quot;annals&quot;, &quot;annals&quot;, &quot;annals&quot;, &quot;annapolis&quot;, &quot;annapolis&quot;, &quot;annapolis&quot;, &quot;annapolis&quot;, &quot;anne&quot;, &quot;annexation&quot;, &quot;annexation&quot;, &quot;annexation&quot;, &quot;annexation&quot;, &quot;annexation&quot;, &quot;annihilated&quot;, &quot;annihilated&quot;, &quot;annihilated&quot;, &quot;annihilated&quot;, &quot;annual&quot;, &quot;annual&quot;, &quot;annual&quot;, &quot;annual&quot;, &quot;annual&quot;, &quot;annual&quot;, &quot;annual&quot;, &quot;annual&quot;, &quot;annual&quot;, &quot;annual&quot;, &quot;annual&quot;, &quot;annual&quot;, &quot;annual&quot;, &quot;annual&quot;, &quot;annual&quot;, &quot;annual&quot;, &quot;anomalous&quot;, &quot;anomalous&quot;, &quot;anomalous&quot;, &quot;anomalous&quot;, &quot;answered&quot;, &quot;answered&quot;, &quot;answered&quot;, &quot;answered&quot;, &quot;answered&quot;, &quot;answered&quot;, &quot;answered&quot;, &quot;answered&quot;, &quot;answered&quot;, &quot;answered&quot;, &quot;answered&quot;, &quot;answered&quot;, &quot;answered&quot;, &quot;answered&quot;, &quot;antitrust&quot;, &quot;antitrust&quot;, &quot;antitrust&quot;, &quot;antitrust&quot;, &quot;antitrust&quot;, &quot;antitrust&quot;, &quot;antitrust&quot;, &quot;antitrust&quot;, &quot;apologies&quot;, &quot;apologies&quot;, &quot;apologies&quot;, &quot;apologies&quot;, &quot;appealing&quot;, &quot;appealing&quot;, &quot;appealing&quot;, &quot;appealing&quot;, &quot;appealing&quot;, &quot;appealing&quot;, &quot;appealing&quot;, &quot;appealing&quot;, &quot;appealing&quot;, &quot;appeared&quot;, &quot;appeared&quot;, &quot;appeared&quot;, &quot;appeared&quot;, &quot;appeared&quot;, &quot;appeared&quot;, &quot;appeared&quot;, &quot;appeared&quot;, &quot;appeared&quot;, &quot;appeared&quot;, &quot;appeared&quot;, &quot;appeared&quot;, &quot;appeared&quot;, &quot;appeasement&quot;, &quot;appeasement&quot;, &quot;appeasement&quot;, &quot;appeasement&quot;, &quot;appeasement&quot;, &quot;appeasement&quot;, &quot;applause&quot;, &quot;applause&quot;, &quot;applause&quot;, &quot;applause&quot;, &quot;applause&quot;, &quot;applause&quot;, &quot;applause&quot;, &quot;applause&quot;, &quot;applause&quot;, &quot;appliances&quot;, &quot;appliances&quot;, &quot;appliances&quot;, &quot;appliances&quot;, &quot;applicant&quot;, &quot;applicant&quot;, &quot;applicant&quot;, &quot;applicant&quot;, &quot;appointees&quot;, &quot;appointees&quot;, &quot;appointees&quot;, &quot;appointees&quot;, &quot;appointees&quot;, &quot;appointees&quot;, &quot;appointees&quot;, &quot;appreciating&quot;, &quot;appreciating&quot;, &quot;appreciating&quot;, &quot;approach&quot;, &quot;approach&quot;, &quot;approach&quot;, &quot;approach&quot;, &quot;approach&quot;, &quot;approach&quot;, &quot;approach&quot;, &quot;approach&quot;, &quot;approach&quot;, &quot;approach&quot;, &quot;approach&quot;, &quot;approach&quot;, &quot;approach&quot;, &quot;approach&quot;, &quot;approach&quot;, &quot;approach&quot;, &quot;approach&quot;, &quot;approached&quot;, &quot;approached&quot;, &quot;approached&quot;, &quot;approached&quot;, &quot;approached&quot;, &quot;approached&quot;, &quot;approached&quot;, &quot;approached&quot;, &quot;approached&quot;, &quot;approached&quot;, &quot;approached&quot;, &quot;approaches&quot;, &quot;approaches&quot;, &quot;approaches&quot;, &quot;approaches&quot;, &quot;approaches&quot;, &quot;approaches&quot;, &quot;approaches&quot;, &quot;approaches&quot;, &quot;approaches&quot;, &quot;approaches&quot;, &quot;appropriated&quot;, &quot;appropriated&quot;, &quot;appropriated&quot;, &quot;appropriated&quot;, &quot;appropriated&quot;, &quot;appropriated&quot;, &quot;appropriated&quot;, &quot;appropriated&quot;, &quot;appropriated&quot;, &quot;appropriated&quot;, &quot;approved&quot;, &quot;approved&quot;, &quot;approved&quot;, &quot;approved&quot;, &quot;approved&quot;, &quot;approved&quot;, &quot;approved&quot;, &quot;approved&quot;, &quot;approved&quot;, &quot;approved&quot;, &quot;approved&quot;, &quot;approved&quot;, &quot;approved&quot;, &quot;approved&quot;, &quot;approved&quot;, &quot;approximately&quot;, &quot;approximately&quot;, &quot;approximately&quot;, &quot;approximately&quot;, &quot;approximately&quot;, &quot;approximately&quot;, &quot;approximately&quot;, &quot;approximately&quot;, &quot;approximately&quot;, &quot;arab&quot;, &quot;arab&quot;, &quot;arab&quot;, &quot;arab&quot;, &quot;arab&quot;, &quot;arab&quot;, &quot;arab&quot;, &quot;arbitrament&quot;, &quot;arbitrament&quot;, &quot;arbitrament&quot;, &quot;arbitrament&quot;, &quot;architecture&quot;, &quot;architecture&quot;, &quot;architecture&quot;, &quot;architecture&quot;, &quot;ardor&quot;, &quot;ardor&quot;, &quot;ardor&quot;, &quot;ardor&quot;, &quot;argentina&quot;, &quot;argentina&quot;, &quot;argentina&quot;, &quot;argentina&quot;, &quot;argument&quot;, &quot;argument&quot;, &quot;argument&quot;, &quot;argument&quot;, &quot;argument&quot;, &quot;argument&quot;, &quot;argument&quot;, &quot;argument&quot;, &quot;argument&quot;, &quot;argument&quot;, &quot;argument&quot;, &quot;argument&quot;, &quot;argument&quot;, &quot;arid&quot;, &quot;arid&quot;, &quot;arid&quot;, &quot;arid&quot;, &quot;arid&quot;, &quot;arising&quot;, &quot;arising&quot;, &quot;arising&quot;, &quot;arising&quot;, &quot;arising&quot;, &quot;arising&quot;, &quot;arising&quot;, &quot;arising&quot;, &quot;arising&quot;, &quot;arising&quot;, &quot;arising&quot;, &quot;arising&quot;, &quot;arms&quot;, &quot;arms&quot;, &quot;arms&quot;, &quot;arms&quot;, &quot;arms&quot;, &quot;arms&quot;, &quot;arms&quot;, &quot;arms&quot;, &quot;arms&quot;, &quot;arms&quot;, &quot;arms&quot;, &quot;arms&quot;, &quot;arms&quot;, &quot;arms&quot;, &quot;arms&quot;, &quot;arms&quot;, &quot;arms&quot;, &quot;arms&quot;, &quot;arms&quot;, &quot;army&quot;, &quot;army&quot;, &quot;army&quot;, &quot;army&quot;, &quot;army&quot;, &quot;army&quot;, &quot;army&quot;, &quot;army&quot;, &quot;army&quot;, &quot;army&quot;, &quot;army&quot;, &quot;army&quot;, &quot;army&quot;, &quot;army&quot;, &quot;army&quot;, &quot;army&quot;, &quot;army&quot;, &quot;army&quot;, &quot;army&quot;, &quot;arranging&quot;, &quot;arranging&quot;, &quot;arranging&quot;, &quot;arranging&quot;, &quot;arranging&quot;, &quot;arrears&quot;, &quot;arrears&quot;, &quot;arrears&quot;, &quot;arrived&quot;, &quot;arrived&quot;, &quot;arrived&quot;, &quot;arrived&quot;, &quot;arrived&quot;, &quot;arrived&quot;, &quot;arrived&quot;, &quot;arrived&quot;, &quot;arrived&quot;, &quot;arrived&quot;, &quot;arrived&quot;, &quot;arrived&quot;, &quot;arsenals&quot;, &quot;arsenals&quot;, &quot;arsenals&quot;, &quot;arsenals&quot;, &quot;arsenals&quot;, &quot;arsenals&quot;, &quot;arsenals&quot;, &quot;arsenals&quot;, &quot;arsenals&quot;, &quot;arsenals&quot;, &quot;arsenals&quot;, &quot;articles&quot;, &quot;articles&quot;, &quot;articles&quot;, &quot;articles&quot;, &quot;articles&quot;, &quot;articles&quot;, &quot;articles&quot;, &quot;articles&quot;, &quot;articles&quot;, &quot;articles&quot;, &quot;articles&quot;, &quot;articles&quot;, &quot;articles&quot;, &quot;articles&quot;, &quot;articles&quot;, &quot;articles&quot;, &quot;artificial&quot;, &quot;artificial&quot;, &quot;artificial&quot;, &quot;artificial&quot;, &quot;artificial&quot;, &quot;artificial&quot;, &quot;artificial&quot;, &quot;artificial&quot;, &quot;artificial&quot;, &quot;artificial&quot;, &quot;artificial&quot;, &quot;artificial&quot;, &quot;asia&quot;, &quot;asia&quot;, &quot;asia&quot;, &quot;asia&quot;, &quot;asia&quot;, &quot;asia&quot;, &quot;asia&quot;, &quot;asia&quot;, &quot;asia&quot;, &quot;asia&quot;, &quot;asia&quot;, &quot;asia&quot;, &quot;asia&quot;, &quot;asians&quot;, &quot;asians&quot;, &quot;asians&quot;, &quot;assaults&quot;, &quot;assaults&quot;, &quot;assaults&quot;, &quot;assaults&quot;, &quot;assaults&quot;, &quot;assaults&quot;, &quot;assemblage&quot;, &quot;assemblage&quot;, &quot;assemblage&quot;, &quot;assemblage&quot;, &quot;assemblies&quot;, &quot;assemblies&quot;, &quot;assemblies&quot;, &quot;assemblies&quot;, &quot;assemblies&quot;, &quot;assemblies&quot;, &quot;assemblies&quot;, &quot;assent&quot;, &quot;assent&quot;, &quot;assent&quot;, &quot;assent&quot;, &quot;assent&quot;, &quot;assent&quot;, &quot;assent&quot;, &quot;assent&quot;, &quot;assertion&quot;, &quot;assertion&quot;, &quot;assertion&quot;, &quot;assertion&quot;, &quot;assertion&quot;, &quot;assertion&quot;, &quot;assertion&quot;, &quot;assertion&quot;, &quot;assertion&quot;, &quot;assertion&quot;, &quot;assertion&quot;, &quot;asset&quot;, &quot;asset&quot;, &quot;asset&quot;, &quot;asset&quot;, &quot;asset&quot;, &quot;assigned&quot;, &quot;assigned&quot;, &quot;assigned&quot;, &quot;assigned&quot;, &quot;assigned&quot;, &quot;assigned&quot;, &quot;assigned&quot;, &quot;assigned&quot;, &quot;assigned&quot;, &quot;assigned&quot;, &quot;assigned&quot;, &quot;assigned&quot;, &quot;assigned&quot;, &quot;assistant&quot;, &quot;assistant&quot;, &quot;assistant&quot;, &quot;assistant&quot;, &quot;assistant&quot;, &quot;assistant&quot;, &quot;assistant&quot;, &quot;assistant&quot;, &quot;assistant&quot;, &quot;assistant&quot;, &quot;assistant&quot;, &quot;assistant&quot;, &quot;assure&quot;, &quot;assure&quot;, &quot;assure&quot;, &quot;assure&quot;, &quot;assure&quot;, &quot;assure&quot;, &quot;assure&quot;, &quot;assure&quot;, &quot;assure&quot;, &quot;assure&quot;, &quot;assure&quot;, &quot;assure&quot;, &quot;assure&quot;, &quot;assure&quot;, &quot;assure&quot;, &quot;assure&quot;, &quot;assure&quot;, &quot;atrocity&quot;, &quot;atrocity&quot;, &quot;atrocity&quot;, &quot;atrocity&quot;, &quot;atrocity&quot;, &quot;atrocity&quot;, &quot;attacked&quot;, &quot;attacked&quot;, &quot;attacked&quot;, &quot;attacked&quot;, &quot;attacked&quot;, &quot;attacked&quot;, &quot;attacked&quot;, &quot;attacked&quot;, &quot;attacked&quot;, &quot;attacked&quot;, &quot;attacked&quot;, &quot;attacked&quot;, &quot;attacked&quot;, &quot;attacks&quot;, &quot;attacks&quot;, &quot;attacks&quot;, &quot;attacks&quot;, &quot;attacks&quot;, &quot;attacks&quot;, &quot;attacks&quot;, &quot;attacks&quot;, &quot;attacks&quot;, &quot;attacks&quot;, &quot;attacks&quot;, &quot;attacks&quot;, &quot;attacks&quot;, &quot;attacks&quot;, &quot;attempt&quot;, &quot;attempt&quot;, &quot;attempt&quot;, &quot;attempt&quot;, &quot;attempt&quot;, &quot;attempt&quot;, &quot;attempt&quot;, &quot;attempt&quot;, &quot;attempt&quot;, &quot;attempt&quot;, &quot;attempt&quot;, &quot;attempt&quot;, &quot;attempt&quot;, &quot;attempt&quot;, &quot;attempt&quot;, &quot;attempt&quot;, &quot;attempt&quot;, &quot;attempt&quot;, &quot;attempted&quot;, &quot;attempted&quot;, &quot;attempted&quot;, &quot;attempted&quot;, &quot;attempted&quot;, &quot;attempted&quot;, &quot;attempted&quot;, &quot;attempted&quot;, &quot;attempted&quot;, &quot;attempted&quot;, &quot;attempted&quot;, &quot;attempted&quot;, &quot;attempted&quot;, &quot;attempted&quot;, &quot;attempted&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attention&quot;, &quot;attitude&quot;, &quot;attitude&quot;, &quot;attitude&quot;, &quot;attitude&quot;, &quot;attitude&quot;, &quot;attitude&quot;, &quot;attitude&quot;, &quot;attitude&quot;, &quot;attitude&quot;, &quot;attitude&quot;, &quot;attitude&quot;, &quot;attitude&quot;, &quot;attitude&quot;, &quot;attitude&quot;, &quot;attitude&quot;, &quot;attitude&quot;, &quot;attitude&quot;, &quot;attributable&quot;, &quot;attributable&quot;, &quot;attributable&quot;, &quot;attributable&quot;, &quot;augment&quot;, &quot;augment&quot;, &quot;augment&quot;, &quot;augment&quot;, &quot;augmentation&quot;, &quot;augmentation&quot;, &quot;authority&quot;, &quot;authority&quot;, &quot;authority&quot;, &quot;authority&quot;, &quot;authority&quot;, &quot;authority&quot;, &quot;authority&quot;, &quot;authority&quot;, &quot;authority&quot;, &quot;authority&quot;, &quot;authority&quot;, &quot;authority&quot;, &quot;authority&quot;, &quot;authority&quot;, &quot;authority&quot;, &quot;authority&quot;, &quot;authority&quot;, &quot;authority&quot;, &quot;authority&quot;, &quot;authorized&quot;, &quot;authorized&quot;, &quot;authorized&quot;, &quot;authorized&quot;, &quot;authorized&quot;, &quot;authorized&quot;, &quot;authorized&quot;, &quot;authorized&quot;, &quot;authorized&quot;, &quot;authorized&quot;, &quot;authorized&quot;, &quot;authorized&quot;, &quot;authorized&quot;, &quot;authorized&quot;, &quot;authorizes&quot;, &quot;authorizes&quot;, &quot;authorizes&quot;, &quot;authorizes&quot;, &quot;authorizes&quot;, &quot;authorizing&quot;, &quot;authorizing&quot;, &quot;authorizing&quot;, &quot;authorizing&quot;, &quot;authorizing&quot;, &quot;authorizing&quot;, &quot;authorizing&quot;, &quot;authorizing&quot;, &quot;authorizing&quot;, &quot;authorizing&quot;, &quot;authorizing&quot;, &quot;auto&quot;, &quot;autocracy&quot;, &quot;averted&quot;, &quot;averted&quot;, &quot;averted&quot;, &quot;averted&quot;, &quot;averted&quot;, &quot;averted&quot;, &quot;aviation&quot;, &quot;aviation&quot;, &quot;aviation&quot;, &quot;aviation&quot;, &quot;aviation&quot;, &quot;avoiding&quot;, &quot;avoiding&quot;, &quot;avoiding&quot;, &quot;avoiding&quot;, &quot;avoiding&quot;, &quot;avoiding&quot;, &quot;avoiding&quot;, &quot;avoiding&quot;, &quot;avoiding&quot;, &quot;avoiding&quot;, &quot;awaited&quot;, &quot;awaited&quot;, &quot;awaited&quot;, &quot;axis&quot;, &quot;axis&quot;, &quot;axis&quot;, &quot;baghdad&quot;, &quot;baghdad&quot;, &quot;baker&quot;, &quot;baker&quot;, &quot;baker&quot;, &quot;baker&quot;, &quot;baker&quot;, &quot;baker&quot;, &quot;baker&quot;, &quot;balkans&quot;, &quot;balkans&quot;, &quot;balkans&quot;, &quot;ballistic&quot;, &quot;ballistic&quot;, &quot;ballistic&quot;, &quot;ballyporeen&quot;, &quot;ballyporeen&quot;, &quot;baltic&quot;, &quot;baltic&quot;, &quot;baltic&quot;, &quot;baltic&quot;, &quot;baltic&quot;, &quot;baltimore&quot;, &quot;baltimore&quot;, &quot;baltimore&quot;, &quot;baltimore&quot;, &quot;baltimore&quot;, &quot;baltimore&quot;, &quot;baltimore&quot;, &quot;bank&quot;, &quot;bank&quot;, &quot;bank&quot;, &quot;bank&quot;, &quot;bank&quot;, &quot;bank&quot;, &quot;bank&quot;, &quot;bank&quot;, &quot;bank&quot;, &quot;bank&quot;, &quot;bank&quot;, &quot;bank&quot;, &quot;bank&quot;, &quot;bank&quot;, &quot;bank&quot;, &quot;bank&quot;, &quot;bankrupt&quot;, &quot;bankrupt&quot;, &quot;banks&quot;, &quot;banks&quot;, &quot;banks&quot;, &quot;banks&quot;, &quot;banks&quot;, &quot;banks&quot;, &quot;banks&quot;, &quot;banks&quot;, &quot;banks&quot;, &quot;banks&quot;, &quot;banks&quot;, &quot;banks&quot;, &quot;banks&quot;, &quot;banks&quot;, &quot;banks&quot;, &quot;banks&quot;, &quot;banner&quot;, &quot;banner&quot;, &quot;banner&quot;, &quot;banner&quot;, &quot;banner&quot;, &quot;banner&quot;, &quot;banner&quot;, &quot;barbary&quot;, &quot;barbary&quot;, &quot;barbary&quot;, &quot;bargain&quot;, &quot;bargain&quot;, &quot;bargain&quot;, &quot;bargain&quot;, &quot;bargain&quot;, &quot;bargain&quot;, &quot;bargain&quot;, &quot;bargain&quot;, &quot;bargain&quot;, &quot;bargain&quot;, &quot;barrel&quot;, &quot;barrel&quot;, &quot;barrel&quot;, &quot;barrel&quot;, &quot;barrels&quot;, &quot;barrels&quot;, &quot;barrels&quot;, &quot;barrier&quot;, &quot;barrier&quot;, &quot;barrier&quot;, &quot;barrier&quot;, &quot;barrier&quot;, &quot;barrier&quot;, &quot;barrier&quot;, &quot;barrier&quot;, &quot;barrier&quot;, &quot;barrier&quot;, &quot;barrier&quot;, &quot;base&quot;, &quot;base&quot;, &quot;base&quot;, &quot;base&quot;, &quot;base&quot;, &quot;base&quot;, &quot;base&quot;, &quot;base&quot;, &quot;base&quot;, &quot;base&quot;, &quot;base&quot;, &quot;base&quot;, &quot;base&quot;, &quot;baseless&quot;, &quot;baseless&quot;, &quot;baseless&quot;, &quot;baseless&quot;, &quot;baseless&quot;, &quot;basics&quot;, &quot;basin&quot;, &quot;basin&quot;, &quot;basin&quot;, &quot;basin&quot;, &quot;basin&quot;, &quot;basin&quot;, &quot;beaches&quot;, &quot;beaches&quot;, &quot;beaches&quot;, &quot;beaches&quot;, &quot;beaupre&quot;, &quot;begins&quot;, &quot;begins&quot;, &quot;begins&quot;, &quot;begins&quot;, &quot;begins&quot;, &quot;begins&quot;, &quot;begins&quot;, &quot;begins&quot;, &quot;begins&quot;, &quot;begins&quot;, &quot;begins&quot;, &quot;beirut&quot;, &quot;beirut&quot;, &quot;beirut&quot;, &quot;beirut&quot;, &quot;believe&quot;, &quot;believe&quot;, &quot;believe&quot;, &quot;believe&quot;, &quot;believe&quot;, &quot;believe&quot;, &quot;believe&quot;, &quot;believe&quot;, &quot;believe&quot;, &quot;believe&quot;, &quot;believe&quot;, &quot;believe&quot;, &quot;believe&quot;, &quot;believe&quot;, &quot;believe&quot;, &quot;believe&quot;, &quot;believe&quot;, &quot;believe&quot;, &quot;believe&quot;, &quot;bell&quot;, &quot;bell&quot;, &quot;bell&quot;, &quot;bell&quot;, &quot;bell&quot;, &quot;bell&quot;, &quot;bell&quot;, &quot;belligerency&quot;, &quot;beloved&quot;, &quot;beloved&quot;, &quot;beloved&quot;, &quot;beloved&quot;, &quot;beloved&quot;, &quot;beloved&quot;, &quot;beloved&quot;, &quot;bench&quot;, &quot;bench&quot;, &quot;bench&quot;, &quot;bench&quot;, &quot;bench&quot;, &quot;bench&quot;, &quot;bench&quot;, &quot;bench&quot;, &quot;beneficially&quot;, &quot;beneficially&quot;, &quot;beneficially&quot;, &quot;benefited&quot;, &quot;benefited&quot;, &quot;benefited&quot;, &quot;benefited&quot;, &quot;benefited&quot;, &quot;benefited&quot;, &quot;benevolent&quot;, &quot;benevolent&quot;, &quot;benevolent&quot;, &quot;benevolent&quot;, &quot;benevolent&quot;, &quot;berlin&quot;, &quot;berlin&quot;, &quot;berlin&quot;, &quot;berlin&quot;, &quot;berlin&quot;, &quot;berlin&quot;, &quot;berlin&quot;, &quot;berlin&quot;, &quot;berlin&quot;, &quot;berlin&quot;, &quot;berlin&quot;, &quot;beset&quot;, &quot;beset&quot;, &quot;beset&quot;, &quot;beset&quot;, &quot;beset&quot;, &quot;bicentennial&quot;, &quot;bids&quot;, &quot;bids&quot;, &quot;bids&quot;, &quot;biggest&quot;, &quot;biggest&quot;, &quot;bigotry&quot;, &quot;bigotry&quot;, &quot;bigotry&quot;, &quot;bigotry&quot;, &quot;bigotry&quot;, &quot;bigotry&quot;, &quot;bilateral&quot;, &quot;bilateral&quot;, &quot;billion&quot;, &quot;billion&quot;, &quot;billion&quot;, &quot;billion&quot;, &quot;billion&quot;, &quot;billion&quot;, &quot;billion&quot;, &quot;billion&quot;, &quot;billion&quot;, &quot;billion&quot;, &quot;billion&quot;, &quot;billion&quot;, &quot;billion&quot;, &quot;bishop&quot;, &quot;bishop&quot;, &quot;bishop&quot;, &quot;bishop&quot;, &quot;bishop&quot;, &quot;blessing&quot;, &quot;blessing&quot;, &quot;blessing&quot;, &quot;blessing&quot;, &quot;blessing&quot;, &quot;blessing&quot;, &quot;blessing&quot;, &quot;blessing&quot;, &quot;blessing&quot;, &quot;blockades&quot;, &quot;blockades&quot;, &quot;blockades&quot;, &quot;blocked&quot;, &quot;blocked&quot;, &quot;blocked&quot;, &quot;blocked&quot;, &quot;blocked&quot;, &quot;blown&quot;, &quot;blown&quot;, &quot;blown&quot;, &quot;blown&quot;, &quot;blown&quot;, &quot;blown&quot;, &quot;bodied&quot;, &quot;bodied&quot;, &quot;bodied&quot;, &quot;bodied&quot;, &quot;bogota&quot;, &quot;bogota&quot;, &quot;bogota&quot;, &quot;bogota&quot;, &quot;bogota&quot;, &quot;bogota&quot;, &quot;bogota&quot;, &quot;bomber&quot;, &quot;bomber&quot;, &quot;bomber&quot;, &quot;bomber&quot;, &quot;bomber&quot;, &quot;bomber&quot;, &quot;bombing&quot;, &quot;bombing&quot;, &quot;bombing&quot;, &quot;bombing&quot;, &quot;bombing&quot;, &quot;bondage&quot;, &quot;bondage&quot;, &quot;bondage&quot;, &quot;bondage&quot;, &quot;bondage&quot;, &quot;bonded&quot;, &quot;bonded&quot;, &quot;bonds&quot;, &quot;bonds&quot;, &quot;bonds&quot;, &quot;bonds&quot;, &quot;bonds&quot;, &quot;bonds&quot;, &quot;bonds&quot;, &quot;bonds&quot;, &quot;bonds&quot;, &quot;bonds&quot;, &quot;bonds&quot;, &quot;bonds&quot;, &quot;bonds&quot;, &quot;bonds&quot;, &quot;bonds&quot;, &quot;bonds&quot;, &quot;bosom&quot;, &quot;bosom&quot;, &quot;bosom&quot;, &quot;box&quot;, &quot;box&quot;, &quot;box&quot;, &quot;box&quot;, &quot;box&quot;, &quot;box&quot;, &quot;box&quot;, &quot;box&quot;, &quot;box&quot;, &quot;box&quot;, &quot;boycott&quot;, &quot;boycott&quot;, &quot;boycott&quot;, &quot;boycott&quot;, &quot;boyd&quot;, &quot;boyd&quot;, &quot;boyd&quot;, &quot;bracket&quot;, &quot;bracket&quot;, &quot;brady&quot;, &quot;brave&quot;, &quot;brave&quot;, &quot;brave&quot;, &quot;brave&quot;, &quot;brave&quot;, &quot;brave&quot;, &quot;brave&quot;, &quot;brave&quot;, &quot;brave&quot;, &quot;brave&quot;, &quot;brave&quot;, &quot;breeding&quot;, &quot;breeding&quot;, &quot;breeding&quot;, &quot;breeding&quot;, &quot;brezhnev&quot;, &quot;brezhnev&quot;, &quot;brigade&quot;, &quot;brigade&quot;, &quot;brigade&quot;, &quot;british&quot;, &quot;british&quot;, &quot;british&quot;, &quot;british&quot;, &quot;british&quot;, &quot;british&quot;, &quot;british&quot;, &quot;british&quot;, &quot;british&quot;, &quot;british&quot;, &quot;british&quot;, &quot;british&quot;, &quot;british&quot;, &quot;british&quot;, &quot;british&quot;, &quot;british&quot;, &quot;british&quot;, &quot;british&quot;, &quot;broadest&quot;, &quot;broadest&quot;, &quot;broadest&quot;, &quot;broadest&quot;, &quot;broadest&quot;, &quot;broadest&quot;, &quot;broadest&quot;, &quot;broadest&quot;, &quot;brought&quot;, &quot;brought&quot;, &quot;brought&quot;, &quot;brought&quot;, &quot;brought&quot;, &quot;brought&quot;, &quot;brought&quot;, &quot;brought&quot;, &quot;brought&quot;, &quot;brought&quot;, &quot;brought&quot;, &quot;brought&quot;, &quot;brought&quot;, &quot;brought&quot;, &quot;brought&quot;, &quot;brought&quot;, &quot;brought&quot;, &quot;brought&quot;, &quot;brought&quot;, &quot;budget&quot;, &quot;budget&quot;, &quot;budget&quot;, &quot;budget&quot;, &quot;budget&quot;, &quot;budget&quot;, &quot;budget&quot;, &quot;budget&quot;, &quot;budget&quot;, &quot;budget&quot;, &quot;budget&quot;, &quot;budget&quot;, &quot;budget&quot;, &quot;budget&quot;, &quot;builded&quot;, &quot;builded&quot;, &quot;builded&quot;, &quot;bulgaria&quot;, &quot;bulgaria&quot;, &quot;bulgaria&quot;, &quot;bulgaria&quot;, &quot;bullion&quot;, &quot;bullion&quot;, &quot;bundy&quot;, &quot;bundy&quot;, &quot;bundy&quot;, &quot;bunker&quot;, &quot;bunker&quot;, &quot;bunker&quot;, &quot;buoys&quot;, &quot;buoys&quot;, &quot;burden&quot;, &quot;burden&quot;, &quot;burden&quot;, &quot;burden&quot;, &quot;burden&quot;, &quot;burden&quot;, &quot;burden&quot;, &quot;burden&quot;, &quot;burden&quot;, &quot;burden&quot;, &quot;burden&quot;, &quot;burden&quot;, &quot;burden&quot;, &quot;burden&quot;, &quot;burden&quot;, &quot;burdened&quot;, &quot;burdened&quot;, &quot;burdened&quot;, &quot;burdened&quot;, &quot;burdened&quot;, &quot;burdened&quot;, &quot;burlingame&quot;, &quot;burr&quot;, &quot;burr&quot;, &quot;bus&quot;, &quot;bus&quot;, &quot;bus&quot;, &quot;bush&quot;, &quot;bush&quot;, &quot;bush&quot;, &quot;bush&quot;, &quot;bush&quot;, &quot;business&quot;, &quot;business&quot;, &quot;business&quot;, &quot;business&quot;, &quot;business&quot;, &quot;business&quot;, &quot;business&quot;, &quot;business&quot;, &quot;business&quot;, &quot;business&quot;, &quot;business&quot;, &quot;business&quot;, &quot;business&quot;, &quot;business&quot;, &quot;business&quot;, &quot;business&quot;, &quot;business&quot;, &quot;business&quot;, &quot;business&quot;, &quot;businesses&quot;, &quot;businesses&quot;, &quot;businesses&quot;, &quot;businesses&quot;, &quot;businesses&quot;, &quot;businesses&quot;, &quot;businesses&quot;, &quot;businesses&quot;, &quot;businessmen&quot;, &quot;businessmen&quot;, &quot;businessmen&quot;, &quot;businessmen&quot;, &quot;businessmen&quot;, &quot;businessmen&quot;, &quot;calmly&quot;, &quot;calmly&quot;, &quot;calmly&quot;, &quot;calmly&quot;, &quot;camp&quot;, &quot;camp&quot;, &quot;camp&quot;, &quot;camp&quot;, &quot;camp&quot;, &quot;camp&quot;, &quot;camp&quot;, &quot;camp&quot;, &quot;camp&quot;, &quot;camp&quot;, &quot;campaigns&quot;, &quot;campaigns&quot;, &quot;campaigns&quot;, &quot;campaigns&quot;, &quot;campaigns&quot;, &quot;campaigns&quot;, &quot;canadians&quot;, &quot;canadians&quot;, &quot;canadians&quot;, &quot;canadians&quot;, &quot;canal&quot;, &quot;canal&quot;, &quot;canal&quot;, &quot;canal&quot;, &quot;canal&quot;, &quot;canal&quot;, &quot;canal&quot;, &quot;canal&quot;, &quot;canal&quot;, &quot;canal&quot;, &quot;canal&quot;, &quot;canal&quot;, &quot;canal&quot;, &quot;canal&quot;, &quot;cancel&quot;, &quot;cancel&quot;, &quot;cancel&quot;, &quot;cancel&quot;, &quot;cancel&quot;, &quot;cancel&quot;, &quot;cancel&quot;, &quot;cancer&quot;, &quot;cancer&quot;, &quot;cancer&quot;, &quot;cancer&quot;, &quot;cancer&quot;, &quot;candidate&quot;, &quot;candidate&quot;, &quot;candidate&quot;, &quot;candidate&quot;, &quot;candidate&quot;, &quot;candidate&quot;, &quot;candidate&quot;, &quot;candidate&quot;, &quot;candidate&quot;, &quot;candidate&quot;, &quot;candidate&quot;, &quot;candidate&quot;, &quot;candidates&quot;, &quot;candidates&quot;, &quot;candidates&quot;, &quot;candidates&quot;, &quot;candidates&quot;, &quot;candidates&quot;, &quot;candidates&quot;, &quot;candidates&quot;, &quot;candidates&quot;, &quot;candidates&quot;, &quot;candidates&quot;, &quot;candidates&quot;, &quot;candidates&quot;, &quot;candidly&quot;, &quot;candidly&quot;, &quot;candidly&quot;, &quot;candidly&quot;, &quot;capacities&quot;, &quot;capacities&quot;, &quot;capacities&quot;, &quot;capacities&quot;, &quot;capacities&quot;, &quot;capacities&quot;, &quot;capital&quot;, &quot;capital&quot;, &quot;capital&quot;, &quot;capital&quot;, &quot;capital&quot;, &quot;capital&quot;, &quot;capital&quot;, &quot;capital&quot;, &quot;capital&quot;, &quot;capital&quot;, &quot;capital&quot;, &quot;capital&quot;, &quot;capital&quot;, &quot;capital&quot;, &quot;capital&quot;, &quot;capital&quot;, &quot;capital&quot;, &quot;capital&quot;, &quot;captured&quot;, &quot;captured&quot;, &quot;captured&quot;, &quot;captured&quot;, &quot;captured&quot;, &quot;captured&quot;, &quot;captured&quot;, &quot;captured&quot;, &quot;captures&quot;, &quot;captures&quot;, &quot;captures&quot;, &quot;care&quot;, &quot;care&quot;, &quot;care&quot;, &quot;care&quot;, &quot;care&quot;, &quot;care&quot;, &quot;care&quot;, &quot;care&quot;, &quot;care&quot;, &quot;care&quot;, &quot;care&quot;, &quot;care&quot;, &quot;care&quot;, &quot;care&quot;, &quot;care&quot;, &quot;care&quot;, &quot;care&quot;, &quot;care&quot;, &quot;care&quot;, &quot;carl&quot;, &quot;carl&quot;, &quot;carl&quot;, &quot;carl&quot;, &quot;carl&quot;, &quot;carl&quot;, &quot;carolina&quot;, &quot;carolina&quot;, &quot;carolina&quot;, &quot;carolina&quot;, &quot;carolina&quot;, &quot;carolina&quot;, &quot;carolina&quot;, &quot;carolina&quot;, &quot;caroline&quot;, &quot;caroline&quot;, &quot;caroline&quot;, &quot;carriers&quot;, &quot;carriers&quot;, &quot;carriers&quot;, &quot;carriers&quot;, &quot;carriers&quot;, &quot;carriers&quot;, &quot;carries&quot;, &quot;carries&quot;, &quot;carries&quot;, &quot;carries&quot;, &quot;carries&quot;, &quot;carries&quot;, &quot;carries&quot;, &quot;carries&quot;, &quot;carries&quot;, &quot;carries&quot;, &quot;casualties&quot;, &quot;casualties&quot;, &quot;casualties&quot;, &quot;casualties&quot;, &quot;casualties&quot;, &quot;casualties&quot;, &quot;casualties&quot;, &quot;casualties&quot;, &quot;casualties&quot;, &quot;casualties&quot;, &quot;cattle&quot;, &quot;cattle&quot;, &quot;cattle&quot;, &quot;cattle&quot;, &quot;cattle&quot;, &quot;cattle&quot;, &quot;cattle&quot;, &quot;cattle&quot;, &quot;cattle&quot;, &quot;caught&quot;, &quot;caught&quot;, &quot;caught&quot;, &quot;caught&quot;, &quot;caught&quot;, &quot;caught&quot;, &quot;caught&quot;, &quot;caught&quot;, &quot;ceased&quot;, &quot;ceased&quot;, &quot;ceased&quot;, &quot;ceased&quot;, &quot;ceased&quot;, &quot;ceased&quot;, &quot;ceased&quot;, &quot;ceased&quot;, &quot;ceased&quot;, &quot;censure&quot;, &quot;censure&quot;, &quot;censure&quot;, &quot;censure&quot;, &quot;cent&quot;, &quot;cent&quot;, &quot;cent&quot;, &quot;cent&quot;, &quot;cent&quot;, &quot;cent&quot;, &quot;cent&quot;, &quot;cent&quot;, &quot;cent&quot;, &quot;cent&quot;, &quot;cent&quot;, &quot;cent&quot;, &quot;cent&quot;, &quot;cent&quot;, &quot;cent&quot;, &quot;centered&quot;, &quot;centered&quot;, &quot;centralized&quot;, &quot;centralized&quot;, &quot;centralized&quot;, &quot;centralized&quot;, &quot;century&quot;, &quot;century&quot;, &quot;century&quot;, &quot;century&quot;, &quot;century&quot;, &quot;century&quot;, &quot;century&quot;, &quot;century&quot;, &quot;century&quot;, &quot;century&quot;, &quot;century&quot;, &quot;century&quot;, &quot;century&quot;, &quot;century&quot;, &quot;century&quot;, &quot;century&quot;, &quot;century&quot;, &quot;certain&quot;, &quot;certain&quot;, &quot;certain&quot;, &quot;certain&quot;, &quot;certain&quot;, &quot;certain&quot;, &quot;certain&quot;, &quot;certain&quot;, &quot;certain&quot;, &quot;certain&quot;, &quot;certain&quot;, &quot;certain&quot;, &quot;certain&quot;, &quot;certain&quot;, &quot;certain&quot;, &quot;certain&quot;, &quot;certain&quot;, &quot;certain&quot;, &quot;certain&quot;, &quot;certification&quot;, &quot;certification&quot;, &quot;certification&quot;, &quot;certified&quot;, &quot;certified&quot;, &quot;certified&quot;, &quot;certified&quot;, &quot;certified&quot;, &quot;certified&quot;, &quot;certify&quot;, &quot;certify&quot;, &quot;chain&quot;, &quot;chain&quot;, &quot;chain&quot;, &quot;chain&quot;, &quot;chain&quot;, &quot;chain&quot;, &quot;chain&quot;, &quot;chain&quot;, &quot;chamber&quot;, &quot;chamber&quot;, &quot;chamber&quot;, &quot;chamber&quot;, &quot;chamber&quot;, &quot;chamber&quot;, &quot;chamber&quot;, &quot;chamber&quot;, &quot;chamber&quot;, &quot;chamber&quot;, &quot;chamber&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;change&quot;, &quot;charging&quot;, &quot;charging&quot;, &quot;charging&quot;, &quot;charging&quot;, &quot;charging&quot;, &quot;charging&quot;, &quot;charging&quot;, &quot;charging&quot;, &quot;charles&quot;, &quot;charles&quot;, &quot;charles&quot;, &quot;charles&quot;, &quot;charles&quot;, &quot;charles&quot;, &quot;charles&quot;, &quot;charles&quot;, &quot;charles&quot;, &quot;charles&quot;, &quot;charles&quot;, &quot;charles&quot;, &quot;chemicals&quot;, &quot;chemicals&quot;, &quot;chemicals&quot;, &quot;chemicals&quot;, &quot;chemicals&quot;, &quot;chemicals&quot;, &quot;chemicals&quot;, &quot;chemicals&quot;, &quot;cherokees&quot;, &quot;cherokees&quot;, &quot;cherokees&quot;, &quot;chesapeake&quot;, &quot;chesapeake&quot;, &quot;chesapeake&quot;, &quot;chesapeake&quot;, &quot;chi&quot;, &quot;chickasaws&quot;, &quot;child&quot;, &quot;child&quot;, &quot;child&quot;, &quot;child&quot;, &quot;child&quot;, &quot;child&quot;, &quot;child&quot;, &quot;child&quot;, &quot;child&quot;, &quot;child&quot;, &quot;child&quot;, &quot;children&quot;, &quot;children&quot;, &quot;children&quot;, &quot;children&quot;, &quot;children&quot;, &quot;children&quot;, &quot;children&quot;, &quot;children&quot;, &quot;children&quot;, &quot;children&quot;, &quot;children&quot;, &quot;children&quot;, &quot;children&quot;, &quot;children&quot;, &quot;children&quot;, &quot;children&quot;, &quot;children&quot;, &quot;children&quot;, &quot;children&quot;, &quot;chile&quot;, &quot;chile&quot;, &quot;chile&quot;, &quot;chile&quot;, &quot;chile&quot;, &quot;chile&quot;, &quot;chile&quot;, &quot;chile&quot;, &quot;chilean&quot;, &quot;chilean&quot;, &quot;chilean&quot;, &quot;chili&quot;, &quot;chili&quot;, &quot;chili&quot;, &quot;chinese&quot;, &quot;chinese&quot;, &quot;chinese&quot;, &quot;chinese&quot;, &quot;chinese&quot;, &quot;chinese&quot;, &quot;chinese&quot;, &quot;chinese&quot;, &quot;chinese&quot;, &quot;chinese&quot;, &quot;chinese&quot;, &quot;chinese&quot;, &quot;chip&quot;, &quot;chosen&quot;, &quot;chosen&quot;, &quot;chosen&quot;, &quot;chosen&quot;, &quot;chosen&quot;, &quot;chosen&quot;, &quot;chosen&quot;, &quot;chosen&quot;, &quot;chosen&quot;, &quot;chosen&quot;, &quot;chosen&quot;, &quot;chosen&quot;, &quot;chosen&quot;, &quot;chosen&quot;, &quot;chosen&quot;, &quot;christian&quot;, &quot;christian&quot;, &quot;christian&quot;, &quot;christian&quot;, &quot;christian&quot;, &quot;christian&quot;, &quot;christian&quot;, &quot;christian&quot;, &quot;christian&quot;, &quot;chronic&quot;, &quot;chronic&quot;, &quot;chronic&quot;, &quot;chronic&quot;, &quot;chronic&quot;, &quot;church&quot;, &quot;church&quot;, &quot;church&quot;, &quot;church&quot;, &quot;church&quot;, &quot;church&quot;, &quot;church&quot;, &quot;church&quot;, &quot;church&quot;, &quot;church&quot;, &quot;church&quot;, &quot;church&quot;, &quot;churches&quot;, &quot;churches&quot;, &quot;churches&quot;, &quot;churches&quot;, &quot;churches&quot;, &quot;churches&quot;, &quot;churches&quot;, &quot;churches&quot;, &quot;churches&quot;, &quot;churches&quot;, &quot;circulation&quot;, &quot;circulation&quot;, &quot;circulation&quot;, &quot;circulation&quot;, &quot;circulation&quot;, &quot;circulation&quot;, &quot;circulation&quot;, &quot;citizens&quot;, &quot;citizens&quot;, &quot;citizens&quot;, &quot;citizens&quot;, &quot;citizens&quot;, &quot;citizens&quot;, &quot;citizens&quot;, &quot;citizens&quot;, &quot;citizens&quot;, &quot;citizens&quot;, &quot;citizens&quot;, &quot;citizens&quot;, &quot;citizens&quot;, &quot;citizens&quot;, &quot;citizens&quot;, &quot;citizens&quot;, &quot;citizens&quot;, &quot;citizens&quot;, &quot;citizens&quot;, &quot;civil&quot;, &quot;civil&quot;, &quot;civil&quot;, &quot;civil&quot;, &quot;civil&quot;, &quot;civil&quot;, &quot;civil&quot;, &quot;civil&quot;, &quot;civil&quot;, &quot;civil&quot;, &quot;civil&quot;, &quot;civil&quot;, &quot;civil&quot;, &quot;civil&quot;, &quot;civil&quot;, &quot;civil&quot;, &quot;civil&quot;, &quot;civil&quot;, &quot;civil&quot;, &quot;civilian&quot;, &quot;civilian&quot;, &quot;civilian&quot;, &quot;civilian&quot;, &quot;civilian&quot;, &quot;civilian&quot;, &quot;civilian&quot;, &quot;civilians&quot;, &quot;civilians&quot;, &quot;civilians&quot;, &quot;civilians&quot;, &quot;civilians&quot;, &quot;civilians&quot;, &quot;civilians&quot;, &quot;civilization&quot;, &quot;civilization&quot;, &quot;civilization&quot;, &quot;civilization&quot;, &quot;civilization&quot;, &quot;civilization&quot;, &quot;civilization&quot;, &quot;civilization&quot;, &quot;civilization&quot;, &quot;civilization&quot;, &quot;civilization&quot;, &quot;civilization&quot;, &quot;civilization&quot;, &quot;civilization&quot;, &quot;claimant&quot;, &quot;claimant&quot;, &quot;claiming&quot;, &quot;claiming&quot;, &quot;claiming&quot;, &quot;claiming&quot;, &quot;claiming&quot;, &quot;claiming&quot;, &quot;claiming&quot;, &quot;claiming&quot;, &quot;claims&quot;, &quot;claims&quot;, &quot;claims&quot;, &quot;claims&quot;, &quot;claims&quot;, &quot;claims&quot;, &quot;claims&quot;, &quot;claims&quot;, &quot;claims&quot;, &quot;claims&quot;, &quot;claims&quot;, &quot;claims&quot;, &quot;claims&quot;, &quot;claims&quot;, &quot;claims&quot;, &quot;clarify&quot;, &quot;clarify&quot;, &quot;clarify&quot;, &quot;clarify&quot;, &quot;clarify&quot;, &quot;clarify&quot;, &quot;clarify&quot;, &quot;clark&quot;, &quot;clark&quot;, &quot;clark&quot;, &quot;clark&quot;, &quot;clark&quot;, &quot;clark&quot;, &quot;classified&quot;, &quot;classified&quot;, &quot;classified&quot;, &quot;classified&quot;, &quot;classified&quot;, &quot;classified&quot;, &quot;classified&quot;, &quot;classified&quot;, &quot;classified&quot;, &quot;clay&quot;, &quot;clay&quot;, &quot;clay&quot;, &quot;clay&quot;, &quot;clay&quot;, &quot;clay&quot;, &quot;clay&quot;, &quot;clay&quot;, &quot;clayton&quot;, &quot;clayton&quot;, &quot;clayton&quot;, &quot;clayton&quot;, &quot;clergy&quot;, &quot;clergy&quot;, &quot;clergy&quot;, &quot;clergy&quot;, &quot;clerk&quot;, &quot;clerk&quot;, &quot;clerk&quot;, &quot;clerk&quot;, &quot;clerk&quot;, &quot;clerk&quot;, &quot;clinton&quot;, &quot;clinton&quot;, &quot;clinton&quot;, &quot;clinton&quot;, &quot;cloth&quot;, &quot;cloth&quot;, &quot;cloth&quot;, &quot;cloth&quot;, &quot;clothes&quot;, &quot;clothes&quot;, &quot;clothes&quot;, &quot;clothes&quot;, &quot;clothes&quot;, &quot;clothes&quot;, &quot;coal&quot;, &quot;coal&quot;, &quot;coal&quot;, &quot;coal&quot;, &quot;coal&quot;, &quot;coal&quot;, &quot;coal&quot;, &quot;coal&quot;, &quot;coal&quot;, &quot;coal&quot;, &quot;coal&quot;, &quot;coal&quot;, &quot;coastwise&quot;, &quot;coastwise&quot;, &quot;coastwise&quot;, &quot;coastwise&quot;, &quot;cocaine&quot;, &quot;cognizance&quot;, &quot;cognizance&quot;, &quot;cognizance&quot;, &quot;cognizance&quot;, &quot;cognizance&quot;, &quot;cognizance&quot;, &quot;cognizance&quot;, &quot;coin&quot;, &quot;coin&quot;, &quot;coin&quot;, &quot;coin&quot;, &quot;coin&quot;, &quot;coin&quot;, &quot;coin&quot;, &quot;coinage&quot;, &quot;coinage&quot;, &quot;coinage&quot;, &quot;coincidence&quot;, &quot;coincidence&quot;, &quot;coincidence&quot;, &quot;coincidence&quot;, &quot;coined&quot;, &quot;coined&quot;, &quot;cold&quot;, &quot;cold&quot;, &quot;cold&quot;, &quot;cold&quot;, &quot;cold&quot;, &quot;cold&quot;, &quot;cold&quot;, &quot;cold&quot;, &quot;cold&quot;, &quot;cold&quot;, &quot;cold&quot;, &quot;cold&quot;, &quot;cold&quot;, &quot;collecting&quot;, &quot;collecting&quot;, &quot;collecting&quot;, &quot;collecting&quot;, &quot;collecting&quot;, &quot;collecting&quot;, &quot;collecting&quot;, &quot;collecting&quot;, &quot;collecting&quot;, &quot;collectively&quot;, &quot;collectively&quot;, &quot;collectively&quot;, &quot;collectively&quot;, &quot;collectively&quot;, &quot;collectively&quot;, &quot;collectively&quot;, &quot;college&quot;, &quot;college&quot;, &quot;college&quot;, &quot;college&quot;, &quot;college&quot;, &quot;college&quot;, &quot;college&quot;, &quot;college&quot;, &quot;college&quot;, &quot;college&quot;, &quot;college&quot;, &quot;collins&quot;, &quot;collins&quot;, &quot;collins&quot;, &quot;collins&quot;, &quot;collins&quot;, &quot;collisions&quot;, &quot;collisions&quot;, &quot;collisions&quot;, &quot;collisions&quot;, &quot;collisions&quot;, &quot;colombia&quot;, &quot;colombia&quot;, &quot;colombia&quot;, &quot;colombia&quot;, &quot;colombia&quot;, &quot;colombia&quot;, &quot;colombia&quot;, &quot;colombia&quot;, &quot;colombia&quot;, &quot;colombian&quot;, &quot;colombian&quot;, &quot;colombian&quot;, &quot;colombian&quot;, &quot;colon&quot;, &quot;colon&quot;, &quot;colon&quot;, &quot;colon&quot;, &quot;colonialism&quot;, &quot;colonialism&quot;, &quot;colonialism&quot;, &quot;color&quot;, &quot;color&quot;, &quot;color&quot;, &quot;color&quot;, &quot;color&quot;, &quot;color&quot;, &quot;color&quot;, &quot;color&quot;, &quot;color&quot;, &quot;color&quot;, &quot;color&quot;, &quot;color&quot;, &quot;color&quot;, &quot;color&quot;, &quot;color&quot;, &quot;colorado&quot;, &quot;colorado&quot;, &quot;colorado&quot;, &quot;colorado&quot;, &quot;colorado&quot;, &quot;colorado&quot;, &quot;colorado&quot;, &quot;colorado&quot;, &quot;colorado&quot;, &quot;colorado&quot;, &quot;colored&quot;, &quot;colored&quot;, &quot;colored&quot;, &quot;colored&quot;, &quot;colored&quot;, &quot;colored&quot;, &quot;colored&quot;, &quot;colored&quot;, &quot;colored&quot;, &quot;colored&quot;, &quot;colored&quot;, &quot;colored&quot;, &quot;colored&quot;, &quot;combat&quot;, &quot;combat&quot;, &quot;combat&quot;, &quot;combat&quot;, &quot;combat&quot;, &quot;combatants&quot;, &quot;combatants&quot;, &quot;combatants&quot;, &quot;combatants&quot;, &quot;combatants&quot;, &quot;combatants&quot;, &quot;combination&quot;, &quot;combination&quot;, &quot;combination&quot;, &quot;combination&quot;, &quot;combination&quot;, &quot;combination&quot;, &quot;combination&quot;, &quot;combination&quot;, &quot;combination&quot;, &quot;combination&quot;, &quot;combination&quot;, &quot;combination&quot;, &quot;combinations&quot;, &quot;combinations&quot;, &quot;combinations&quot;, &quot;combinations&quot;, &quot;combinations&quot;, &quot;combinations&quot;, &quot;combinations&quot;, &quot;come&quot;, &quot;come&quot;, &quot;come&quot;, &quot;come&quot;, &quot;come&quot;, &quot;come&quot;, &quot;come&quot;, &quot;come&quot;, &quot;come&quot;, &quot;come&quot;, &quot;come&quot;, &quot;come&quot;, &quot;come&quot;, &quot;come&quot;, &quot;come&quot;, &quot;come&quot;, &quot;come&quot;, &quot;come&quot;, &quot;come&quot;, &quot;comitatus&quot;, &quot;comitatus&quot;, &quot;comitatus&quot;, &quot;comity&quot;, &quot;comity&quot;, &quot;comity&quot;, &quot;comity&quot;, &quot;command&quot;, &quot;command&quot;, &quot;command&quot;, &quot;command&quot;, &quot;command&quot;, &quot;command&quot;, &quot;command&quot;, &quot;command&quot;, &quot;command&quot;, &quot;command&quot;, &quot;command&quot;, &quot;command&quot;, &quot;command&quot;, &quot;command&quot;, &quot;command&quot;, &quot;commandant&quot;, &quot;commandant&quot;, &quot;commandant&quot;, &quot;commandant&quot;, &quot;commanders&quot;, &quot;commanders&quot;, &quot;commanders&quot;, &quot;commanders&quot;, &quot;commanders&quot;, &quot;commanders&quot;, &quot;commanders&quot;, &quot;commanders&quot;, &quot;commanders&quot;, &quot;commanders&quot;, &quot;commencement&quot;, &quot;commencement&quot;, &quot;commencement&quot;, &quot;commencement&quot;, &quot;commencement&quot;, &quot;commencement&quot;, &quot;commencement&quot;, &quot;commencement&quot;, &quot;commencement&quot;, &quot;commend&quot;, &quot;commend&quot;, &quot;commend&quot;, &quot;commend&quot;, &quot;commend&quot;, &quot;commend&quot;, &quot;commend&quot;, &quot;commend&quot;, &quot;commend&quot;, &quot;commend&quot;, &quot;commend&quot;, &quot;commend&quot;, &quot;comment&quot;, &quot;comment&quot;, &quot;comment&quot;, &quot;comment&quot;, &quot;comment&quot;, &quot;comment&quot;, &quot;comment&quot;, &quot;comment&quot;, &quot;comment&quot;, &quot;comment&quot;, &quot;commerce&quot;, &quot;commerce&quot;, &quot;commerce&quot;, &quot;commerce&quot;, &quot;commerce&quot;, &quot;commerce&quot;, &quot;commerce&quot;, &quot;commerce&quot;, &quot;commerce&quot;, &quot;commerce&quot;, &quot;commerce&quot;, &quot;commerce&quot;, &quot;commerce&quot;, &quot;commerce&quot;, &quot;commerce&quot;, &quot;commerce&quot;, &quot;commerce&quot;, &quot;commerce&quot;, &quot;commerce&quot;, &quot;commercial&quot;, &quot;commercial&quot;, &quot;commercial&quot;, &quot;commercial&quot;, &quot;commercial&quot;, &quot;commercial&quot;, &quot;commercial&quot;, &quot;commercial&quot;, &quot;commercial&quot;, &quot;commercial&quot;, &quot;commercial&quot;, &quot;commercial&quot;, &quot;commercial&quot;, &quot;commercial&quot;, &quot;commercial&quot;, &quot;commercial&quot;, &quot;commission&quot;, &quot;commission&quot;, &quot;commission&quot;, &quot;commission&quot;, &quot;commission&quot;, &quot;commission&quot;, &quot;commission&quot;, &quot;commission&quot;, &quot;commission&quot;, &quot;commission&quot;, &quot;commission&quot;, &quot;commission&quot;, &quot;commission&quot;, &quot;commission&quot;, &quot;commission&quot;, &quot;commission&quot;, &quot;commission&quot;, &quot;commission&quot;, &quot;commission&quot;, &quot;committee&quot;, &quot;committee&quot;, &quot;committee&quot;, &quot;committee&quot;, &quot;committee&quot;, &quot;committee&quot;, &quot;committee&quot;, &quot;committee&quot;, &quot;committee&quot;, &quot;committee&quot;, &quot;committee&quot;, &quot;committee&quot;, &quot;committee&quot;, &quot;committee&quot;, &quot;committee&quot;, &quot;committee&quot;, &quot;committee&quot;, &quot;commodities&quot;, &quot;commodities&quot;, &quot;commodities&quot;, &quot;commodities&quot;, &quot;commodities&quot;, &quot;commodities&quot;, &quot;commodities&quot;, &quot;commodities&quot;, &quot;commodities&quot;, &quot;commodities&quot;, &quot;commodities&quot;, &quot;commodities&quot;, &quot;common&quot;, &quot;common&quot;, &quot;common&quot;, &quot;common&quot;, &quot;common&quot;, &quot;common&quot;, &quot;common&quot;, &quot;common&quot;, &quot;common&quot;, &quot;common&quot;, &quot;common&quot;, &quot;common&quot;, &quot;common&quot;, &quot;common&quot;, &quot;common&quot;, &quot;common&quot;, &quot;common&quot;, &quot;common&quot;, &quot;common&quot;, &quot;commonsense&quot;, &quot;commonsense&quot;, &quot;commonsense&quot;, &quot;commonsense&quot;, &quot;communicated&quot;, &quot;communicated&quot;, &quot;communicated&quot;, &quot;communicated&quot;, &quot;communicated&quot;, &quot;communicated&quot;, &quot;communicated&quot;, &quot;communicated&quot;, &quot;communicated&quot;, &quot;communicated&quot;, &quot;communicated&quot;, &quot;communicated&quot;, &quot;communications&quot;, &quot;communications&quot;, &quot;communications&quot;, &quot;communications&quot;, &quot;communications&quot;, &quot;communications&quot;, &quot;communications&quot;, &quot;communications&quot;, &quot;communications&quot;, &quot;communications&quot;, &quot;communications&quot;, &quot;communications&quot;, &quot;communist&quot;, &quot;communist&quot;, &quot;communist&quot;, &quot;communist&quot;, &quot;communist&quot;, &quot;company&quot;, &quot;company&quot;, &quot;company&quot;, &quot;company&quot;, &quot;company&quot;, &quot;company&quot;, &quot;company&quot;, &quot;company&quot;, &quot;company&quot;, &quot;company&quot;, &quot;company&quot;, &quot;company&quot;, &quot;company&quot;, &quot;company&quot;, &quot;company&quot;, &quot;company&quot;, &quot;comparison&quot;, &quot;comparison&quot;, &quot;comparison&quot;, &quot;comparison&quot;, &quot;comparison&quot;, &quot;comparison&quot;, &quot;comparison&quot;, &quot;comparison&quot;, &quot;comparison&quot;, &quot;comparison&quot;, &quot;comparison&quot;, &quot;comparison&quot;, &quot;compassion&quot;, &quot;compassion&quot;, &quot;compassion&quot;, &quot;compassion&quot;, &quot;compassion&quot;, &quot;compassion&quot;, &quot;compassion&quot;, &quot;compatible&quot;, &quot;compatible&quot;, &quot;compatible&quot;, &quot;compatible&quot;, &quot;compatible&quot;, &quot;compatible&quot;, &quot;compatible&quot;, &quot;compatible&quot;, &quot;compatible&quot;, &quot;compelled&quot;, &quot;compelled&quot;, &quot;compelled&quot;, &quot;compelled&quot;, &quot;compelled&quot;, &quot;compelled&quot;, &quot;compelled&quot;, &quot;compelled&quot;, &quot;compelled&quot;, &quot;compelled&quot;, &quot;compelled&quot;, &quot;complained&quot;, &quot;complained&quot;, &quot;complained&quot;, &quot;complained&quot;, &quot;complained&quot;, &quot;complained&quot;, &quot;complained&quot;, &quot;complained&quot;, &quot;complaints&quot;, &quot;complaints&quot;, &quot;complaints&quot;, &quot;complaints&quot;, &quot;complaints&quot;, &quot;complaints&quot;, &quot;complaints&quot;, &quot;complaints&quot;, &quot;compliance&quot;, &quot;compliance&quot;, &quot;compliance&quot;, &quot;compliance&quot;, &quot;compliance&quot;, &quot;compliance&quot;, &quot;compliance&quot;, &quot;compliance&quot;, &quot;compliance&quot;, &quot;compliance&quot;, &quot;compliance&quot;, &quot;compliance&quot;, &quot;compliance&quot;, &quot;compliance&quot;, &quot;complications&quot;, &quot;complications&quot;, &quot;complied&quot;, &quot;complied&quot;, &quot;complied&quot;, &quot;complied&quot;, &quot;complied&quot;, &quot;comprehend&quot;, &quot;comprehend&quot;, &quot;comprehend&quot;, &quot;comprehend&quot;, &quot;comprehension&quot;, &quot;comprehension&quot;, &quot;compromise&quot;, &quot;compromise&quot;, &quot;compromise&quot;, &quot;compromise&quot;, &quot;compromise&quot;, &quot;compromise&quot;, &quot;compromise&quot;, &quot;compromise&quot;, &quot;compromise&quot;, &quot;compromise&quot;, &quot;compromise&quot;, &quot;compromise&quot;, &quot;compromises&quot;, &quot;compromises&quot;, &quot;compromises&quot;, &quot;compromises&quot;, &quot;compromises&quot;, &quot;compromises&quot;, &quot;compromises&quot;, &quot;conceal&quot;, &quot;conceal&quot;, &quot;conceal&quot;, &quot;conceal&quot;, &quot;conceal&quot;, &quot;conceal&quot;, &quot;conceded&quot;, &quot;conceded&quot;, &quot;conceded&quot;, &quot;conceded&quot;, &quot;conceded&quot;, &quot;conceded&quot;, &quot;conceded&quot;, &quot;concentrate&quot;, &quot;concentrate&quot;, &quot;concentrate&quot;, &quot;concentrate&quot;, &quot;concentrate&quot;, &quot;concentrate&quot;, &quot;concentrate&quot;, &quot;concentrate&quot;, &quot;concentrate&quot;, &quot;concentrate&quot;, &quot;conception&quot;, &quot;conception&quot;, &quot;conception&quot;, &quot;conception&quot;, &quot;conception&quot;, &quot;conception&quot;, &quot;conception&quot;, &quot;conception&quot;, &quot;conception&quot;, &quot;conception&quot;, &quot;concepts&quot;, &quot;concepts&quot;, &quot;concepts&quot;, &quot;concerned&quot;, &quot;concerned&quot;, &quot;concerned&quot;, &quot;concerned&quot;, &quot;concerned&quot;, &quot;concerned&quot;, &quot;concerned&quot;, &quot;concerned&quot;, &quot;concerned&quot;, &quot;concerned&quot;, &quot;concerned&quot;, &quot;concerned&quot;, &quot;concerned&quot;, &quot;concerned&quot;, &quot;concerned&quot;, &quot;concerned&quot;, &quot;concerned&quot;, &quot;concerned&quot;, &quot;concerted&quot;, &quot;concerted&quot;, &quot;concerted&quot;, &quot;concerted&quot;, &quot;concerted&quot;, &quot;concerted&quot;, &quot;concerted&quot;, &quot;concerted&quot;, &quot;concerted&quot;, &quot;concerted&quot;, &quot;concerted&quot;, &quot;conciliation&quot;, &quot;conciliation&quot;, &quot;conciliation&quot;, &quot;conciliation&quot;, &quot;conciliation&quot;, &quot;conciliation&quot;, &quot;conciliation&quot;, &quot;conciliation&quot;, &quot;conciliation&quot;, &quot;concurring&quot;, &quot;concurring&quot;, &quot;concurring&quot;, &quot;concurring&quot;, &quot;concurring&quot;, &quot;condemn&quot;, &quot;condemn&quot;, &quot;condemn&quot;, &quot;condemn&quot;, &quot;condemn&quot;, &quot;condemn&quot;, &quot;condemn&quot;, &quot;condemn&quot;, &quot;condemn&quot;, &quot;condition&quot;, &quot;condition&quot;, &quot;condition&quot;, &quot;condition&quot;, &quot;condition&quot;, &quot;condition&quot;, &quot;condition&quot;, &quot;condition&quot;, &quot;condition&quot;, &quot;condition&quot;, &quot;condition&quot;, &quot;condition&quot;, &quot;condition&quot;, &quot;condition&quot;, &quot;condition&quot;, &quot;condition&quot;, &quot;condition&quot;, &quot;conditions&quot;, &quot;conditions&quot;, &quot;conditions&quot;, &quot;conditions&quot;, &quot;conditions&quot;, &quot;conditions&quot;, &quot;conditions&quot;, &quot;conditions&quot;, &quot;conditions&quot;, &quot;conditions&quot;, &quot;conditions&quot;, &quot;conditions&quot;, &quot;conditions&quot;, &quot;conditions&quot;, &quot;conditions&quot;, &quot;conditions&quot;, &quot;conditions&quot;, &quot;conditions&quot;, &quot;conditions&quot;, &quot;conduct&quot;, &quot;conduct&quot;, &quot;conduct&quot;, &quot;conduct&quot;, &quot;conduct&quot;, &quot;conduct&quot;, &quot;conduct&quot;, &quot;conduct&quot;, &quot;conduct&quot;, &quot;conduct&quot;, &quot;conduct&quot;, &quot;conduct&quot;, &quot;conduct&quot;, &quot;conduct&quot;, &quot;conduct&quot;, &quot;conduct&quot;, &quot;conduct&quot;, &quot;conduct&quot;, &quot;confederated&quot;, &quot;confederated&quot;, &quot;confederated&quot;, &quot;confided&quot;, &quot;confided&quot;, &quot;confided&quot;, &quot;confided&quot;, &quot;confided&quot;, &quot;confided&quot;, &quot;confirm&quot;, &quot;confirm&quot;, &quot;confirm&quot;, &quot;confirm&quot;, &quot;confirm&quot;, &quot;confirm&quot;, &quot;confirm&quot;, &quot;confirm&quot;, &quot;confirm&quot;, &quot;conform&quot;, &quot;conform&quot;, &quot;conform&quot;, &quot;conform&quot;, &quot;conform&quot;, &quot;conform&quot;, &quot;conform&quot;, &quot;conform&quot;, &quot;conform&quot;, &quot;conform&quot;, &quot;conformably&quot;, &quot;conformably&quot;, &quot;conformity&quot;, &quot;conformity&quot;, &quot;conformity&quot;, &quot;conformity&quot;, &quot;conformity&quot;, &quot;conformity&quot;, &quot;conformity&quot;, &quot;conformity&quot;, &quot;conformity&quot;, &quot;conformity&quot;, &quot;congratulating&quot;, &quot;congratulating&quot;, &quot;congratulating&quot;, &quot;congratulating&quot;, &quot;congratulating&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;congress&quot;, &quot;connected&quot;, &quot;connected&quot;, &quot;connected&quot;, &quot;connected&quot;, &quot;connected&quot;, &quot;connected&quot;, &quot;connected&quot;, &quot;connected&quot;, &quot;connected&quot;, &quot;connected&quot;, &quot;connected&quot;, &quot;connected&quot;, &quot;connected&quot;, &quot;conquering&quot;, &quot;conquering&quot;, &quot;conquering&quot;, &quot;conquering&quot;, &quot;conquering&quot;, &quot;conscience&quot;, &quot;conscience&quot;, &quot;conscience&quot;, &quot;conscience&quot;, &quot;conscience&quot;, &quot;conscience&quot;, &quot;conscience&quot;, &quot;conscience&quot;, &quot;conscience&quot;, &quot;conscience&quot;, &quot;conscience&quot;, &quot;conscience&quot;, &quot;conscience&quot;, &quot;conscience&quot;, &quot;conscience&quot;, &quot;consciously&quot;, &quot;consciously&quot;, &quot;consciously&quot;, &quot;consciously&quot;, &quot;consciously&quot;, &quot;consciousness&quot;, &quot;consciousness&quot;, &quot;consciousness&quot;, &quot;consciousness&quot;, &quot;consciousness&quot;, &quot;consciousness&quot;, &quot;consciousness&quot;, &quot;consciousness&quot;, &quot;consecrate&quot;, &quot;consecrate&quot;, &quot;consecrate&quot;, &quot;conserve&quot;, &quot;conserve&quot;, &quot;conserve&quot;, &quot;conserve&quot;, &quot;conserve&quot;, &quot;conserve&quot;, &quot;conserve&quot;, &quot;conserve&quot;, &quot;consideration&quot;, &quot;consideration&quot;, &quot;consideration&quot;, &quot;consideration&quot;, &quot;consideration&quot;, &quot;consideration&quot;, &quot;consideration&quot;, &quot;consideration&quot;, &quot;consideration&quot;, &quot;consideration&quot;, &quot;consideration&quot;, &quot;consideration&quot;, &quot;consideration&quot;, &quot;consideration&quot;, &quot;consideration&quot;, &quot;consideration&quot;, &quot;consideration&quot;, &quot;consideration&quot;, &quot;considerations&quot;, &quot;considerations&quot;, &quot;considerations&quot;, &quot;considerations&quot;, &quot;considerations&quot;, &quot;considerations&quot;, &quot;considerations&quot;, &quot;considerations&quot;, &quot;considerations&quot;, &quot;considerations&quot;, &quot;considerations&quot;, &quot;considerations&quot;, &quot;considerations&quot;, &quot;considerations&quot;, &quot;considerations&quot;, &quot;considers&quot;, &quot;considers&quot;, &quot;considers&quot;, &quot;considers&quot;, &quot;considers&quot;, &quot;considers&quot;, &quot;considers&quot;, &quot;considers&quot;, &quot;considers&quot;, &quot;considers&quot;, &quot;considers&quot;, &quot;considers&quot;, &quot;consists&quot;, &quot;consists&quot;, &quot;consists&quot;, &quot;consists&quot;, &quot;consists&quot;, &quot;consists&quot;, &quot;consists&quot;, &quot;consists&quot;, &quot;consists&quot;, &quot;consists&quot;, &quot;consolidations&quot;, &quot;consolidations&quot;, &quot;constituents&quot;, &quot;constituents&quot;, &quot;constituents&quot;, &quot;constituents&quot;, &quot;constituents&quot;, &quot;constituents&quot;, &quot;constituents&quot;, &quot;constituents&quot;, &quot;constituents&quot;, &quot;constituted&quot;, &quot;constituted&quot;, &quot;constituted&quot;, &quot;constituted&quot;, &quot;constituted&quot;, &quot;constituted&quot;, &quot;constituted&quot;, &quot;constituted&quot;, &quot;constituted&quot;, &quot;constituted&quot;, &quot;constituted&quot;, &quot;constituting&quot;, &quot;constituting&quot;, &quot;constituting&quot;, &quot;constituting&quot;, &quot;constituting&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitution&quot;, &quot;constitutional&quot;, &quot;constitutional&quot;, &quot;constitutional&quot;, &quot;constitutional&quot;, &quot;constitutional&quot;, &quot;constitutional&quot;, &quot;constitutional&quot;, &quot;constitutional&quot;, &quot;constitutional&quot;, &quot;constitutional&quot;, &quot;constitutional&quot;, &quot;constitutional&quot;, &quot;constitutional&quot;, &quot;constitutional&quot;, &quot;constitutional&quot;, &quot;constitutional&quot;, &quot;constitutional&quot;, &quot;constitutional&quot;, &quot;constrained&quot;, &quot;constrained&quot;, &quot;constrained&quot;, &quot;constrained&quot;, &quot;constrained&quot;, &quot;constrained&quot;, &quot;constrained&quot;, &quot;construction&quot;, &quot;construction&quot;, &quot;construction&quot;, &quot;construction&quot;, &quot;construction&quot;, &quot;construction&quot;, &quot;construction&quot;, &quot;construction&quot;, &quot;construction&quot;, &quot;construction&quot;, &quot;construction&quot;, &quot;construction&quot;, &quot;construction&quot;, &quot;construction&quot;, &quot;construction&quot;, &quot;construction&quot;, &quot;construction&quot;, &quot;consul&quot;, &quot;consul&quot;, &quot;consul&quot;, &quot;consul&quot;, &quot;consular&quot;, &quot;consular&quot;, &quot;consular&quot;, &quot;consular&quot;, &quot;consular&quot;, &quot;consular&quot;, &quot;consular&quot;, &quot;consular&quot;, &quot;consular&quot;, &quot;consulate&quot;, &quot;consulate&quot;, &quot;consulate&quot;, &quot;consulate&quot;, &quot;consulting&quot;, &quot;consulting&quot;, &quot;consulting&quot;, &quot;consulting&quot;, &quot;consulting&quot;, &quot;consulting&quot;, &quot;consulting&quot;, &quot;consulting&quot;, &quot;consulting&quot;, &quot;consuming&quot;, &quot;consuming&quot;, &quot;consuming&quot;, &quot;consuming&quot;, &quot;consuming&quot;, &quot;consuming&quot;, &quot;consuming&quot;, &quot;consumption&quot;, &quot;consumption&quot;, &quot;consumption&quot;, &quot;consumption&quot;, &quot;consumption&quot;, &quot;consumption&quot;, &quot;consumption&quot;, &quot;consumption&quot;, &quot;consumption&quot;, &quot;consumption&quot;, &quot;containment&quot;, &quot;containment&quot;, &quot;contingency&quot;, &quot;contingency&quot;, &quot;contingency&quot;, &quot;contingency&quot;, &quot;contingency&quot;, &quot;contingency&quot;, &quot;contingency&quot;, &quot;contingency&quot;, &quot;contingency&quot;, &quot;contingency&quot;, &quot;continual&quot;, &quot;continual&quot;, &quot;continual&quot;, &quot;continual&quot;, &quot;continual&quot;, &quot;continual&quot;, &quot;continual&quot;, &quot;continuance&quot;, &quot;continuance&quot;, &quot;continuance&quot;, &quot;continuance&quot;, &quot;continuance&quot;, &quot;continuance&quot;, &quot;continuance&quot;, &quot;continuance&quot;, &quot;continuance&quot;, &quot;continuance&quot;, &quot;continuance&quot;, &quot;contraband&quot;, &quot;contraband&quot;, &quot;contraband&quot;, &quot;contraction&quot;, &quot;contraction&quot;, &quot;control&quot;, &quot;control&quot;, &quot;control&quot;, &quot;control&quot;, &quot;control&quot;, &quot;control&quot;, &quot;control&quot;, &quot;control&quot;, &quot;control&quot;, &quot;control&quot;, &quot;control&quot;, &quot;control&quot;, &quot;control&quot;, &quot;control&quot;, &quot;control&quot;, &quot;control&quot;, &quot;control&quot;, &quot;control&quot;, &quot;control&quot;, &quot;control&quot;, &quot;conventions&quot;, &quot;conventions&quot;, &quot;conventions&quot;, &quot;conventions&quot;, &quot;conventions&quot;, &quot;conventions&quot;, &quot;conventions&quot;, &quot;conventions&quot;, &quot;conventions&quot;, &quot;conventions&quot;, &quot;conventions&quot;, &quot;conversation&quot;, &quot;conversation&quot;, &quot;conversation&quot;, &quot;conversation&quot;, &quot;conversation&quot;, &quot;conversation&quot;, &quot;conversation&quot;, &quot;conversation&quot;, &quot;convey&quot;, &quot;convey&quot;, &quot;convey&quot;, &quot;convey&quot;, &quot;convey&quot;, &quot;convey&quot;, &quot;convey&quot;, &quot;convey&quot;, &quot;convict&quot;, &quot;convict&quot;, &quot;convict&quot;, &quot;convict&quot;, &quot;convinced&quot;, &quot;convinced&quot;, &quot;convinced&quot;, &quot;convinced&quot;, &quot;convinced&quot;, &quot;convinced&quot;, &quot;convinced&quot;, &quot;convinced&quot;, &quot;convinced&quot;, &quot;convinced&quot;, &quot;convinced&quot;, &quot;convinced&quot;, &quot;convinced&quot;, &quot;convinced&quot;, &quot;convinced&quot;, &quot;convinced&quot;, &quot;convinced&quot;, &quot;convinced&quot;, &quot;convinced&quot;, &quot;cooperation&quot;, &quot;cooperation&quot;, &quot;cooperation&quot;, &quot;cooperation&quot;, &quot;cooperation&quot;, &quot;cooperation&quot;, &quot;cooperation&quot;, &quot;cooperation&quot;, &quot;cooperation&quot;, &quot;cooperation&quot;, &quot;cooperation&quot;, &quot;cooperation&quot;, &quot;cooperation&quot;, &quot;cooperation&quot;, &quot;cooperation&quot;, &quot;cooperation&quot;, &quot;cooperation&quot;, &quot;cooperation&quot;, &quot;cooperatives&quot;, &quot;cooperatives&quot;, &quot;cooperatives&quot;, &quot;coordinate&quot;, &quot;coordinate&quot;, &quot;coordinate&quot;, &quot;coordinate&quot;, &quot;coordinate&quot;, &quot;coordinate&quot;, &quot;coordinate&quot;, &quot;coordinate&quot;, &quot;coordinate&quot;, &quot;coordinate&quot;, &quot;coordinate&quot;, &quot;coordinate&quot;, &quot;copying&quot;, &quot;copying&quot;, &quot;copyist&quot;, &quot;corporal&quot;, &quot;corporal&quot;, &quot;corporal&quot;, &quot;corporal&quot;, &quot;corporal&quot;, &quot;corporal&quot;, &quot;corporal&quot;, &quot;corporations&quot;, &quot;corporations&quot;, &quot;corporations&quot;, &quot;corporations&quot;, &quot;corporations&quot;, &quot;corporations&quot;, &quot;corporations&quot;, &quot;corporations&quot;, &quot;corporations&quot;, &quot;corporations&quot;, &quot;corporations&quot;, &quot;corporations&quot;, &quot;correspondents&quot;, &quot;correspondents&quot;, &quot;cost&quot;, &quot;cost&quot;, &quot;cost&quot;, &quot;cost&quot;, &quot;cost&quot;, &quot;cost&quot;, &quot;cost&quot;, &quot;cost&quot;, &quot;cost&quot;, &quot;cost&quot;, &quot;cost&quot;, &quot;cost&quot;, &quot;cost&quot;, &quot;cost&quot;, &quot;cost&quot;, &quot;cost&quot;, &quot;cost&quot;, &quot;cost&quot;, &quot;cost&quot;, &quot;count&quot;, &quot;count&quot;, &quot;count&quot;, &quot;count&quot;, &quot;count&quot;, &quot;count&quot;, &quot;count&quot;, &quot;count&quot;, &quot;count&quot;, &quot;count&quot;, &quot;count&quot;, &quot;countries&quot;, &quot;countries&quot;, &quot;countries&quot;, &quot;countries&quot;, &quot;countries&quot;, &quot;countries&quot;, &quot;countries&quot;, &quot;countries&quot;, &quot;countries&quot;, &quot;countries&quot;, &quot;countries&quot;, &quot;countries&quot;, &quot;countries&quot;, &quot;countries&quot;, &quot;countries&quot;, &quot;countries&quot;, &quot;countries&quot;, &quot;countries&quot;, &quot;countries&quot;, &quot;country&quot;, &quot;country&quot;, &quot;country&quot;, &quot;country&quot;, &quot;country&quot;, &quot;country&quot;, &quot;country&quot;, &quot;country&quot;, &quot;country&quot;, &quot;country&quot;, &quot;country&quot;, &quot;country&quot;, &quot;country&quot;, &quot;country&quot;, &quot;country&quot;, &quot;country&quot;, &quot;country&quot;, &quot;country&quot;, &quot;country&quot;, &quot;country&quot;, &quot;countrymen&quot;, &quot;countrymen&quot;, &quot;countrymen&quot;, &quot;countrymen&quot;, &quot;countrymen&quot;, &quot;countrymen&quot;, &quot;countrymen&quot;, &quot;countrymen&quot;, &quot;countrymen&quot;, &quot;countrymen&quot;, &quot;countrymen&quot;, &quot;countrymen&quot;, &quot;countrymen&quot;, &quot;countrymen&quot;, &quot;countrymen&quot;, &quot;countrymen&quot;, &quot;courageously&quot;, &quot;courageously&quot;, &quot;courageously&quot;, &quot;courageously&quot;, &quot;courageously&quot;, &quot;courageously&quot;, &quot;course&quot;, &quot;course&quot;, &quot;course&quot;, &quot;course&quot;, &quot;course&quot;, &quot;course&quot;, &quot;course&quot;, &quot;course&quot;, &quot;course&quot;, &quot;course&quot;, &quot;course&quot;, &quot;course&quot;, &quot;course&quot;, &quot;course&quot;, &quot;course&quot;, &quot;course&quot;, &quot;course&quot;, &quot;course&quot;, &quot;course&quot;, &quot;court&quot;, &quot;court&quot;, &quot;court&quot;, &quot;court&quot;, &quot;court&quot;, &quot;court&quot;, &quot;court&quot;, &quot;court&quot;, &quot;court&quot;, &quot;court&quot;, &quot;court&quot;, &quot;court&quot;, &quot;court&quot;, &quot;court&quot;, &quot;court&quot;, &quot;court&quot;, &quot;court&quot;, &quot;court&quot;, &quot;court&quot;, &quot;courts&quot;, &quot;courts&quot;, &quot;courts&quot;, &quot;courts&quot;, &quot;courts&quot;, &quot;courts&quot;, &quot;courts&quot;, &quot;courts&quot;, &quot;courts&quot;, &quot;courts&quot;, &quot;courts&quot;, &quot;courts&quot;, &quot;courts&quot;, &quot;courts&quot;, &quot;courts&quot;, &quot;courts&quot;, &quot;courts&quot;, &quot;courts&quot;, &quot;courts&quot;, &quot;coverage&quot;, &quot;coverage&quot;, &quot;coverage&quot;, &quot;coverage&quot;, &quot;coverup&quot;, &quot;create&quot;, &quot;create&quot;, &quot;create&quot;, &quot;create&quot;, &quot;create&quot;, &quot;create&quot;, &quot;create&quot;, &quot;create&quot;, &quot;create&quot;, &quot;create&quot;, &quot;create&quot;, &quot;create&quot;, &quot;create&quot;, &quot;create&quot;, &quot;create&quot;, &quot;create&quot;, &quot;create&quot;, &quot;create&quot;, &quot;creativity&quot;, &quot;creativity&quot;, &quot;creatures&quot;, &quot;creatures&quot;, &quot;creatures&quot;, &quot;credentials&quot;, &quot;credentials&quot;, &quot;credentials&quot;, &quot;credentials&quot;, &quot;credentials&quot;, &quot;credit&quot;, &quot;credit&quot;, &quot;credit&quot;, &quot;credit&quot;, &quot;credit&quot;, &quot;credit&quot;, &quot;credit&quot;, &quot;credit&quot;, &quot;credit&quot;, &quot;credit&quot;, &quot;credit&quot;, &quot;credit&quot;, &quot;credit&quot;, &quot;credit&quot;, &quot;credit&quot;, &quot;credit&quot;, &quot;credit&quot;, &quot;credit&quot;, &quot;crew&quot;, &quot;crew&quot;, &quot;crew&quot;, &quot;crew&quot;, &quot;crew&quot;, &quot;crew&quot;, &quot;crew&quot;, &quot;crew&quot;, &quot;crew&quot;, &quot;crew&quot;, &quot;crew&quot;, &quot;crew&quot;, &quot;crimea&quot;, &quot;crippling&quot;, &quot;crippling&quot;, &quot;crippling&quot;, &quot;crippling&quot;, &quot;crippling&quot;, &quot;critical&quot;, &quot;critical&quot;, &quot;critical&quot;, &quot;critical&quot;, &quot;critical&quot;, &quot;critical&quot;, &quot;critical&quot;, &quot;critical&quot;, &quot;critical&quot;, &quot;critical&quot;, &quot;critical&quot;, &quot;critical&quot;, &quot;critical&quot;, &quot;croix&quot;, &quot;croix&quot;, &quot;cruz&quot;, &quot;cruz&quot;, &quot;culebra&quot;, &quot;culebra&quot;, &quot;cultivate&quot;, &quot;cultivate&quot;, &quot;cultivate&quot;, &quot;cultivate&quot;, &quot;cultivate&quot;, &quot;culture&quot;, &quot;culture&quot;, &quot;culture&quot;, &quot;culture&quot;, &quot;culture&quot;, &quot;culture&quot;, &quot;culture&quot;, &quot;culture&quot;, &quot;culture&quot;, &quot;currency&quot;, &quot;currency&quot;, &quot;currency&quot;, &quot;currency&quot;, &quot;currency&quot;, &quot;currency&quot;, &quot;currency&quot;, &quot;currency&quot;, &quot;currency&quot;, &quot;currency&quot;, &quot;currency&quot;, &quot;currency&quot;, &quot;currency&quot;, &quot;currency&quot;, &quot;currency&quot;, &quot;currency&quot;, &quot;cut&quot;, &quot;cut&quot;, &quot;cut&quot;, &quot;cut&quot;, &quot;cut&quot;, &quot;cut&quot;, &quot;cut&quot;, &quot;cut&quot;, &quot;cut&quot;, &quot;cut&quot;, &quot;cut&quot;, &quot;cut&quot;, &quot;cut&quot;, &quot;cut&quot;, &quot;cut&quot;, &quot;cut&quot;, &quot;cut&quot;, &quot;cuts&quot;, &quot;cuts&quot;, &quot;cuts&quot;, &quot;cuts&quot;, &quot;cuts&quot;, &quot;cuts&quot;, &quot;cuts&quot;, &quot;cuts&quot;, &quot;cutting&quot;, &quot;cutting&quot;, &quot;cutting&quot;, &quot;cutting&quot;, &quot;cutting&quot;, &quot;cutting&quot;, &quot;cutting&quot;, &quot;cutting&quot;, &quot;cutting&quot;, &quot;czechoslovakia&quot;, &quot;czechoslovakia&quot;, &quot;czechoslovakia&quot;, &quot;czechoslovakia&quot;, &quot;damage&quot;, &quot;damage&quot;, &quot;damage&quot;, &quot;damage&quot;, &quot;damage&quot;, &quot;damage&quot;, &quot;damage&quot;, &quot;damage&quot;, &quot;damage&quot;, &quot;damage&quot;, &quot;damage&quot;, &quot;damage&quot;, &quot;damage&quot;, &quot;dams&quot;, &quot;dams&quot;, &quot;dams&quot;, &quot;dams&quot;, &quot;dangerous&quot;, &quot;dangerous&quot;, &quot;dangerous&quot;, &quot;dangerous&quot;, &quot;dangerous&quot;, &quot;dangerous&quot;, &quot;dangerous&quot;, &quot;dangerous&quot;, &quot;dangerous&quot;, &quot;dangerous&quot;, &quot;dangerous&quot;, &quot;dangerous&quot;, &quot;dangerous&quot;, &quot;dangerous&quot;, &quot;dangerous&quot;, &quot;dangerous&quot;, &quot;daughters&quot;, &quot;daughters&quot;, &quot;daughters&quot;, &quot;daughters&quot;, &quot;daughters&quot;, &quot;david&quot;, &quot;david&quot;, &quot;david&quot;, &quot;david&quot;, &quot;david&quot;, &quot;david&quot;, &quot;david&quot;, &quot;david&quot;, &quot;day&quot;, &quot;day&quot;, &quot;day&quot;, &quot;day&quot;, &quot;day&quot;, &quot;day&quot;, &quot;day&quot;, &quot;day&quot;, &quot;day&quot;, &quot;day&quot;, &quot;day&quot;, &quot;day&quot;, &quot;day&quot;, &quot;day&quot;, &quot;day&quot;, &quot;day&quot;, &quot;day&quot;, &quot;day&quot;, &quot;day&quot;, &quot;dc&quot;, &quot;dead&quot;, &quot;dead&quot;, &quot;dead&quot;, &quot;dead&quot;, &quot;dead&quot;, &quot;dead&quot;, &quot;dead&quot;, &quot;dead&quot;, &quot;dead&quot;, &quot;dead&quot;, &quot;dead&quot;, &quot;dead&quot;, &quot;dead&quot;, &quot;deadline&quot;, &quot;deadline&quot;, &quot;deadline&quot;, &quot;deadline&quot;, &quot;dealers&quot;, &quot;dealers&quot;, &quot;dealers&quot;, &quot;dealers&quot;, &quot;dearest&quot;, &quot;dearest&quot;, &quot;dearest&quot;, &quot;dearest&quot;, &quot;dearest&quot;, &quot;deaths&quot;, &quot;deaths&quot;, &quot;deaths&quot;, &quot;deaths&quot;, &quot;deaths&quot;, &quot;deaths&quot;, &quot;debates&quot;, &quot;debates&quot;, &quot;debates&quot;, &quot;debates&quot;, &quot;debates&quot;, &quot;debates&quot;, &quot;debates&quot;, &quot;debates&quot;, &quot;debates&quot;, &quot;debtor&quot;, &quot;debtor&quot;, &quot;debtor&quot;, &quot;debtor&quot;, &quot;debtor&quot;, &quot;debtor&quot;, &quot;deck&quot;, &quot;deck&quot;, &quot;deck&quot;, &quot;deck&quot;, &quot;declined&quot;, &quot;declined&quot;, &quot;declined&quot;, &quot;declined&quot;, &quot;declined&quot;, &quot;declined&quot;, &quot;declined&quot;, &quot;declined&quot;, &quot;declined&quot;, &quot;declined&quot;, &quot;declined&quot;, &quot;decreased&quot;, &quot;decreased&quot;, &quot;decreased&quot;, &quot;decreased&quot;, &quot;decreased&quot;, &quot;decreased&quot;, &quot;decreased&quot;, &quot;decreased&quot;, &quot;decreased&quot;, &quot;decreased&quot;, &quot;decreased&quot;, &quot;decreases&quot;, &quot;decreases&quot;, &quot;decreases&quot;, &quot;decreases&quot;, &quot;deeds&quot;, &quot;deeds&quot;, &quot;deeds&quot;, &quot;deeds&quot;, &quot;deeds&quot;, &quot;deeds&quot;, &quot;deeds&quot;, &quot;deeds&quot;, &quot;deeds&quot;, &quot;deeds&quot;, &quot;deeds&quot;, &quot;deeds&quot;, &quot;deepening&quot;, &quot;deepening&quot;, &quot;deepening&quot;, &quot;deepening&quot;, &quot;deepest&quot;, &quot;deepest&quot;, &quot;deepest&quot;, &quot;deepest&quot;, &quot;deepest&quot;, &quot;deepest&quot;, &quot;deepest&quot;, &quot;deepest&quot;, &quot;deepest&quot;, &quot;deepest&quot;, &quot;deepest&quot;, &quot;defendant&quot;, &quot;defendant&quot;, &quot;defendant&quot;, &quot;defendant&quot;, &quot;defending&quot;, &quot;defending&quot;, &quot;defending&quot;, &quot;defending&quot;, &quot;defending&quot;, &quot;defending&quot;, &quot;defending&quot;, &quot;defending&quot;, &quot;defending&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defense&quot;, &quot;defensible&quot;, &quot;defensible&quot;, &quot;defensible&quot;, &quot;defensible&quot;, &quot;defensible&quot;, &quot;defensible&quot;, &quot;deferral&quot;, &quot;deficiencies&quot;, &quot;deficiencies&quot;, &quot;defined&quot;, &quot;defined&quot;, &quot;defined&quot;, &quot;defined&quot;, &quot;defined&quot;, &quot;defined&quot;, &quot;defined&quot;, &quot;defined&quot;, &quot;defined&quot;, &quot;defined&quot;, &quot;defined&quot;, &quot;defined&quot;, &quot;defined&quot;, &quot;defined&quot;, &quot;defined&quot;, &quot;deflation&quot;, &quot;deflation&quot;, &quot;degeneration&quot;, &quot;degeneration&quot;, &quot;degrading&quot;, &quot;degrading&quot;, &quot;degrading&quot;, &quot;degrading&quot;, &quot;degrading&quot;, &quot;degrading&quot;, &quot;degrading&quot;, &quot;delegate&quot;, &quot;delegate&quot;, &quot;delegate&quot;, &quot;delegate&quot;, &quot;delegate&quot;, &quot;delegate&quot;, &quot;delegate&quot;, &quot;delegate&quot;, &quot;delegate&quot;, &quot;delegate&quot;, &quot;delegate&quot;, &quot;delegate&quot;, &quot;delegation&quot;, &quot;delegation&quot;, &quot;delegation&quot;, &quot;delegation&quot;, &quot;delegation&quot;, &quot;delegation&quot;, &quot;delegation&quot;, &quot;delegation&quot;, &quot;delegation&quot;, &quot;delegation&quot;, &quot;delegation&quot;, &quot;deliberation&quot;, &quot;deliberation&quot;, &quot;deliberation&quot;, &quot;deliberation&quot;, &quot;deliberation&quot;, &quot;deliberation&quot;, &quot;deliberation&quot;, &quot;demanded&quot;, &quot;demanded&quot;, &quot;demanded&quot;, &quot;demanded&quot;, &quot;demanded&quot;, &quot;demanded&quot;, &quot;demanded&quot;, &quot;demanded&quot;, &quot;demanded&quot;, &quot;demanded&quot;, &quot;demanded&quot;, &quot;demanded&quot;, &quot;demanded&quot;, &quot;demanded&quot;, &quot;democracy&quot;, &quot;democracy&quot;, &quot;democracy&quot;, &quot;democracy&quot;, &quot;democracy&quot;, &quot;democracy&quot;, &quot;democracy&quot;, &quot;democracy&quot;, &quot;democracy&quot;, &quot;democracy&quot;, &quot;democracy&quot;, &quot;democracy&quot;, &quot;democracy&quot;, &quot;democracy&quot;, &quot;democracy&quot;, &quot;democrat&quot;, &quot;democrat&quot;, &quot;democrat&quot;, &quot;democrat&quot;, &quot;democrat&quot;, &quot;demonstrated&quot;, &quot;demonstrated&quot;, &quot;demonstrated&quot;, &quot;demonstrated&quot;, &quot;demonstrated&quot;, &quot;demonstrated&quot;, &quot;demonstrated&quot;, &quot;demonstrated&quot;, &quot;demonstrated&quot;, &quot;demonstrated&quot;, &quot;demonstrated&quot;, &quot;demonstrated&quot;, &quot;demonstrated&quot;, &quot;demonstrated&quot;, &quot;demoralizing&quot;, &quot;demoralizing&quot;, &quot;demoralizing&quot;, &quot;demoralizing&quot;, &quot;demoralizing&quot;, &quot;demoralizing&quot;, &quot;denounced&quot;, &quot;denounced&quot;, &quot;denounced&quot;, &quot;denounced&quot;, &quot;denounced&quot;, &quot;denounced&quot;, &quot;denounced&quot;, &quot;denounced&quot;, &quot;denounced&quot;, &quot;department&quot;, &quot;department&quot;, &quot;department&quot;, &quot;department&quot;, &quot;department&quot;, &quot;department&quot;, &quot;department&quot;, &quot;department&quot;, &quot;department&quot;, &quot;department&quot;, &quot;department&quot;, &quot;department&quot;, &quot;department&quot;, &quot;department&quot;, &quot;department&quot;, &quot;department&quot;, &quot;department&quot;, &quot;department&quot;, &quot;department&quot;, &quot;departmental&quot;, &quot;departmental&quot;, &quot;departmental&quot;, &quot;departmental&quot;, &quot;depend&quot;, &quot;depend&quot;, &quot;depend&quot;, &quot;depend&quot;, &quot;depend&quot;, &quot;depend&quot;, &quot;depend&quot;, &quot;depend&quot;, &quot;depend&quot;, &quot;depend&quot;, &quot;depend&quot;, &quot;depend&quot;, &quot;depend&quot;, &quot;depend&quot;, &quot;depend&quot;, &quot;depend&quot;, &quot;depend&quot;, &quot;dependence&quot;, &quot;dependence&quot;, &quot;dependence&quot;, &quot;dependence&quot;, &quot;dependence&quot;, &quot;dependence&quot;, &quot;dependence&quot;, &quot;dependence&quot;, &quot;dependence&quot;, &quot;dependence&quot;, &quot;depends&quot;, &quot;depends&quot;, &quot;depends&quot;, &quot;depends&quot;, &quot;depends&quot;, &quot;depends&quot;, &quot;depends&quot;, &quot;depends&quot;, &quot;depends&quot;, &quot;depends&quot;, &quot;depends&quot;, &quot;depends&quot;, &quot;depends&quot;, &quot;depends&quot;, &quot;depends&quot;, &quot;depends&quot;, &quot;depends&quot;, &quot;deplore&quot;, &quot;deplore&quot;, &quot;deplore&quot;, &quot;deplore&quot;, &quot;deplore&quot;, &quot;deplore&quot;, &quot;deplore&quot;, &quot;deplore&quot;, &quot;deployment&quot;, &quot;deployment&quot;, &quot;deployment&quot;, &quot;depreciation&quot;, &quot;depreciation&quot;, &quot;depreciation&quot;, &quot;depreciation&quot;, &quot;depreciation&quot;, &quot;depreciation&quot;, &quot;depreciation&quot;, &quot;depression&quot;, &quot;depression&quot;, &quot;depression&quot;, &quot;depression&quot;, &quot;depression&quot;, &quot;depression&quot;, &quot;depression&quot;, &quot;depression&quot;, &quot;depression&quot;, &quot;depression&quot;, &quot;depression&quot;, &quot;depressions&quot;, &quot;depressions&quot;, &quot;deprivation&quot;, &quot;deprivation&quot;, &quot;deprivation&quot;, &quot;deprivation&quot;, &quot;deprivation&quot;, &quot;deprivation&quot;, &quot;deprivation&quot;, &quot;deputy&quot;, &quot;deputy&quot;, &quot;deputy&quot;, &quot;deputy&quot;, &quot;deputy&quot;, &quot;deputy&quot;, &quot;derived&quot;, &quot;derived&quot;, &quot;derived&quot;, &quot;derived&quot;, &quot;derived&quot;, &quot;derived&quot;, &quot;derived&quot;, &quot;derived&quot;, &quot;derived&quot;, &quot;derived&quot;, &quot;derogation&quot;, &quot;derogation&quot;, &quot;derogation&quot;, &quot;deserves&quot;, &quot;deserves&quot;, &quot;deserves&quot;, &quot;deserves&quot;, &quot;deserves&quot;, &quot;deserves&quot;, &quot;deserves&quot;, &quot;deserves&quot;, &quot;deserves&quot;, &quot;deserves&quot;, &quot;deserves&quot;, &quot;deserves&quot;, &quot;deserves&quot;, &quot;deserves&quot;, &quot;designed&quot;, &quot;designed&quot;, &quot;designed&quot;, &quot;designed&quot;, &quot;designed&quot;, &quot;designed&quot;, &quot;designed&quot;, &quot;designed&quot;, &quot;designed&quot;, &quot;designed&quot;, &quot;designed&quot;, &quot;designed&quot;, &quot;designed&quot;, &quot;designed&quot;, &quot;designs&quot;, &quot;designs&quot;, &quot;designs&quot;, &quot;designs&quot;, &quot;designs&quot;, &quot;designs&quot;, &quot;designs&quot;, &quot;designs&quot;, &quot;designs&quot;, &quot;designs&quot;, &quot;destroyed&quot;, &quot;destroyed&quot;, &quot;destroyed&quot;, &quot;destroyed&quot;, &quot;destroyed&quot;, &quot;destroyed&quot;, &quot;destroyed&quot;, &quot;destroyed&quot;, &quot;destroyed&quot;, &quot;destroyed&quot;, &quot;destroyed&quot;, &quot;destroyed&quot;, &quot;destroyed&quot;, &quot;destroyer&quot;, &quot;destroyer&quot;, &quot;destroyer&quot;, &quot;destroyer&quot;, &quot;destroyer&quot;, &quot;detained&quot;, &quot;detained&quot;, &quot;detained&quot;, &quot;detained&quot;, &quot;detained&quot;, &quot;detente&quot;, &quot;detente&quot;, &quot;detente&quot;, &quot;deter&quot;, &quot;deter&quot;, &quot;deter&quot;, &quot;deter&quot;, &quot;deter&quot;, &quot;deter&quot;, &quot;deter&quot;, &quot;deter&quot;, &quot;deter&quot;, &quot;deter&quot;, &quot;deterrence&quot;, &quot;deterrence&quot;, &quot;deterrence&quot;, &quot;deterrence&quot;, &quot;detroit&quot;, &quot;detroit&quot;, &quot;detroit&quot;, &quot;detroit&quot;, &quot;detroit&quot;, &quot;detroit&quot;, &quot;detroit&quot;, &quot;detroit&quot;, &quot;developments&quot;, &quot;developments&quot;, &quot;developments&quot;, &quot;developments&quot;, &quot;developments&quot;, &quot;developments&quot;, &quot;developments&quot;, &quot;developments&quot;, &quot;developments&quot;, &quot;developments&quot;, &quot;developments&quot;, &quot;developments&quot;, &quot;develops&quot;, &quot;develops&quot;, &quot;develops&quot;, &quot;develops&quot;, &quot;develops&quot;, &quot;device&quot;, &quot;device&quot;, &quot;device&quot;, &quot;device&quot;, &quot;device&quot;, &quot;device&quot;, &quot;device&quot;, &quot;device&quot;, &quot;device&quot;, &quot;device&quot;, &quot;devices&quot;, &quot;devices&quot;, &quot;devices&quot;, &quot;devices&quot;, &quot;devices&quot;, &quot;devices&quot;, &quot;devices&quot;, &quot;devices&quot;, &quot;devices&quot;, &quot;devolve&quot;, &quot;devolve&quot;, &quot;devolve&quot;, &quot;devolve&quot;, &quot;devolves&quot;, &quot;devolves&quot;, &quot;devolves&quot;, &quot;devolves&quot;, &quot;dialog&quot;, &quot;dialog&quot;, &quot;dialog&quot;, &quot;dialog&quot;, &quot;dictator&quot;, &quot;dictator&quot;, &quot;dictator&quot;, &quot;dictator&quot;, &quot;dictator&quot;, &quot;dictator&quot;, &quot;dictator&quot;, &quot;dictatorships&quot;, &quot;dictatorships&quot;, &quot;dictatorships&quot;, &quot;dictatorships&quot;, &quot;dictatorships&quot;, &quot;differing&quot;, &quot;differing&quot;, &quot;differing&quot;, &quot;differing&quot;, &quot;differing&quot;, &quot;differing&quot;, &quot;differing&quot;, &quot;differs&quot;, &quot;differs&quot;, &quot;differs&quot;, &quot;differs&quot;, &quot;differs&quot;, &quot;differs&quot;, &quot;differs&quot;, &quot;digested&quot;, &quot;digested&quot;, &quot;dime&quot;, &quot;dime&quot;, &quot;dingley&quot;, &quot;dingley&quot;, &quot;diplomatic&quot;, &quot;diplomatic&quot;, &quot;diplomatic&quot;, &quot;diplomatic&quot;, &quot;diplomatic&quot;, &quot;diplomatic&quot;, &quot;diplomatic&quot;, &quot;diplomatic&quot;, &quot;diplomatic&quot;, &quot;diplomatic&quot;, &quot;diplomatic&quot;, &quot;diplomatic&quot;, &quot;diplomatic&quot;, &quot;diplomatic&quot;, &quot;diplomatic&quot;, &quot;diplomatically&quot;, &quot;diplomatically&quot;, &quot;diplomatically&quot;, &quot;diplomatically&quot;, &quot;diplomatically&quot;, &quot;disabled&quot;, &quot;disabled&quot;, &quot;disabled&quot;, &quot;disabled&quot;, &quot;disabled&quot;, &quot;disabled&quot;, &quot;disabled&quot;, &quot;disabled&quot;, &quot;disadvantages&quot;, &quot;disadvantages&quot;, &quot;disadvantages&quot;, &quot;disadvantages&quot;, &quot;disarmament&quot;, &quot;disarmament&quot;, &quot;disarmament&quot;, &quot;disarmament&quot;, &quot;disarmament&quot;, &quot;disarmament&quot;, &quot;disarmament&quot;, &quot;disarmament&quot;, &quot;disaster&quot;, &quot;disaster&quot;, &quot;disaster&quot;, &quot;disaster&quot;, &quot;disaster&quot;, &quot;disaster&quot;, &quot;disaster&quot;, &quot;disaster&quot;, &quot;disaster&quot;, &quot;disaster&quot;, &quot;disaster&quot;, &quot;disbursement&quot;, &quot;disbursement&quot;, &quot;disbursement&quot;, &quot;discharges&quot;, &quot;discharges&quot;, &quot;discharges&quot;, &quot;discharges&quot;, &quot;discharges&quot;, &quot;discovered&quot;, &quot;discovered&quot;, &quot;discovered&quot;, &quot;discovered&quot;, &quot;discovered&quot;, &quot;discovered&quot;, &quot;discovered&quot;, &quot;discovered&quot;, &quot;discovered&quot;, &quot;discovered&quot;, &quot;discovered&quot;, &quot;discovered&quot;, &quot;discovered&quot;, &quot;discrimination&quot;, &quot;discrimination&quot;, &quot;discrimination&quot;, &quot;discrimination&quot;, &quot;discrimination&quot;, &quot;discrimination&quot;, &quot;discrimination&quot;, &quot;discrimination&quot;, &quot;discrimination&quot;, &quot;discrimination&quot;, &quot;discrimination&quot;, &quot;discrimination&quot;, &quot;discrimination&quot;, &quot;discrimination&quot;, &quot;discrimination&quot;, &quot;discussed&quot;, &quot;discussed&quot;, &quot;discussed&quot;, &quot;discussed&quot;, &quot;discussed&quot;, &quot;discussed&quot;, &quot;discussed&quot;, &quot;discussed&quot;, &quot;discussed&quot;, &quot;discussed&quot;, &quot;discussed&quot;, &quot;discussed&quot;, &quot;discussed&quot;, &quot;discussed&quot;, &quot;discussed&quot;, &quot;disinterested&quot;, &quot;disinterested&quot;, &quot;disinterested&quot;, &quot;disinterested&quot;, &quot;disinterested&quot;, &quot;disinterested&quot;, &quot;disinterested&quot;, &quot;disorder&quot;, &quot;disorder&quot;, &quot;disorder&quot;, &quot;disorder&quot;, &quot;disorder&quot;, &quot;disorder&quot;, &quot;disorder&quot;, &quot;disorder&quot;, &quot;disorder&quot;, &quot;disorder&quot;, &quot;disorder&quot;, &quot;disorder&quot;, &quot;disorder&quot;, &quot;disorder&quot;, &quot;dispatched&quot;, &quot;dispatched&quot;, &quot;dispatched&quot;, &quot;dispatched&quot;, &quot;dispatched&quot;, &quot;dispatched&quot;, &quot;dispatched&quot;, &quot;disperse&quot;, &quot;disperse&quot;, &quot;disperse&quot;, &quot;disperse&quot;, &quot;disposing&quot;, &quot;disposing&quot;, &quot;disposing&quot;, &quot;disposing&quot;, &quot;disposing&quot;, &quot;disposing&quot;, &quot;disqualified&quot;, &quot;disqualified&quot;, &quot;disqualified&quot;, &quot;disqualified&quot;, &quot;disqualified&quot;, &quot;disregarded&quot;, &quot;disregarded&quot;, &quot;disregarded&quot;, &quot;disregarded&quot;, &quot;disregarded&quot;, &quot;disregarded&quot;, &quot;disregarded&quot;, &quot;dissatisfied&quot;, &quot;dissatisfied&quot;, &quot;dissatisfied&quot;, &quot;dissatisfied&quot;, &quot;dissatisfied&quot;, &quot;dissension&quot;, &quot;dissension&quot;, &quot;dissension&quot;, &quot;dissension&quot;, &quot;dissension&quot;, &quot;dissension&quot;, &quot;dissension&quot;, &quot;dissenting&quot;, &quot;dissenting&quot;, &quot;dissenting&quot;, &quot;dissenting&quot;, &quot;dissenting&quot;, &quot;dissenting&quot;, &quot;dissolve&quot;, &quot;dissolve&quot;, &quot;dissolve&quot;, &quot;dissolve&quot;, &quot;dissolve&quot;, &quot;distress&quot;, &quot;distress&quot;, &quot;distress&quot;, &quot;distress&quot;, &quot;distress&quot;, &quot;distress&quot;, &quot;distress&quot;, &quot;distress&quot;, &quot;distress&quot;, &quot;distress&quot;, &quot;distress&quot;, &quot;distress&quot;, &quot;distressing&quot;, &quot;distressing&quot;, &quot;distressing&quot;, &quot;distressing&quot;, &quot;distressing&quot;, &quot;distressing&quot;, &quot;distressing&quot;, &quot;distressing&quot;, &quot;disturbances&quot;, &quot;disturbances&quot;, &quot;disturbances&quot;, &quot;disturbances&quot;, &quot;disturbances&quot;, &quot;disturbances&quot;, &quot;disturbances&quot;, &quot;disturbances&quot;, &quot;disturbances&quot;, &quot;disturbances&quot;, &quot;disunion&quot;, &quot;disunion&quot;, &quot;disunion&quot;, &quot;disunion&quot;, &quot;dividend&quot;, &quot;dividend&quot;, &quot;dividend&quot;, &quot;dividend&quot;, &quot;dividend&quot;, &quot;documents&quot;, &quot;documents&quot;, &quot;documents&quot;, &quot;documents&quot;, &quot;documents&quot;, &quot;documents&quot;, &quot;documents&quot;, &quot;documents&quot;, &quot;documents&quot;, &quot;documents&quot;, &quot;documents&quot;, &quot;documents&quot;, &quot;documents&quot;, &quot;documents&quot;, &quot;dole&quot;, &quot;dole&quot;, &quot;dole&quot;, &quot;dole&quot;, &quot;dominate&quot;, &quot;dominate&quot;, &quot;dominate&quot;, &quot;dominate&quot;, &quot;dominate&quot;, &quot;dominated&quot;, &quot;dominated&quot;, &quot;dominated&quot;, &quot;dominated&quot;, &quot;dominated&quot;, &quot;dominated&quot;, &quot;dominated&quot;, &quot;dominican&quot;, &quot;dominican&quot;, &quot;dominican&quot;, &quot;dominican&quot;, &quot;dominican&quot;, &quot;dominican&quot;, &quot;dominican&quot;, &quot;dominican&quot;, &quot;dominican&quot;, &quot;dominions&quot;, &quot;dominions&quot;, &quot;dominions&quot;, &quot;dominions&quot;, &quot;doubts&quot;, &quot;doubts&quot;, &quot;doubts&quot;, &quot;doubts&quot;, &quot;doubts&quot;, &quot;doubts&quot;, &quot;doubts&quot;, &quot;doubts&quot;, &quot;doubts&quot;, &quot;doubts&quot;, &quot;doubts&quot;, &quot;doubts&quot;, &quot;douglas&quot;, &quot;douglas&quot;, &quot;douglas&quot;, &quot;douglas&quot;, &quot;douglas&quot;, &quot;downward&quot;, &quot;downward&quot;, &quot;downward&quot;, &quot;downward&quot;, &quot;downward&quot;, &quot;downward&quot;, &quot;drawing&quot;, &quot;drawing&quot;, &quot;drawing&quot;, &quot;drawing&quot;, &quot;drawing&quot;, &quot;drawing&quot;, &quot;drawing&quot;, &quot;drawing&quot;, &quot;drawing&quot;, &quot;drawing&quot;, &quot;drawing&quot;, &quot;dreadful&quot;, &quot;dreadful&quot;, &quot;dreadful&quot;, &quot;dreadful&quot;, &quot;dreadful&quot;, &quot;dreadful&quot;, &quot;dreadful&quot;, &quot;dreamed&quot;, &quot;dreamed&quot;, &quot;dreamed&quot;, &quot;dred&quot;, &quot;drives&quot;, &quot;drives&quot;, &quot;drop&quot;, &quot;drop&quot;, &quot;drop&quot;, &quot;drop&quot;, &quot;drop&quot;, &quot;drop&quot;, &quot;drop&quot;, &quot;drop&quot;, &quot;drop&quot;, &quot;drop&quot;, &quot;drop&quot;, &quot;drought&quot;, &quot;drought&quot;, &quot;drought&quot;, &quot;drought&quot;, &quot;drought&quot;, &quot;drought&quot;, &quot;drought&quot;, &quot;drought&quot;, &quot;drought&quot;, &quot;drug&quot;, &quot;drug&quot;, &quot;drug&quot;, &quot;drug&quot;, &quot;drug&quot;, &quot;drugs&quot;, &quot;drugs&quot;, &quot;drugs&quot;, &quot;drugs&quot;, &quot;drugs&quot;, &quot;drugs&quot;, &quot;drugs&quot;, &quot;drugs&quot;, &quot;drummond&quot;, &quot;dukakis&quot;, &quot;dutch&quot;, &quot;dutch&quot;, &quot;dutch&quot;, &quot;dutch&quot;, &quot;dutch&quot;, &quot;dutiable&quot;, &quot;dutiable&quot;, &quot;dutiable&quot;, &quot;dutiable&quot;, &quot;dutiable&quot;, &quot;duties&quot;, &quot;duties&quot;, &quot;duties&quot;, &quot;duties&quot;, &quot;duties&quot;, &quot;duties&quot;, &quot;duties&quot;, &quot;duties&quot;, &quot;duties&quot;, &quot;duties&quot;, &quot;duties&quot;, &quot;duties&quot;, &quot;duties&quot;, &quot;duties&quot;, &quot;duties&quot;, &quot;duties&quot;, &quot;duties&quot;, &quot;duties&quot;, &quot;duties&quot;, &quot;duty&quot;, &quot;duty&quot;, &quot;duty&quot;, &quot;duty&quot;, &quot;duty&quot;, &quot;duty&quot;, &quot;duty&quot;, &quot;duty&quot;, &quot;duty&quot;, &quot;duty&quot;, &quot;duty&quot;, &quot;duty&quot;, &quot;duty&quot;, &quot;duty&quot;, &quot;duty&quot;, &quot;duty&quot;, &quot;duty&quot;, &quot;duty&quot;, &quot;duty&quot;, &quot;dwell&quot;, &quot;dwell&quot;, &quot;dwell&quot;, &quot;dwell&quot;, &quot;dwell&quot;, &quot;dwell&quot;, &quot;dwell&quot;, &quot;dynamic&quot;, &quot;dynamic&quot;, &quot;dynamic&quot;, &quot;dynamic&quot;, &quot;dynamic&quot;, &quot;ease&quot;, &quot;ease&quot;, &quot;ease&quot;, &quot;ease&quot;, &quot;ease&quot;, &quot;ease&quot;, &quot;ease&quot;, &quot;ease&quot;, &quot;ease&quot;, &quot;easing&quot;, &quot;easing&quot;, &quot;easing&quot;, &quot;easing&quot;, &quot;east&quot;, &quot;east&quot;, &quot;east&quot;, &quot;east&quot;, &quot;east&quot;, &quot;east&quot;, &quot;east&quot;, &quot;east&quot;, &quot;east&quot;, &quot;east&quot;, &quot;east&quot;, &quot;east&quot;, &quot;east&quot;, &quot;east&quot;, &quot;east&quot;, &quot;east&quot;, &quot;east&quot;, &quot;east&quot;, &quot;east&quot;, &quot;eastern&quot;, &quot;eastern&quot;, &quot;eastern&quot;, &quot;eastern&quot;, &quot;eastern&quot;, &quot;eastern&quot;, &quot;eastern&quot;, &quot;eastern&quot;, &quot;eastern&quot;, &quot;eastern&quot;, &quot;eastern&quot;, &quot;eastern&quot;, &quot;eastern&quot;, &quot;economic&quot;, &quot;economic&quot;, &quot;economic&quot;, &quot;economic&quot;, &quot;economic&quot;, &quot;economic&quot;, &quot;economic&quot;, &quot;economic&quot;, &quot;economic&quot;, &quot;economic&quot;, &quot;economic&quot;, &quot;economic&quot;, &quot;economic&quot;, &quot;economic&quot;, &quot;economic&quot;, &quot;economic&quot;, &quot;economic&quot;, &quot;economic&quot;, &quot;economic&quot;, &quot;economies&quot;, &quot;economies&quot;, &quot;economies&quot;, &quot;economies&quot;, &quot;economies&quot;, &quot;economies&quot;, &quot;economies&quot;, &quot;economies&quot;, &quot;economies&quot;, &quot;economy&quot;, &quot;economy&quot;, &quot;economy&quot;, &quot;economy&quot;, &quot;economy&quot;, &quot;economy&quot;, &quot;economy&quot;, &quot;economy&quot;, &quot;economy&quot;, &quot;economy&quot;, &quot;economy&quot;, &quot;economy&quot;, &quot;economy&quot;, &quot;economy&quot;, &quot;economy&quot;, &quot;economy&quot;, &quot;economy&quot;, &quot;economy&quot;, &quot;economy&quot;, &quot;educated&quot;, &quot;educated&quot;, &quot;educated&quot;, &quot;educated&quot;, &quot;educated&quot;, &quot;educated&quot;, &quot;educated&quot;, &quot;educated&quot;, &quot;educated&quot;, &quot;educators&quot;, &quot;educators&quot;, &quot;educators&quot;, &quot;educators&quot;, &quot;educators&quot;, &quot;educators&quot;, &quot;edwards&quot;, &quot;edwards&quot;, &quot;effect&quot;, &quot;effect&quot;, &quot;effect&quot;, &quot;effect&quot;, &quot;effect&quot;, &quot;effect&quot;, &quot;effect&quot;, &quot;effect&quot;, &quot;effect&quot;, &quot;effect&quot;, &quot;effect&quot;, &quot;effect&quot;, &quot;effect&quot;, &quot;effect&quot;, &quot;effect&quot;, &quot;effect&quot;, &quot;effect&quot;, &quot;effect&quot;, &quot;effect&quot;, &quot;effectual&quot;, &quot;effectual&quot;, &quot;effectual&quot;, &quot;effectual&quot;, &quot;effectual&quot;, &quot;egan&quot;, &quot;egan&quot;, &quot;egypt&quot;, &quot;egypt&quot;, &quot;egypt&quot;, &quot;egypt&quot;, &quot;egypt&quot;, &quot;egypt&quot;, &quot;egypt&quot;, &quot;egypt&quot;, &quot;egypt&quot;, &quot;ehrlichman&quot;, &quot;ehrman&quot;, &quot;eisenhower&quot;, &quot;eisenhower&quot;, &quot;eisenhower&quot;, &quot;eisenhower&quot;, &quot;eisenhower&quot;, &quot;election&quot;, &quot;election&quot;, &quot;election&quot;, &quot;election&quot;, &quot;election&quot;, &quot;election&quot;, &quot;election&quot;, &quot;election&quot;, &quot;election&quot;, &quot;election&quot;, &quot;election&quot;, &quot;election&quot;, &quot;election&quot;, &quot;election&quot;, &quot;election&quot;, &quot;elections&quot;, &quot;elections&quot;, &quot;elections&quot;, &quot;elections&quot;, &quot;elections&quot;, &quot;elections&quot;, &quot;elections&quot;, &quot;elections&quot;, &quot;elections&quot;, &quot;elections&quot;, &quot;elections&quot;, &quot;elections&quot;, &quot;elections&quot;, &quot;elections&quot;, &quot;elections&quot;, &quot;elections&quot;, &quot;electoral&quot;, &quot;electoral&quot;, &quot;electoral&quot;, &quot;electoral&quot;, &quot;electoral&quot;, &quot;electric&quot;, &quot;electric&quot;, &quot;electric&quot;, &quot;electric&quot;, &quot;electric&quot;, &quot;electric&quot;, &quot;electric&quot;, &quot;electric&quot;, &quot;electrical&quot;, &quot;electrical&quot;, &quot;electrical&quot;, &quot;electrical&quot;, &quot;eligibles&quot;, &quot;eligibles&quot;, &quot;em&quot;, &quot;emancipation&quot;, &quot;emancipation&quot;, &quot;emancipation&quot;, &quot;emancipation&quot;, &quot;emancipation&quot;, &quot;emancipation&quot;, &quot;emancipation&quot;, &quot;emancipation&quot;, &quot;emancipation&quot;, &quot;embarrass&quot;, &quot;embarrass&quot;, &quot;embarrass&quot;, &quot;embarrass&quot;, &quot;embarrass&quot;, &quot;embarrassments&quot;, &quot;embarrassments&quot;, &quot;embarrassments&quot;, &quot;embassies&quot;, &quot;embassies&quot;, &quot;embassies&quot;, &quot;embassies&quot;, &quot;embassies&quot;, &quot;embodiment&quot;, &quot;embodiment&quot;, &quot;embodiment&quot;, &quot;embodiment&quot;, &quot;embodiment&quot;, &quot;emerged&quot;, &quot;emerged&quot;, &quot;emerged&quot;, &quot;emerged&quot;, &quot;emerged&quot;, &quot;emerged&quot;, &quot;emerged&quot;, &quot;emerged&quot;, &quot;emergence&quot;, &quot;emergence&quot;, &quot;emergence&quot;, &quot;eminence&quot;, &quot;eminence&quot;, &quot;eminence&quot;, &quot;eminence&quot;, &quot;eminence&quot;, &quot;emphasized&quot;, &quot;emphasized&quot;, &quot;emphasized&quot;, &quot;emphasized&quot;, &quot;emphasized&quot;, &quot;emphasized&quot;, &quot;emphasized&quot;, &quot;emphasized&quot;, &quot;emphasized&quot;, &quot;employees&quot;, &quot;employees&quot;, &quot;employees&quot;, &quot;employees&quot;, &quot;employees&quot;, &quot;employees&quot;, &quot;employees&quot;, &quot;employees&quot;, &quot;employees&quot;, &quot;employees&quot;, &quot;employees&quot;, &quot;employment&quot;, &quot;employment&quot;, &quot;employment&quot;, &quot;employment&quot;, &quot;employment&quot;, &quot;employment&quot;, &quot;employment&quot;, &quot;employment&quot;, &quot;employment&quot;, &quot;employment&quot;, &quot;employment&quot;, &quot;employment&quot;, &quot;employment&quot;, &quot;employment&quot;, &quot;employment&quot;, &quot;employment&quot;, &quot;employment&quot;, &quot;empowerment&quot;, &quot;enable&quot;, &quot;enable&quot;, &quot;enable&quot;, &quot;enable&quot;, &quot;enable&quot;, &quot;enable&quot;, &quot;enable&quot;, &quot;enable&quot;, &quot;enable&quot;, &quot;enable&quot;, &quot;enable&quot;, &quot;enable&quot;, &quot;enable&quot;, &quot;enable&quot;, &quot;enable&quot;, &quot;enable&quot;, &quot;enable&quot;, &quot;enacts&quot;, &quot;enacts&quot;, &quot;enacts&quot;, &quot;enacts&quot;, &quot;encroach&quot;, &quot;encroach&quot;, &quot;encroach&quot;, &quot;encroach&quot;, &quot;encroach&quot;, &quot;end&quot;, &quot;end&quot;, &quot;end&quot;, &quot;end&quot;, &quot;end&quot;, &quot;end&quot;, &quot;end&quot;, &quot;end&quot;, &quot;end&quot;, &quot;end&quot;, &quot;end&quot;, &quot;end&quot;, &quot;end&quot;, &quot;end&quot;, &quot;end&quot;, &quot;end&quot;, &quot;end&quot;, &quot;end&quot;, &quot;end&quot;, &quot;endanger&quot;, &quot;endanger&quot;, &quot;endanger&quot;, &quot;endanger&quot;, &quot;endanger&quot;, &quot;endanger&quot;, &quot;endanger&quot;, &quot;endanger&quot;, &quot;endorsed&quot;, &quot;endorsed&quot;, &quot;endorsed&quot;, &quot;endorsed&quot;, &quot;endorsed&quot;, &quot;endorsed&quot;, &quot;endorsed&quot;, &quot;ends&quot;, &quot;ends&quot;, &quot;ends&quot;, &quot;ends&quot;, &quot;ends&quot;, &quot;ends&quot;, &quot;ends&quot;, &quot;ends&quot;, &quot;ends&quot;, &quot;ends&quot;, &quot;ends&quot;, &quot;ends&quot;, &quot;ends&quot;, &quot;ends&quot;, &quot;endurance&quot;, &quot;endurance&quot;, &quot;endurance&quot;, &quot;endurance&quot;, &quot;endurance&quot;, &quot;endurance&quot;, &quot;endurance&quot;, &quot;enemy&quot;, &quot;enemy&quot;, &quot;enemy&quot;, &quot;enemy&quot;, &quot;enemy&quot;, &quot;enemy&quot;, &quot;enemy&quot;, &quot;enemy&quot;, &quot;enemy&quot;, &quot;enemy&quot;, &quot;enemy&quot;, &quot;enemy&quot;, &quot;enemy&quot;, &quot;energy&quot;, &quot;energy&quot;, &quot;energy&quot;, &quot;energy&quot;, &quot;energy&quot;, &quot;energy&quot;, &quot;energy&quot;, &quot;energy&quot;, &quot;energy&quot;, &quot;energy&quot;, &quot;energy&quot;, &quot;energy&quot;, &quot;energy&quot;, &quot;energy&quot;, &quot;energy&quot;, &quot;energy&quot;, &quot;energy&quot;, &quot;energy&quot;, &quot;energy&quot;, &quot;engaged&quot;, &quot;engaged&quot;, &quot;engaged&quot;, &quot;engaged&quot;, &quot;engaged&quot;, &quot;engaged&quot;, &quot;engaged&quot;, &quot;engaged&quot;, &quot;engaged&quot;, &quot;engaged&quot;, &quot;engaged&quot;, &quot;engaged&quot;, &quot;engaged&quot;, &quot;engaged&quot;, &quot;engaged&quot;, &quot;engaged&quot;, &quot;engaged&quot;, &quot;engagements&quot;, &quot;engagements&quot;, &quot;engagements&quot;, &quot;engagements&quot;, &quot;engagements&quot;, &quot;engineering&quot;, &quot;engineering&quot;, &quot;engineering&quot;, &quot;engineering&quot;, &quot;engineering&quot;, &quot;engineering&quot;, &quot;engineering&quot;, &quot;enhance&quot;, &quot;enhance&quot;, &quot;enhance&quot;, &quot;enhance&quot;, &quot;enhance&quot;, &quot;enhance&quot;, &quot;enhance&quot;, &quot;enhance&quot;, &quot;enjoin&quot;, &quot;enjoin&quot;, &quot;enjoin&quot;, &quot;enjoin&quot;, &quot;enshrined&quot;, &quot;enshrined&quot;, &quot;enshrined&quot;, &quot;enshrined&quot;, &quot;enshrined&quot;, &quot;entries&quot;, &quot;environmental&quot;, &quot;equal&quot;, &quot;equal&quot;, &quot;equal&quot;, &quot;equal&quot;, &quot;equal&quot;, &quot;equal&quot;, &quot;equal&quot;, &quot;equal&quot;, &quot;equal&quot;, &quot;equal&quot;, &quot;equal&quot;, &quot;equal&quot;, &quot;equal&quot;, &quot;equal&quot;, &quot;equal&quot;, &quot;equal&quot;, &quot;equal&quot;, &quot;equal&quot;, &quot;erected&quot;, &quot;erected&quot;, &quot;erected&quot;, &quot;erected&quot;, &quot;erected&quot;, &quot;erected&quot;, &quot;erie&quot;, &quot;erie&quot;, &quot;erie&quot;, &quot;erie&quot;, &quot;escalate&quot;, &quot;escalate&quot;, &quot;escalate&quot;, &quot;escalate&quot;, &quot;estates&quot;, &quot;estates&quot;, &quot;estates&quot;, &quot;estates&quot;, &quot;esteem&quot;, &quot;esteem&quot;, &quot;esteem&quot;, &quot;esteem&quot;, &quot;esteem&quot;, &quot;estimates&quot;, &quot;estimates&quot;, &quot;estimates&quot;, &quot;estimates&quot;, &quot;estimates&quot;, &quot;estimates&quot;, &quot;estimates&quot;, &quot;estimates&quot;, &quot;estimates&quot;, &quot;estimates&quot;, &quot;europe&quot;, &quot;europe&quot;, &quot;europe&quot;, &quot;europe&quot;, &quot;europe&quot;, &quot;europe&quot;, &quot;europe&quot;, &quot;europe&quot;, &quot;europe&quot;, &quot;europe&quot;, &quot;europe&quot;, &quot;europe&quot;, &quot;europe&quot;, &quot;europe&quot;, &quot;europe&quot;, &quot;europe&quot;, &quot;europe&quot;, &quot;europe&quot;, &quot;europe&quot;, &quot;eve&quot;, &quot;eve&quot;, &quot;eve&quot;, &quot;eve&quot;, &quot;eve&quot;, &quot;eve&quot;, &quot;eventually&quot;, &quot;eventually&quot;, &quot;eventually&quot;, &quot;eventually&quot;, &quot;eventually&quot;, &quot;eventually&quot;, &quot;eventually&quot;, &quot;eventually&quot;, &quot;eventually&quot;, &quot;eventually&quot;, &quot;eventually&quot;, &quot;eventually&quot;, &quot;evident&quot;, &quot;evident&quot;, &quot;evident&quot;, &quot;evident&quot;, &quot;evident&quot;, &quot;evident&quot;, &quot;evident&quot;, &quot;evident&quot;, &quot;evident&quot;, &quot;evident&quot;, &quot;evident&quot;, &quot;evident&quot;, &quot;evident&quot;, &quot;evident&quot;, &quot;evident&quot;, &quot;evidently&quot;, &quot;evidently&quot;, &quot;evidently&quot;, &quot;evidently&quot;, &quot;evidently&quot;, &quot;evidently&quot;, &quot;evidently&quot;, &quot;exactions&quot;, &quot;exactions&quot;, &quot;exactions&quot;, &quot;exactions&quot;, &quot;exalted&quot;, &quot;exalted&quot;, &quot;exalted&quot;, &quot;exalted&quot;, &quot;exalted&quot;, &quot;examination&quot;, &quot;examination&quot;, &quot;examination&quot;, &quot;examination&quot;, &quot;examination&quot;, &quot;examination&quot;, &quot;examination&quot;, &quot;examination&quot;, &quot;examination&quot;, &quot;examination&quot;, &quot;examination&quot;, &quot;examination&quot;, &quot;examination&quot;, &quot;examination&quot;, &quot;examinations&quot;, &quot;examinations&quot;, &quot;examinations&quot;, &quot;examinations&quot;, &quot;examinations&quot;, &quot;examinations&quot;, &quot;examinations&quot;, &quot;examinations&quot;, &quot;examined&quot;, &quot;examined&quot;, &quot;examined&quot;, &quot;examined&quot;, &quot;examined&quot;, &quot;examined&quot;, &quot;examined&quot;, &quot;examined&quot;, &quot;examined&quot;, &quot;examined&quot;, &quot;examined&quot;, &quot;examiners&quot;, &quot;examiners&quot;, &quot;examiners&quot;, &quot;excellency&quot;, &quot;excellency&quot;, &quot;excellency&quot;, &quot;excellency&quot;, &quot;excellency&quot;, &quot;excellency&quot;, &quot;excellency&quot;, &quot;excellent&quot;, &quot;excellent&quot;, &quot;excellent&quot;, &quot;excellent&quot;, &quot;excellent&quot;, &quot;excellent&quot;, &quot;excellent&quot;, &quot;excellent&quot;, &quot;excellent&quot;, &quot;excellent&quot;, &quot;excellent&quot;, &quot;excellent&quot;, &quot;excepted&quot;, &quot;excepted&quot;, &quot;excepted&quot;, &quot;excepted&quot;, &quot;excepted&quot;, &quot;exceptional&quot;, &quot;exceptional&quot;, &quot;exceptional&quot;, &quot;exceptional&quot;, &quot;exceptional&quot;, &quot;exceptional&quot;, &quot;exceptional&quot;, &quot;exceptional&quot;, &quot;exceptional&quot;, &quot;executive&quot;, &quot;executive&quot;, &quot;executive&quot;, &quot;executive&quot;, &quot;executive&quot;, &quot;executive&quot;, &quot;executive&quot;, &quot;executive&quot;, &quot;executive&quot;, &quot;executive&quot;, &quot;executive&quot;, &quot;executive&quot;, &quot;executive&quot;, &quot;executive&quot;, &quot;executive&quot;, &quot;executive&quot;, &quot;executive&quot;, &quot;executive&quot;, &quot;executive&quot;, &quot;exertions&quot;, &quot;exertions&quot;, &quot;exertions&quot;, &quot;exertions&quot;, &quot;exhaust&quot;, &quot;exhaust&quot;, &quot;exhaust&quot;, &quot;exhaust&quot;, &quot;exhaust&quot;, &quot;exhaust&quot;, &quot;exhaust&quot;, &quot;exhibited&quot;, &quot;exhibited&quot;, &quot;exhibited&quot;, &quot;exhibited&quot;, &quot;exhibited&quot;, &quot;exhibition&quot;, &quot;exhibition&quot;, &quot;exhibition&quot;, &quot;exhibitions&quot;, &quot;exhibitions&quot;, &quot;exhibitors&quot;, &quot;exhort&quot;, &quot;exhort&quot;, &quot;expanse&quot;, &quot;expanse&quot;, &quot;expanse&quot;, &quot;expanse&quot;, &quot;expansions&quot;, &quot;expansions&quot;, &quot;expansions&quot;, &quot;expansions&quot;, &quot;expatriation&quot;, &quot;expatriation&quot;, &quot;expects&quot;, &quot;expects&quot;, &quot;expects&quot;, &quot;expects&quot;, &quot;expects&quot;, &quot;expects&quot;, &quot;expects&quot;, &quot;expedite&quot;, &quot;expedite&quot;, &quot;expedite&quot;, &quot;expedite&quot;, &quot;expedite&quot;, &quot;expedite&quot;, &quot;expedite&quot;, &quot;expedited&quot;, &quot;expedited&quot;, &quot;expedited&quot;, &quot;expedited&quot;, &quot;expedited&quot;, &quot;expeditious&quot;, &quot;expeditious&quot;, &quot;expeditious&quot;, &quot;expeditious&quot;, &quot;expeditious&quot;, &quot;expeditious&quot;, &quot;expeditious&quot;, &quot;experience&quot;, &quot;experience&quot;, &quot;experience&quot;, &quot;experience&quot;, &quot;experience&quot;, &quot;experience&quot;, &quot;experience&quot;, &quot;experience&quot;, &quot;experience&quot;, &quot;experience&quot;, &quot;experience&quot;, &quot;experience&quot;, &quot;experience&quot;, &quot;experience&quot;, &quot;experience&quot;, &quot;experience&quot;, &quot;experience&quot;, &quot;experience&quot;, &quot;experience&quot;, &quot;experiences&quot;, &quot;experiences&quot;, &quot;experiences&quot;, &quot;experiences&quot;, &quot;experiences&quot;, &quot;experiences&quot;, &quot;experiences&quot;, &quot;experiments&quot;, &quot;experiments&quot;, &quot;experiments&quot;, &quot;experiments&quot;, &quot;experiments&quot;, &quot;experiments&quot;, &quot;experiments&quot;, &quot;experiments&quot;, &quot;experiments&quot;, &quot;expired&quot;, &quot;expired&quot;, &quot;expired&quot;, &quot;expired&quot;, &quot;expires&quot;, &quot;expires&quot;, &quot;expires&quot;, &quot;expires&quot;, &quot;expires&quot;, &quot;expires&quot;, &quot;exploitation&quot;, &quot;exploitation&quot;, &quot;exploitation&quot;, &quot;exploitation&quot;, &quot;exploitation&quot;, &quot;explorations&quot;, &quot;explorations&quot;, &quot;explorations&quot;, &quot;explorations&quot;, &quot;explorations&quot;, &quot;explosions&quot;, &quot;explosions&quot;, &quot;explosions&quot;, &quot;exports&quot;, &quot;exports&quot;, &quot;exports&quot;, &quot;exports&quot;, &quot;exports&quot;, &quot;exports&quot;, &quot;exports&quot;, &quot;exports&quot;, &quot;exports&quot;, &quot;exports&quot;, &quot;exports&quot;, &quot;exports&quot;, &quot;exports&quot;, &quot;expressing&quot;, &quot;expressing&quot;, &quot;expressing&quot;, &quot;expressing&quot;, &quot;expressing&quot;, &quot;expressing&quot;, &quot;expressing&quot;, &quot;expressing&quot;, &quot;expressing&quot;, &quot;expressing&quot;, &quot;expressing&quot;, &quot;expressing&quot;, &quot;extensive&quot;, &quot;extensive&quot;, &quot;extensive&quot;, &quot;extensive&quot;, &quot;extensive&quot;, &quot;extensive&quot;, &quot;extensive&quot;, &quot;extensive&quot;, &quot;extensive&quot;, &quot;extensive&quot;, &quot;extensive&quot;, &quot;extensive&quot;, &quot;extensive&quot;, &quot;extensive&quot;, &quot;extensive&quot;, &quot;extensively&quot;, &quot;extensively&quot;, &quot;extensively&quot;, &quot;extensively&quot;, &quot;extensively&quot;, &quot;extensively&quot;, &quot;extensively&quot;, &quot;extensively&quot;, &quot;extent&quot;, &quot;extent&quot;, &quot;extent&quot;, &quot;extent&quot;, &quot;extent&quot;, &quot;extent&quot;, &quot;extent&quot;, &quot;extent&quot;, &quot;extent&quot;, &quot;extent&quot;, &quot;extent&quot;, &quot;extent&quot;, &quot;extent&quot;, &quot;extent&quot;, &quot;extent&quot;, &quot;extent&quot;, &quot;extent&quot;, &quot;extent&quot;, &quot;extent&quot;, &quot;extinguishment&quot;, &quot;extinguishment&quot;, &quot;extradition&quot;, &quot;extradition&quot;, &quot;extradition&quot;, &quot;fact&quot;, &quot;fact&quot;, &quot;fact&quot;, &quot;fact&quot;, &quot;fact&quot;, &quot;fact&quot;, &quot;fact&quot;, &quot;fact&quot;, &quot;fact&quot;, &quot;fact&quot;, &quot;fact&quot;, &quot;fact&quot;, &quot;fact&quot;, &quot;fact&quot;, &quot;fact&quot;, &quot;fact&quot;, &quot;fact&quot;, &quot;fact&quot;, &quot;fact&quot;, &quot;factors&quot;, &quot;factors&quot;, &quot;factors&quot;, &quot;factors&quot;, &quot;factors&quot;, &quot;factors&quot;, &quot;factors&quot;, &quot;factors&quot;, &quot;factors&quot;, &quot;factors&quot;, &quot;factors&quot;, &quot;failure&quot;, &quot;failure&quot;, &quot;failure&quot;, &quot;failure&quot;, &quot;failure&quot;, &quot;failure&quot;, &quot;failure&quot;, &quot;failure&quot;, &quot;failure&quot;, &quot;failure&quot;, &quot;failure&quot;, &quot;failure&quot;, &quot;failure&quot;, &quot;failure&quot;, &quot;failure&quot;, &quot;failure&quot;, &quot;failure&quot;, &quot;faith&quot;, &quot;faith&quot;, &quot;faith&quot;, &quot;faith&quot;, &quot;faith&quot;, &quot;faith&quot;, &quot;faith&quot;, &quot;faith&quot;, &quot;faith&quot;, &quot;faith&quot;, &quot;faith&quot;, &quot;faith&quot;, &quot;faith&quot;, &quot;faith&quot;, &quot;faith&quot;, &quot;faith&quot;, &quot;faith&quot;, &quot;faith&quot;, &quot;faith&quot;, &quot;fallout&quot;, &quot;fame&quot;, &quot;fame&quot;, &quot;fame&quot;, &quot;fame&quot;, &quot;fame&quot;, &quot;families&quot;, &quot;families&quot;, &quot;families&quot;, &quot;families&quot;, &quot;families&quot;, &quot;families&quot;, &quot;families&quot;, &quot;families&quot;, &quot;families&quot;, &quot;families&quot;, &quot;families&quot;, &quot;families&quot;, &quot;families&quot;, &quot;family&quot;, &quot;family&quot;, &quot;family&quot;, &quot;family&quot;, &quot;family&quot;, &quot;family&quot;, &quot;family&quot;, &quot;family&quot;, &quot;family&quot;, &quot;family&quot;, &quot;family&quot;, &quot;family&quot;, &quot;family&quot;, &quot;family&quot;, &quot;family&quot;, &quot;family&quot;, &quot;family&quot;, &quot;far&quot;, &quot;far&quot;, &quot;far&quot;, &quot;far&quot;, &quot;far&quot;, &quot;far&quot;, &quot;far&quot;, &quot;far&quot;, &quot;far&quot;, &quot;far&quot;, &quot;far&quot;, &quot;far&quot;, &quot;far&quot;, &quot;far&quot;, &quot;far&quot;, &quot;far&quot;, &quot;far&quot;, &quot;far&quot;, &quot;far&quot;, &quot;farm&quot;, &quot;farm&quot;, &quot;farm&quot;, &quot;farm&quot;, &quot;farm&quot;, &quot;farm&quot;, &quot;farm&quot;, &quot;farm&quot;, &quot;farm&quot;, &quot;farm&quot;, &quot;farm&quot;, &quot;farm&quot;, &quot;farm&quot;, &quot;farmer&quot;, &quot;farmer&quot;, &quot;farmer&quot;, &quot;farmer&quot;, &quot;farmer&quot;, &quot;farmer&quot;, &quot;farmer&quot;, &quot;farmer&quot;, &quot;farmer&quot;, &quot;farmer&quot;, &quot;farmer&quot;, &quot;farther&quot;, &quot;farther&quot;, &quot;farther&quot;, &quot;farther&quot;, &quot;farther&quot;, &quot;farther&quot;, &quot;farther&quot;, &quot;farther&quot;, &quot;farther&quot;, &quot;farthest&quot;, &quot;farthest&quot;, &quot;farthest&quot;, &quot;fatal&quot;, &quot;fatal&quot;, &quot;fatal&quot;, &quot;fatal&quot;, &quot;fatal&quot;, &quot;fatal&quot;, &quot;fatal&quot;, &quot;fatal&quot;, &quot;fatal&quot;, &quot;father&quot;, &quot;father&quot;, &quot;father&quot;, &quot;father&quot;, &quot;father&quot;, &quot;father&quot;, &quot;father&quot;, &quot;father&quot;, &quot;father&quot;, &quot;father&quot;, &quot;father&quot;, &quot;father&quot;, &quot;fathers&quot;, &quot;fathers&quot;, &quot;fathers&quot;, &quot;fathers&quot;, &quot;fathers&quot;, &quot;fathers&quot;, &quot;fathers&quot;, &quot;fathers&quot;, &quot;fathers&quot;, &quot;fathers&quot;, &quot;fathers&quot;, &quot;fathers&quot;, &quot;fathers&quot;, &quot;feared&quot;, &quot;feared&quot;, &quot;feared&quot;, &quot;feared&quot;, &quot;feared&quot;, &quot;feared&quot;, &quot;feared&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;federal&quot;, &quot;feeling&quot;, &quot;feeling&quot;, &quot;feeling&quot;, &quot;feeling&quot;, &quot;feeling&quot;, &quot;feeling&quot;, &quot;feeling&quot;, &quot;feeling&quot;, &quot;feeling&quot;, &quot;feeling&quot;, &quot;feeling&quot;, &quot;feeling&quot;, &quot;feeling&quot;, &quot;feeling&quot;, &quot;feeling&quot;, &quot;feeling&quot;, &quot;feeling&quot;, &quot;fellowship&quot;, &quot;fellowship&quot;, &quot;fellowship&quot;, &quot;fellowship&quot;, &quot;fellowship&quot;, &quot;fewer&quot;, &quot;fewer&quot;, &quot;fewer&quot;, &quot;fewer&quot;, &quot;fewer&quot;, &quot;fewer&quot;, &quot;fewer&quot;, &quot;fewer&quot;, &quot;fewer&quot;, &quot;fewer&quot;, &quot;fictitious&quot;, &quot;fictitious&quot;, &quot;fictitious&quot;, &quot;fictitious&quot;, &quot;fide&quot;, &quot;fide&quot;, &quot;fide&quot;, &quot;fide&quot;, &quot;fide&quot;, &quot;fide&quot;, &quot;fide&quot;, &quot;fighting&quot;, &quot;fighting&quot;, &quot;fighting&quot;, &quot;fighting&quot;, &quot;fighting&quot;, &quot;fighting&quot;, &quot;fighting&quot;, &quot;fighting&quot;, &quot;fighting&quot;, &quot;fighting&quot;, &quot;fighting&quot;, &quot;fighting&quot;, &quot;fighting&quot;, &quot;fighting&quot;, &quot;fighting&quot;, &quot;fighting&quot;, &quot;fighting&quot;, &quot;figure&quot;, &quot;figure&quot;, &quot;figure&quot;, &quot;figure&quot;, &quot;figure&quot;, &quot;figure&quot;, &quot;figure&quot;, &quot;figure&quot;, &quot;filipino&quot;, &quot;filipino&quot;, &quot;filipino&quot;, &quot;filipino&quot;, &quot;filipinos&quot;, &quot;filipinos&quot;, &quot;filipinos&quot;, &quot;filipinos&quot;, &quot;finest&quot;, &quot;finest&quot;, &quot;finest&quot;, &quot;finest&quot;, &quot;finest&quot;, &quot;finest&quot;, &quot;finest&quot;, &quot;finest&quot;, &quot;finest&quot;, &quot;finland&quot;, &quot;fired&quot;, &quot;fired&quot;, &quot;fired&quot;, &quot;fired&quot;, &quot;fired&quot;, &quot;fired&quot;, &quot;fired&quot;, &quot;fired&quot;, &quot;fired&quot;, &quot;fired&quot;, &quot;fired&quot;, &quot;firms&quot;, &quot;firms&quot;, &quot;firms&quot;, &quot;firms&quot;, &quot;firms&quot;, &quot;firms&quot;, &quot;fiscal&quot;, &quot;fiscal&quot;, &quot;fiscal&quot;, &quot;fiscal&quot;, &quot;fiscal&quot;, &quot;fiscal&quot;, &quot;fiscal&quot;, &quot;fiscal&quot;, &quot;fiscal&quot;, &quot;fiscal&quot;, &quot;fiscal&quot;, &quot;fiscal&quot;, &quot;fiscal&quot;, &quot;fiscal&quot;, &quot;fiscal&quot;, &quot;fiscal&quot;, &quot;fiscal&quot;, &quot;fiscal&quot;, &quot;fit&quot;, &quot;fit&quot;, &quot;fit&quot;, &quot;fit&quot;, &quot;fit&quot;, &quot;fit&quot;, &quot;fit&quot;, &quot;fit&quot;, &quot;fit&quot;, &quot;fit&quot;, &quot;fit&quot;, &quot;fit&quot;, &quot;fit&quot;, &quot;fit&quot;, &quot;fit&quot;, &quot;fitness&quot;, &quot;fitness&quot;, &quot;fitness&quot;, &quot;fitness&quot;, &quot;fitness&quot;, &quot;fitness&quot;, &quot;fitness&quot;, &quot;fitness&quot;, &quot;fitness&quot;, &quot;fix&quot;, &quot;fix&quot;, &quot;fix&quot;, &quot;fix&quot;, &quot;fix&quot;, &quot;fix&quot;, &quot;fix&quot;, &quot;fix&quot;, &quot;fix&quot;, &quot;fix&quot;, &quot;fix&quot;, &quot;fix&quot;, &quot;fixing&quot;, &quot;fixing&quot;, &quot;fixing&quot;, &quot;fixing&quot;, &quot;fixing&quot;, &quot;fixing&quot;, &quot;flag&quot;, &quot;flag&quot;, &quot;flag&quot;, &quot;flag&quot;, &quot;flag&quot;, &quot;flag&quot;, &quot;flag&quot;, &quot;flag&quot;, &quot;flag&quot;, &quot;flag&quot;, &quot;flag&quot;, &quot;flag&quot;, &quot;flag&quot;, &quot;flag&quot;, &quot;flames&quot;, &quot;flames&quot;, &quot;flames&quot;, &quot;flames&quot;, &quot;flames&quot;, &quot;flames&quot;, &quot;flames&quot;, &quot;fled&quot;, &quot;fled&quot;, &quot;fled&quot;, &quot;fled&quot;, &quot;fled&quot;, &quot;fled&quot;, &quot;fleets&quot;, &quot;fleets&quot;, &quot;fleets&quot;, &quot;fleets&quot;, &quot;fleets&quot;, &quot;flight&quot;, &quot;flight&quot;, &quot;flight&quot;, &quot;flight&quot;, &quot;flight&quot;, &quot;flight&quot;, &quot;flight&quot;, &quot;floating&quot;, &quot;floating&quot;, &quot;floating&quot;, &quot;floating&quot;, &quot;floating&quot;, &quot;floating&quot;, &quot;floating&quot;, &quot;flood&quot;, &quot;flood&quot;, &quot;flood&quot;, &quot;flood&quot;, &quot;flood&quot;, &quot;flood&quot;, &quot;flood&quot;, &quot;floods&quot;, &quot;floods&quot;, &quot;floods&quot;, &quot;floods&quot;, &quot;floods&quot;, &quot;floods&quot;, &quot;flourish&quot;, &quot;flourish&quot;, &quot;flourish&quot;, &quot;flourish&quot;, &quot;flow&quot;, &quot;flow&quot;, &quot;flow&quot;, &quot;flow&quot;, &quot;flow&quot;, &quot;flow&quot;, &quot;flow&quot;, &quot;flow&quot;, &quot;flow&quot;, &quot;flow&quot;, &quot;flow&quot;, &quot;flow&quot;, &quot;flow&quot;, &quot;foes&quot;, &quot;foes&quot;, &quot;foes&quot;, &quot;foes&quot;, &quot;foes&quot;, &quot;foes&quot;, &quot;foes&quot;, &quot;foes&quot;, &quot;foes&quot;, &quot;folly&quot;, &quot;folly&quot;, &quot;folly&quot;, &quot;folly&quot;, &quot;folly&quot;, &quot;folly&quot;, &quot;folly&quot;, &quot;folly&quot;, &quot;folly&quot;, &quot;folly&quot;, &quot;folly&quot;, &quot;food&quot;, &quot;food&quot;, &quot;food&quot;, &quot;food&quot;, &quot;food&quot;, &quot;food&quot;, &quot;food&quot;, &quot;food&quot;, &quot;food&quot;, &quot;food&quot;, &quot;food&quot;, &quot;food&quot;, &quot;food&quot;, &quot;food&quot;, &quot;food&quot;, &quot;food&quot;, &quot;foothold&quot;, &quot;foothold&quot;, &quot;foothold&quot;, &quot;foothold&quot;, &quot;foothold&quot;, &quot;foothold&quot;, &quot;forbade&quot;, &quot;forbade&quot;, &quot;forbade&quot;, &quot;forbade&quot;, &quot;forbade&quot;, &quot;force&quot;, &quot;force&quot;, &quot;force&quot;, &quot;force&quot;, &quot;force&quot;, &quot;force&quot;, &quot;force&quot;, &quot;force&quot;, &quot;force&quot;, &quot;force&quot;, &quot;force&quot;, &quot;force&quot;, &quot;force&quot;, &quot;force&quot;, &quot;force&quot;, &quot;force&quot;, &quot;force&quot;, &quot;force&quot;, &quot;force&quot;, &quot;force&quot;, &quot;forces&quot;, &quot;forces&quot;, &quot;forces&quot;, &quot;forces&quot;, &quot;forces&quot;, &quot;forces&quot;, &quot;forces&quot;, &quot;forces&quot;, &quot;forces&quot;, &quot;forces&quot;, &quot;forces&quot;, &quot;forces&quot;, &quot;forces&quot;, &quot;forces&quot;, &quot;forces&quot;, &quot;forces&quot;, &quot;forces&quot;, &quot;forces&quot;, &quot;forces&quot;, &quot;foregoing&quot;, &quot;foregoing&quot;, &quot;foregoing&quot;, &quot;foregoing&quot;, &quot;foregoing&quot;, &quot;foregoing&quot;, &quot;foregoing&quot;, &quot;foreign&quot;, &quot;foreign&quot;, &quot;foreign&quot;, &quot;foreign&quot;, &quot;foreign&quot;, &quot;foreign&quot;, &quot;foreign&quot;, &quot;foreign&quot;, &quot;foreign&quot;, &quot;foreign&quot;, &quot;foreign&quot;, &quot;foreign&quot;, &quot;foreign&quot;, &quot;foreign&quot;, &quot;foreign&quot;, &quot;foreign&quot;, &quot;foreign&quot;, &quot;foreign&quot;, &quot;foreign&quot;, &quot;forest&quot;, &quot;forest&quot;, &quot;forest&quot;, &quot;forest&quot;, &quot;forest&quot;, &quot;forest&quot;, &quot;forestry&quot;, &quot;forestry&quot;, &quot;forestry&quot;, &quot;forests&quot;, &quot;forests&quot;, &quot;forests&quot;, &quot;forests&quot;, &quot;forests&quot;, &quot;forests&quot;, &quot;forests&quot;, &quot;forests&quot;, &quot;formally&quot;, &quot;formally&quot;, &quot;formally&quot;, &quot;formally&quot;, &quot;formally&quot;, &quot;formally&quot;, &quot;formally&quot;, &quot;formally&quot;, &quot;formally&quot;, &quot;formally&quot;, &quot;formally&quot;, &quot;formosa&quot;, &quot;formosa&quot;, &quot;formosa&quot;, &quot;formosa&quot;, &quot;formosa&quot;, &quot;forms&quot;, &quot;forms&quot;, &quot;forms&quot;, &quot;forms&quot;, &quot;forms&quot;, &quot;forms&quot;, &quot;forms&quot;, &quot;forms&quot;, &quot;forms&quot;, &quot;forms&quot;, &quot;forms&quot;, &quot;forms&quot;, &quot;forms&quot;, &quot;forms&quot;, &quot;forms&quot;, &quot;forms&quot;, &quot;fort&quot;, &quot;fort&quot;, &quot;fort&quot;, &quot;fort&quot;, &quot;fort&quot;, &quot;fort&quot;, &quot;fort&quot;, &quot;fort&quot;, &quot;fort&quot;, &quot;forth&quot;, &quot;forth&quot;, &quot;forth&quot;, &quot;forth&quot;, &quot;forth&quot;, &quot;forth&quot;, &quot;forth&quot;, &quot;forth&quot;, &quot;forth&quot;, &quot;forth&quot;, &quot;forth&quot;, &quot;forth&quot;, &quot;forth&quot;, &quot;forth&quot;, &quot;forth&quot;, &quot;forthwith&quot;, &quot;forthwith&quot;, &quot;forthwith&quot;, &quot;forthwith&quot;, &quot;forthwith&quot;, &quot;forthwith&quot;, &quot;forthwith&quot;, &quot;forthwith&quot;, &quot;fortifications&quot;, &quot;fortifications&quot;, &quot;fortifications&quot;, &quot;fortifications&quot;, &quot;foundation&quot;, &quot;foundation&quot;, &quot;foundation&quot;, &quot;foundation&quot;, &quot;foundation&quot;, &quot;foundation&quot;, &quot;foundation&quot;, &quot;foundation&quot;, &quot;foundation&quot;, &quot;foundation&quot;, &quot;foundation&quot;, &quot;foundation&quot;, &quot;foundation&quot;, &quot;foundation&quot;, &quot;foundation&quot;, &quot;foundation&quot;, &quot;foundations&quot;, &quot;foundations&quot;, &quot;foundations&quot;, &quot;foundations&quot;, &quot;foundations&quot;, &quot;foundations&quot;, &quot;foundations&quot;, &quot;foundations&quot;, &quot;foundations&quot;, &quot;foundations&quot;, &quot;foundations&quot;, &quot;foundations&quot;, &quot;foundations&quot;, &quot;founded&quot;, &quot;founded&quot;, &quot;founded&quot;, &quot;founded&quot;, &quot;founded&quot;, &quot;founded&quot;, &quot;founded&quot;, &quot;founded&quot;, &quot;founded&quot;, &quot;founded&quot;, &quot;founded&quot;, &quot;founded&quot;, &quot;founded&quot;, &quot;founded&quot;, &quot;founded&quot;, &quot;founded&quot;, &quot;founders&quot;, &quot;founders&quot;, &quot;founders&quot;, &quot;founders&quot;, &quot;founders&quot;, &quot;founders&quot;, &quot;founders&quot;, &quot;founders&quot;, &quot;founders&quot;, &quot;founders&quot;, &quot;fox&quot;, &quot;fox&quot;, &quot;fox&quot;, &quot;framed&quot;, &quot;framed&quot;, &quot;framed&quot;, &quot;framed&quot;, &quot;framed&quot;, &quot;framed&quot;, &quot;framed&quot;, &quot;framed&quot;, &quot;framed&quot;, &quot;framed&quot;, &quot;framers&quot;, &quot;framers&quot;, &quot;framers&quot;, &quot;framers&quot;, &quot;framers&quot;, &quot;framers&quot;, &quot;framers&quot;, &quot;france&quot;, &quot;france&quot;, &quot;france&quot;, &quot;france&quot;, &quot;france&quot;, &quot;france&quot;, &quot;france&quot;, &quot;france&quot;, &quot;france&quot;, &quot;france&quot;, &quot;france&quot;, &quot;france&quot;, &quot;france&quot;, &quot;france&quot;, &quot;france&quot;, &quot;frankel&quot;, &quot;frankel&quot;, &quot;fraternal&quot;, &quot;fraternal&quot;, &quot;fraternal&quot;, &quot;fraternal&quot;, &quot;fraternal&quot;, &quot;fraternal&quot;, &quot;fraternal&quot;, &quot;fraught&quot;, &quot;fraught&quot;, &quot;fraught&quot;, &quot;fraught&quot;, &quot;fraught&quot;, &quot;fraught&quot;, &quot;fraught&quot;, &quot;free&quot;, &quot;free&quot;, &quot;free&quot;, &quot;free&quot;, &quot;free&quot;, &quot;free&quot;, &quot;free&quot;, &quot;free&quot;, &quot;free&quot;, &quot;free&quot;, &quot;free&quot;, &quot;free&quot;, &quot;free&quot;, &quot;free&quot;, &quot;free&quot;, &quot;free&quot;, &quot;free&quot;, &quot;free&quot;, &quot;free&quot;, &quot;freedmen&quot;, &quot;freedmen&quot;, &quot;freedmen&quot;, &quot;freedmen&quot;, &quot;freedmen&quot;, &quot;freedom&quot;, &quot;freedom&quot;, &quot;freedom&quot;, &quot;freedom&quot;, &quot;freedom&quot;, &quot;freedom&quot;, &quot;freedom&quot;, &quot;freedom&quot;, &quot;freedom&quot;, &quot;freedom&quot;, &quot;freedom&quot;, &quot;freedom&quot;, &quot;freedom&quot;, &quot;freedom&quot;, &quot;freedom&quot;, &quot;freedom&quot;, &quot;freedom&quot;, &quot;freedom&quot;, &quot;freedom&quot;, &quot;freedoms&quot;, &quot;freedoms&quot;, &quot;freedoms&quot;, &quot;freedoms&quot;, &quot;freedoms&quot;, &quot;freeing&quot;, &quot;freeing&quot;, &quot;freeing&quot;, &quot;freeing&quot;, &quot;freeing&quot;, &quot;freeing&quot;, &quot;freeze&quot;, &quot;freeze&quot;, &quot;freeze&quot;, &quot;freeze&quot;, &quot;freeze&quot;, &quot;friction&quot;, &quot;friction&quot;, &quot;friction&quot;, &quot;friction&quot;, &quot;friction&quot;, &quot;friendly&quot;, &quot;friendly&quot;, &quot;friendly&quot;, &quot;friendly&quot;, &quot;friendly&quot;, &quot;friendly&quot;, &quot;friendly&quot;, &quot;friendly&quot;, &quot;friendly&quot;, &quot;friendly&quot;, &quot;friendly&quot;, &quot;friendly&quot;, &quot;friendly&quot;, &quot;friendly&quot;, &quot;friendly&quot;, &quot;friendly&quot;, &quot;frigate&quot;, &quot;frigate&quot;, &quot;frigates&quot;, &quot;frigates&quot;, &quot;frontiers&quot;, &quot;frontiers&quot;, &quot;frontiers&quot;, &quot;frontiers&quot;, &quot;frontiers&quot;, &quot;frontiers&quot;, &quot;frontiers&quot;, &quot;frontiers&quot;, &quot;frost&quot;, &quot;frost&quot;, &quot;frustrations&quot;, &quot;frustrations&quot;, &quot;frustrations&quot;, &quot;frustrations&quot;, &quot;fuel&quot;, &quot;fuel&quot;, &quot;fuel&quot;, &quot;fuel&quot;, &quot;fuel&quot;, &quot;fuel&quot;, &quot;fuel&quot;, &quot;fuel&quot;, &quot;fuel&quot;, &quot;fuel&quot;, &quot;fuel&quot;, &quot;fuel&quot;, &quot;fugitive&quot;, &quot;fugitive&quot;, &quot;fugitive&quot;, &quot;fugitive&quot;, &quot;fulbright&quot;, &quot;fund&quot;, &quot;fund&quot;, &quot;fund&quot;, &quot;fund&quot;, &quot;fund&quot;, &quot;fund&quot;, &quot;fund&quot;, &quot;fund&quot;, &quot;fund&quot;, &quot;fundamentally&quot;, &quot;fundamentally&quot;, &quot;fundamentally&quot;, &quot;fundamentally&quot;, &quot;fundamentally&quot;, &quot;fundamentally&quot;, &quot;fundamentally&quot;, &quot;furnishes&quot;, &quot;furnishes&quot;, &quot;furnishes&quot;, &quot;furnishes&quot;, &quot;furnishes&quot;, &quot;furnishes&quot;, &quot;furnishes&quot;, &quot;furnishes&quot;, &quot;furnishes&quot;, &quot;futile&quot;, &quot;futile&quot;, &quot;futile&quot;, &quot;futile&quot;, &quot;futile&quot;, &quot;futile&quot;, &quot;futile&quot;, &quot;futile&quot;, &quot;future&quot;, &quot;future&quot;, &quot;future&quot;, &quot;future&quot;, &quot;future&quot;, &quot;future&quot;, &quot;future&quot;, &quot;future&quot;, &quot;future&quot;, &quot;future&quot;, &quot;future&quot;, &quot;future&quot;, &quot;future&quot;, &quot;future&quot;, &quot;future&quot;, &quot;future&quot;, &quot;future&quot;, &quot;future&quot;, &quot;future&quot;, &quot;gangs&quot;, &quot;gangs&quot;, &quot;gangs&quot;, &quot;gas&quot;, &quot;gas&quot;, &quot;gas&quot;, &quot;gas&quot;, &quot;gas&quot;, &quot;gas&quot;, &quot;gas&quot;, &quot;gas&quot;, &quot;gas&quot;, &quot;gather&quot;, &quot;gather&quot;, &quot;gather&quot;, &quot;gather&quot;, &quot;gather&quot;, &quot;gather&quot;, &quot;gather&quot;, &quot;gather&quot;, &quot;gather&quot;, &quot;gaza&quot;, &quot;general&quot;, &quot;general&quot;, &quot;general&quot;, &quot;general&quot;, &quot;general&quot;, &quot;general&quot;, &quot;general&quot;, &quot;general&quot;, &quot;general&quot;, &quot;general&quot;, &quot;general&quot;, &quot;general&quot;, &quot;general&quot;, &quot;general&quot;, &quot;general&quot;, &quot;general&quot;, &quot;general&quot;, &quot;general&quot;, &quot;general&quot;, &quot;general&quot;, &quot;geneva&quot;, &quot;geneva&quot;, &quot;geneva&quot;, &quot;geneva&quot;, &quot;geneva&quot;, &quot;geneva&quot;, &quot;geneva&quot;, &quot;geneva&quot;, &quot;geneva&quot;, &quot;geneva&quot;, &quot;geneva&quot;, &quot;genius&quot;, &quot;genius&quot;, &quot;genius&quot;, &quot;genius&quot;, &quot;genius&quot;, &quot;genius&quot;, &quot;genius&quot;, &quot;genius&quot;, &quot;genius&quot;, &quot;genius&quot;, &quot;genius&quot;, &quot;genius&quot;, &quot;genius&quot;, &quot;genocide&quot;, &quot;genocide&quot;, &quot;genocide&quot;, &quot;german&quot;, &quot;german&quot;, &quot;german&quot;, &quot;german&quot;, &quot;german&quot;, &quot;german&quot;, &quot;german&quot;, &quot;german&quot;, &quot;german&quot;, &quot;german&quot;, &quot;german&quot;, &quot;german&quot;, &quot;german&quot;, &quot;german&quot;, &quot;germany&quot;, &quot;germany&quot;, &quot;germany&quot;, &quot;germany&quot;, &quot;germany&quot;, &quot;germany&quot;, &quot;germany&quot;, &quot;germany&quot;, &quot;germany&quot;, &quot;germany&quot;, &quot;germany&quot;, &quot;germany&quot;, &quot;germany&quot;, &quot;germany&quot;, &quot;gets&quot;, &quot;gets&quot;, &quot;gets&quot;, &quot;gets&quot;, &quot;gets&quot;, &quot;gets&quot;, &quot;gets&quot;, &quot;gets&quot;, &quot;geyer&quot;, &quot;ghana&quot;, &quot;ghana&quot;, &quot;ghent&quot;, &quot;ghent&quot;, &quot;giant&quot;, &quot;giant&quot;, &quot;giant&quot;, &quot;giant&quot;, &quot;giant&quot;, &quot;giant&quot;, &quot;giant&quot;, &quot;girls&quot;, &quot;girls&quot;, &quot;girls&quot;, &quot;girls&quot;, &quot;girls&quot;, &quot;giver&quot;, &quot;giver&quot;, &quot;giver&quot;, &quot;giver&quot;, &quot;glass&quot;, &quot;glass&quot;, &quot;glass&quot;, &quot;glass&quot;, &quot;glass&quot;, &quot;glass&quot;, &quot;glass&quot;, &quot;glass&quot;, &quot;glass&quot;, &quot;god&quot;, &quot;god&quot;, &quot;god&quot;, &quot;god&quot;, &quot;god&quot;, &quot;god&quot;, &quot;god&quot;, &quot;god&quot;, &quot;god&quot;, &quot;god&quot;, &quot;god&quot;, &quot;god&quot;, &quot;god&quot;, &quot;god&quot;, &quot;god&quot;, &quot;god&quot;, &quot;god&quot;, &quot;god&quot;, &quot;goes&quot;, &quot;goes&quot;, &quot;goes&quot;, &quot;goes&quot;, &quot;goes&quot;, &quot;goes&quot;, &quot;goes&quot;, &quot;goes&quot;, &quot;goes&quot;, &quot;goes&quot;, &quot;goes&quot;, &quot;goes&quot;, &quot;goes&quot;, &quot;goes&quot;, &quot;goes&quot;, &quot;goes&quot;, &quot;going&quot;, &quot;going&quot;, &quot;going&quot;, &quot;going&quot;, &quot;going&quot;, &quot;going&quot;, &quot;going&quot;, &quot;going&quot;, &quot;going&quot;, &quot;going&quot;, &quot;going&quot;, &quot;going&quot;, &quot;going&quot;, &quot;going&quot;, &quot;going&quot;, &quot;going&quot;, &quot;going&quot;, &quot;going&quot;, &quot;going&quot;, &quot;gold&quot;, &quot;gold&quot;, &quot;gold&quot;, &quot;gold&quot;, &quot;gold&quot;, &quot;gold&quot;, &quot;gold&quot;, &quot;gold&quot;, &quot;gold&quot;, &quot;gold&quot;, &quot;gold&quot;, &quot;gold&quot;, &quot;gold&quot;, &quot;gold&quot;, &quot;gold&quot;, &quot;gold&quot;, &quot;good&quot;, &quot;good&quot;, &quot;good&quot;, &quot;good&quot;, &quot;good&quot;, &quot;good&quot;, &quot;good&quot;, &quot;good&quot;, &quot;good&quot;, &quot;good&quot;, &quot;good&quot;, &quot;good&quot;, &quot;good&quot;, &quot;good&quot;, &quot;good&quot;, &quot;good&quot;, &quot;good&quot;, &quot;good&quot;, &quot;good&quot;, &quot;gorbachev&quot;, &quot;gorbachev&quot;, &quot;gorbachev&quot;, &quot;gore&quot;, &quot;gore&quot;, &quot;gore&quot;, &quot;got&quot;, &quot;got&quot;, &quot;got&quot;, &quot;got&quot;, &quot;got&quot;, &quot;got&quot;, &quot;got&quot;, &quot;got&quot;, &quot;got&quot;, &quot;got&quot;, &quot;got&quot;, &quot;got&quot;, &quot;got&quot;, &quot;got&quot;, &quot;gotten&quot;, &quot;gotten&quot;, &quot;gotten&quot;, &quot;gotten&quot;, &quot;gotten&quot;, &quot;government&quot;, &quot;government&quot;, &quot;government&quot;, &quot;government&quot;, &quot;government&quot;, &quot;government&quot;, &quot;government&quot;, &quot;government&quot;, &quot;government&quot;, &quot;government&quot;, &quot;government&quot;, &quot;government&quot;, &quot;government&quot;, &quot;government&quot;, &quot;government&quot;, &quot;government&quot;, &quot;government&quot;, &quot;government&quot;, &quot;government&quot;, &quot;government&quot;, &quot;governor&quot;, &quot;governor&quot;, &quot;governor&quot;, &quot;governor&quot;, &quot;governor&quot;, &quot;governor&quot;, &quot;governor&quot;, &quot;governor&quot;, &quot;governor&quot;, &quot;governor&quot;, &quot;governor&quot;, &quot;governor&quot;, &quot;governor&quot;, &quot;governor&quot;, &quot;governor&quot;, &quot;governor&quot;, &quot;governor&quot;, &quot;governor&quot;, &quot;governor&quot;, &quot;governors&quot;, &quot;governors&quot;, &quot;governors&quot;, &quot;governors&quot;, &quot;governors&quot;, &quot;governors&quot;, &quot;governors&quot;, &quot;governors&quot;, &quot;governors&quot;, &quot;governors&quot;, &quot;governors&quot;, &quot;governors&quot;, &quot;governors&quot;, &quot;governors&quot;, &quot;governs&quot;, &quot;governs&quot;, &quot;governs&quot;, &quot;gracious&quot;, &quot;gracious&quot;, &quot;gracious&quot;, &quot;gracious&quot;, &quot;gracious&quot;, &quot;gracious&quot;, &quot;gracious&quot;, &quot;gradually&quot;, &quot;gradually&quot;, &quot;gradually&quot;, &quot;gradually&quot;, &quot;gradually&quot;, &quot;gradually&quot;, &quot;gradually&quot;, &quot;gradually&quot;, &quot;gradually&quot;, &quot;gradually&quot;, &quot;gradually&quot;, &quot;graham&quot;, &quot;graham&quot;, &quot;graham&quot;, &quot;graham&quot;, &quot;grandfather&quot;, &quot;grandfather&quot;, &quot;grandfather&quot;, &quot;grant&quot;, &quot;grant&quot;, &quot;grant&quot;, &quot;grant&quot;, &quot;grant&quot;, &quot;grant&quot;, &quot;grant&quot;, &quot;grant&quot;, &quot;grant&quot;, &quot;grant&quot;, &quot;grant&quot;, &quot;grant&quot;, &quot;grant&quot;, &quot;grant&quot;, &quot;grant&quot;, &quot;grant&quot;, &quot;grant&quot;, &quot;granted&quot;, &quot;granted&quot;, &quot;granted&quot;, &quot;granted&quot;, &quot;granted&quot;, &quot;granted&quot;, &quot;granted&quot;, &quot;granted&quot;, &quot;granted&quot;, &quot;granted&quot;, &quot;granted&quot;, &quot;granted&quot;, &quot;granted&quot;, &quot;granted&quot;, &quot;granted&quot;, &quot;grave&quot;, &quot;grave&quot;, &quot;grave&quot;, &quot;grave&quot;, &quot;grave&quot;, &quot;grave&quot;, &quot;grave&quot;, &quot;grave&quot;, &quot;grave&quot;, &quot;grave&quot;, &quot;grave&quot;, &quot;grave&quot;, &quot;grave&quot;, &quot;grave&quot;, &quot;grave&quot;, &quot;grave&quot;, &quot;grazing&quot;, &quot;grazing&quot;, &quot;grazing&quot;, &quot;grazing&quot;, &quot;great&quot;, &quot;great&quot;, &quot;great&quot;, &quot;great&quot;, &quot;great&quot;, &quot;great&quot;, &quot;great&quot;, &quot;great&quot;, &quot;great&quot;, &quot;great&quot;, &quot;great&quot;, &quot;great&quot;, &quot;great&quot;, &quot;great&quot;, &quot;great&quot;, &quot;great&quot;, &quot;great&quot;, &quot;great&quot;, &quot;great&quot;, &quot;great&quot;, &quot;greater&quot;, &quot;greater&quot;, &quot;greater&quot;, &quot;greater&quot;, &quot;greater&quot;, &quot;greater&quot;, &quot;greater&quot;, &quot;greater&quot;, &quot;greater&quot;, &quot;greater&quot;, &quot;greater&quot;, &quot;greater&quot;, &quot;greater&quot;, &quot;greater&quot;, &quot;greater&quot;, &quot;greater&quot;, &quot;greater&quot;, &quot;greater&quot;, &quot;greater&quot;, &quot;grenada&quot;, &quot;grenada&quot;, &quot;grenada&quot;, &quot;grenada&quot;, &quot;grief&quot;, &quot;grief&quot;, &quot;grief&quot;, &quot;grief&quot;, &quot;grief&quot;, &quot;grief&quot;, &quot;grievance&quot;, &quot;grievance&quot;, &quot;grievance&quot;, &quot;grievance&quot;, &quot;grievance&quot;, &quot;grow&quot;, &quot;grow&quot;, &quot;grow&quot;, &quot;grow&quot;, &quot;grow&quot;, &quot;grow&quot;, &quot;grow&quot;, &quot;grow&quot;, &quot;grow&quot;, &quot;grow&quot;, &quot;grow&quot;, &quot;grow&quot;, &quot;grow&quot;, &quot;grow&quot;, &quot;grow&quot;, &quot;guaranteed&quot;, &quot;guaranteed&quot;, &quot;guaranteed&quot;, &quot;guaranteed&quot;, &quot;guaranteed&quot;, &quot;guaranteed&quot;, &quot;guaranteed&quot;, &quot;guaranteed&quot;, &quot;guaranteed&quot;, &quot;guaranteed&quot;, &quot;guaranteed&quot;, &quot;guaranteed&quot;, &quot;guaranteed&quot;, &quot;guaranteed&quot;, &quot;guardianship&quot;, &quot;guardianship&quot;, &quot;guardianship&quot;, &quot;guardianship&quot;, &quot;gunboat&quot;, &quot;gunboat&quot;, &quot;gunboat&quot;, &quot;gunboat&quot;, &quot;guy&quot;, &quot;habitual&quot;, &quot;habitual&quot;, &quot;habitual&quot;, &quot;hague&quot;, &quot;hague&quot;, &quot;hague&quot;, &quot;hague&quot;, &quot;hail&quot;, &quot;hail&quot;, &quot;hail&quot;, &quot;hail&quot;, &quot;haldeman&quot;, &quot;halted&quot;, &quot;halted&quot;, &quot;halted&quot;, &quot;halted&quot;, &quot;hampshire&quot;, &quot;hampshire&quot;, &quot;hampshire&quot;, &quot;hampshire&quot;, &quot;hampshire&quot;, &quot;handful&quot;, &quot;handful&quot;, &quot;handicapped&quot;, &quot;handicapped&quot;, &quot;handicapped&quot;, &quot;handicapped&quot;, &quot;hanoi&quot;, &quot;hanoi&quot;, &quot;hanoi&quot;, &quot;hanoi&quot;, &quot;happened&quot;, &quot;happened&quot;, &quot;happened&quot;, &quot;happened&quot;, &quot;happened&quot;, &quot;happened&quot;, &quot;happened&quot;, &quot;happened&quot;, &quot;happened&quot;, &quot;happened&quot;, &quot;happened&quot;, &quot;happened&quot;, &quot;happened&quot;, &quot;happened&quot;, &quot;happened&quot;, &quot;happened&quot;, &quot;happened&quot;, &quot;happened&quot;, &quot;happened&quot;, &quot;harmonize&quot;, &quot;harmonize&quot;, &quot;harmonize&quot;, &quot;harmonize&quot;, &quot;harness&quot;, &quot;harness&quot;, &quot;harness&quot;, &quot;harness&quot;, &quot;harriman&quot;, &quot;harriman&quot;, &quot;harriman&quot;, &quot;harriman&quot;, &quot;harsh&quot;, &quot;harsh&quot;, &quot;harsh&quot;, &quot;harsh&quot;, &quot;harsh&quot;, &quot;harsh&quot;, &quot;harsh&quot;, &quot;harsh&quot;, &quot;harsh&quot;, &quot;hartley&quot;, &quot;hartley&quot;, &quot;hartley&quot;, &quot;hartley&quot;, &quot;hasty&quot;, &quot;hasty&quot;, &quot;hasty&quot;, &quot;hasty&quot;, &quot;hasty&quot;, &quot;hasty&quot;, &quot;hasty&quot;, &quot;hatreds&quot;, &quot;hatreds&quot;, &quot;hatreds&quot;, &quot;hatreds&quot;, &quot;hawaii&quot;, &quot;hawaii&quot;, &quot;hawaii&quot;, &quot;hawaii&quot;, &quot;hawaii&quot;, &quot;hawaii&quot;, &quot;hawaii&quot;, &quot;hawaii&quot;, &quot;hawaii&quot;, &quot;hawaii&quot;, &quot;hawaiian&quot;, &quot;hawaiian&quot;, &quot;hawaiian&quot;, &quot;hawaiian&quot;, &quot;hawaiian&quot;, &quot;hay&quot;, &quot;hay&quot;, &quot;hay&quot;, &quot;hay&quot;, &quot;hayti&quot;, &quot;hayti&quot;, &quot;health&quot;, &quot;health&quot;, &quot;health&quot;, &quot;health&quot;, &quot;health&quot;, &quot;health&quot;, &quot;health&quot;, &quot;health&quot;, &quot;health&quot;, &quot;health&quot;, &quot;health&quot;, &quot;health&quot;, &quot;health&quot;, &quot;health&quot;, &quot;health&quot;, &quot;health&quot;, &quot;health&quot;, &quot;health&quot;, &quot;hearty&quot;, &quot;hearty&quot;, &quot;hearty&quot;, &quot;hearty&quot;, &quot;hearty&quot;, &quot;hearty&quot;, &quot;hearty&quot;, &quot;heed&quot;, &quot;heed&quot;, &quot;heed&quot;, &quot;heed&quot;, &quot;heed&quot;, &quot;heed&quot;, &quot;heed&quot;, &quot;help&quot;, &quot;help&quot;, &quot;help&quot;, &quot;help&quot;, &quot;help&quot;, &quot;help&quot;, &quot;help&quot;, &quot;help&quot;, &quot;help&quot;, &quot;help&quot;, &quot;help&quot;, &quot;help&quot;, &quot;help&quot;, &quot;help&quot;, &quot;help&quot;, &quot;help&quot;, &quot;help&quot;, &quot;help&quot;, &quot;help&quot;, &quot;helped&quot;, &quot;helped&quot;, &quot;helped&quot;, &quot;helped&quot;, &quot;helped&quot;, &quot;helped&quot;, &quot;helped&quot;, &quot;helped&quot;, &quot;helped&quot;, &quot;helped&quot;, &quot;helped&quot;, &quot;helpless&quot;, &quot;helpless&quot;, &quot;helpless&quot;, &quot;helpless&quot;, &quot;helpless&quot;, &quot;helpless&quot;, &quot;helpless&quot;, &quot;helpless&quot;, &quot;helpless&quot;, &quot;helpless&quot;, &quot;helsinki&quot;, &quot;helsinki&quot;, &quot;helsinki&quot;, &quot;hemp&quot;, &quot;hemp&quot;, &quot;hemp&quot;, &quot;hemp&quot;, &quot;herd&quot;, &quot;herd&quot;, &quot;herd&quot;, &quot;hereinafter&quot;, &quot;hereinafter&quot;, &quot;hereinafter&quot;, &quot;hereunto&quot;, &quot;heroes&quot;, &quot;heroes&quot;, &quot;heroes&quot;, &quot;heroes&quot;, &quot;heroes&quot;, &quot;heroes&quot;, &quot;heroism&quot;, &quot;heroism&quot;, &quot;heroism&quot;, &quot;heroism&quot;, &quot;heroism&quot;, &quot;heroism&quot;, &quot;heroism&quot;, &quot;heroism&quot;, &quot;herrera&quot;, &quot;hesitate&quot;, &quot;hesitate&quot;, &quot;hesitate&quot;, &quot;hesitate&quot;, &quot;hesitate&quot;, &quot;hesitate&quot;, &quot;hesitate&quot;, &quot;hesitate&quot;, &quot;hesitate&quot;, &quot;hesitate&quot;, &quot;hesitate&quot;, &quot;hesitate&quot;, &quot;hesitate&quot;, &quot;hesitate&quot;, &quot;hides&quot;, &quot;hides&quot;, &quot;hides&quot;, &quot;hides&quot;, &quot;highlands&quot;, &quot;highlands&quot;, &quot;hillary&quot;, &quot;hiv&quot;, &quot;ho&quot;, &quot;ho&quot;, &quot;ho&quot;, &quot;ho&quot;, &quot;homage&quot;, &quot;homage&quot;, &quot;homage&quot;, &quot;homage&quot;, &quot;homage&quot;, &quot;honolulu&quot;, &quot;honolulu&quot;, &quot;honolulu&quot;, &quot;honolulu&quot;, &quot;honolulu&quot;, &quot;hoped&quot;, &quot;hoped&quot;, &quot;hoped&quot;, &quot;hoped&quot;, &quot;hoped&quot;, &quot;hoped&quot;, &quot;hoped&quot;, &quot;hoped&quot;, &quot;hoped&quot;, &quot;hoped&quot;, &quot;hoped&quot;, &quot;hoped&quot;, &quot;hoped&quot;, &quot;hoped&quot;, &quot;hoped&quot;, &quot;horrors&quot;, &quot;horrors&quot;, &quot;horrors&quot;, &quot;horrors&quot;, &quot;horrors&quot;, &quot;horrors&quot;, &quot;horrors&quot;, &quot;hostages&quot;, &quot;hostages&quot;, &quot;hostages&quot;, &quot;hostages&quot;, &quot;hotels&quot;, &quot;hotels&quot;, &quot;hours&quot;, &quot;hours&quot;, &quot;hours&quot;, &quot;hours&quot;, &quot;hours&quot;, &quot;hours&quot;, &quot;hours&quot;, &quot;hours&quot;, &quot;hours&quot;, &quot;hours&quot;, &quot;hours&quot;, &quot;hours&quot;, &quot;hours&quot;, &quot;hours&quot;, &quot;hours&quot;, &quot;hours&quot;, &quot;house&quot;, &quot;house&quot;, &quot;house&quot;, &quot;house&quot;, &quot;house&quot;, &quot;house&quot;, &quot;house&quot;, &quot;house&quot;, &quot;house&quot;, &quot;house&quot;, &quot;house&quot;, &quot;house&quot;, &quot;house&quot;, &quot;house&quot;, &quot;house&quot;, &quot;house&quot;, &quot;house&quot;, &quot;house&quot;, &quot;house&quot;, &quot;houses&quot;, &quot;houses&quot;, &quot;houses&quot;, &quot;houses&quot;, &quot;houses&quot;, &quot;houses&quot;, &quot;houses&quot;, &quot;houses&quot;, &quot;houses&quot;, &quot;houses&quot;, &quot;houses&quot;, &quot;houses&quot;, &quot;houses&quot;, &quot;houses&quot;, &quot;houses&quot;, &quot;houses&quot;, &quot;houston&quot;, &quot;houston&quot;, &quot;houston&quot;, &quot;howe&quot;, &quot;howe&quot;, &quot;howe&quot;, &quot;hubbard&quot;, &quot;hubbard&quot;, &quot;huerta&quot;, &quot;human&quot;, &quot;human&quot;, &quot;human&quot;, &quot;human&quot;, &quot;human&quot;, &quot;human&quot;, &quot;human&quot;, &quot;human&quot;, &quot;human&quot;, &quot;human&quot;, &quot;human&quot;, &quot;human&quot;, &quot;human&quot;, &quot;human&quot;, &quot;human&quot;, &quot;human&quot;, &quot;human&quot;, &quot;human&quot;, &quot;human&quot;, &quot;humane&quot;, &quot;humane&quot;, &quot;humane&quot;, &quot;humane&quot;, &quot;humane&quot;, &quot;humane&quot;, &quot;humane&quot;, &quot;humane&quot;, &quot;humane&quot;, &quot;humane&quot;, &quot;humanity&quot;, &quot;humanity&quot;, &quot;humanity&quot;, &quot;humanity&quot;, &quot;humanity&quot;, &quot;humanity&quot;, &quot;humanity&quot;, &quot;humanity&quot;, &quot;humanity&quot;, &quot;humanity&quot;, &quot;humanity&quot;, &quot;humanity&quot;, &quot;humanity&quot;, &quot;humanity&quot;, &quot;hung&quot;, &quot;hung&quot;, &quot;hung&quot;, &quot;hung&quot;, &quot;hungry&quot;, &quot;hungry&quot;, &quot;hungry&quot;, &quot;hungry&quot;, &quot;hungry&quot;, &quot;hungry&quot;, &quot;hungry&quot;, &quot;hungry&quot;, &quot;hungry&quot;, &quot;hunt&quot;, &quot;hunt&quot;, &quot;hunt&quot;, &quot;hunt&quot;, &quot;hunt&quot;, &quot;hunter&quot;, &quot;hunter&quot;, &quot;hunter&quot;, &quot;hunter&quot;, &quot;hunting&quot;, &quot;hunting&quot;, &quot;hunting&quot;, &quot;hunting&quot;, &quot;hunting&quot;, &quot;hunting&quot;, &quot;husbandman&quot;, &quot;husbandman&quot;, &quot;hussein&quot;, &quot;hussein&quot;, &quot;hussein&quot;, &quot;iceland&quot;, &quot;iceland&quot;, &quot;iceland&quot;, &quot;idealism&quot;, &quot;idealism&quot;, &quot;idealism&quot;, &quot;idealism&quot;, &quot;idealism&quot;, &quot;idealism&quot;, &quot;idealism&quot;, &quot;ideals&quot;, &quot;ideals&quot;, &quot;ideals&quot;, &quot;ideals&quot;, &quot;ideals&quot;, &quot;ideals&quot;, &quot;ideals&quot;, &quot;ideals&quot;, &quot;ideals&quot;, &quot;ideals&quot;, &quot;ideals&quot;, &quot;ideals&quot;, &quot;ideological&quot;, &quot;ideological&quot;, &quot;ideological&quot;, &quot;ideological&quot;, &quot;ignorant&quot;, &quot;ignorant&quot;, &quot;ignorant&quot;, &quot;ignorant&quot;, &quot;ignorant&quot;, &quot;ignorant&quot;, &quot;ignorant&quot;, &quot;ignorant&quot;, &quot;ignorant&quot;, &quot;ignorant&quot;, &quot;ignorant&quot;, &quot;ignoring&quot;, &quot;ignoring&quot;, &quot;ignoring&quot;, &quot;ignoring&quot;, &quot;ignoring&quot;, &quot;illinois&quot;, &quot;illinois&quot;, &quot;illinois&quot;, &quot;illinois&quot;, &quot;illinois&quot;, &quot;illinois&quot;, &quot;illinois&quot;, &quot;illinois&quot;, &quot;illinois&quot;, &quot;illinois&quot;, &quot;illinois&quot;, &quot;illusions&quot;, &quot;illusions&quot;, &quot;illusions&quot;, &quot;illusions&quot;, &quot;imagined&quot;, &quot;imagined&quot;, &quot;imagined&quot;, &quot;imagined&quot;, &quot;imagined&quot;, &quot;immediately&quot;, &quot;immediately&quot;, &quot;immediately&quot;, &quot;immediately&quot;, &quot;immediately&quot;, &quot;immediately&quot;, &quot;immediately&quot;, &quot;immediately&quot;, &quot;immediately&quot;, &quot;immediately&quot;, &quot;immediately&quot;, &quot;immediately&quot;, &quot;immediately&quot;, &quot;immediately&quot;, &quot;immediately&quot;, &quot;immediately&quot;, &quot;immediately&quot;, &quot;immediately&quot;, &quot;immediately&quot;, &quot;immortal&quot;, &quot;immortal&quot;, &quot;immortal&quot;, &quot;immortal&quot;, &quot;impeachable&quot;, &quot;impeachable&quot;, &quot;impeachment&quot;, &quot;impeachment&quot;, &quot;impede&quot;, &quot;impede&quot;, &quot;impede&quot;, &quot;impede&quot;, &quot;impede&quot;, &quot;impelled&quot;, &quot;impelled&quot;, &quot;impelled&quot;, &quot;impelled&quot;, &quot;impelled&quot;, &quot;imperial&quot;, &quot;imperial&quot;, &quot;imperial&quot;, &quot;imperial&quot;, &quot;imperial&quot;, &quot;imperial&quot;, &quot;imperial&quot;, &quot;implemented&quot;, &quot;implemented&quot;, &quot;implemented&quot;, &quot;implemented&quot;, &quot;implementing&quot;, &quot;implementing&quot;, &quot;implementing&quot;, &quot;implementing&quot;, &quot;implementing&quot;, &quot;important&quot;, &quot;important&quot;, &quot;important&quot;, &quot;important&quot;, &quot;important&quot;, &quot;important&quot;, &quot;important&quot;, &quot;important&quot;, &quot;important&quot;, &quot;important&quot;, &quot;important&quot;, &quot;important&quot;, &quot;important&quot;, &quot;important&quot;, &quot;important&quot;, &quot;important&quot;, &quot;important&quot;, &quot;important&quot;, &quot;important&quot;, &quot;imported&quot;, &quot;imported&quot;, &quot;imported&quot;, &quot;imported&quot;, &quot;imported&quot;, &quot;imported&quot;, &quot;imported&quot;, &quot;imported&quot;, &quot;imported&quot;, &quot;imported&quot;, &quot;imported&quot;, &quot;imports&quot;, &quot;imports&quot;, &quot;imports&quot;, &quot;imports&quot;, &quot;imports&quot;, &quot;imports&quot;, &quot;imports&quot;, &quot;imports&quot;, &quot;imports&quot;, &quot;imports&quot;, &quot;imports&quot;, &quot;imports&quot;, &quot;imposes&quot;, &quot;imposes&quot;, &quot;imposes&quot;, &quot;imposes&quot;, &quot;imposes&quot;, &quot;imposes&quot;, &quot;imposes&quot;, &quot;imposes&quot;, &quot;imposes&quot;, &quot;imposes&quot;, &quot;imposes&quot;, &quot;impracticable&quot;, &quot;impracticable&quot;, &quot;impracticable&quot;, &quot;impracticable&quot;, &quot;impracticable&quot;, &quot;impracticable&quot;, &quot;impracticable&quot;, &quot;impressed&quot;, &quot;impressed&quot;, &quot;impressed&quot;, &quot;impressed&quot;, &quot;impressed&quot;, &quot;impressed&quot;, &quot;impressed&quot;, &quot;impressed&quot;, &quot;impressed&quot;, &quot;impressed&quot;, &quot;impressive&quot;, &quot;impressive&quot;, &quot;impressive&quot;, &quot;impressive&quot;, &quot;impressive&quot;, &quot;impressive&quot;, &quot;impressive&quot;, &quot;impressive&quot;, &quot;impressive&quot;, &quot;impressive&quot;, &quot;impressive&quot;, &quot;impressive&quot;, &quot;impropriety&quot;, &quot;impropriety&quot;, &quot;impropriety&quot;, &quot;impropriety&quot;, &quot;impulses&quot;, &quot;impulses&quot;, &quot;impulses&quot;, &quot;impulses&quot;, &quot;impulses&quot;, &quot;impulses&quot;, &quot;inadmissible&quot;, &quot;inadmissible&quot;, &quot;inadmissible&quot;, &quot;inaugurated&quot;, &quot;inaugurated&quot;, &quot;inaugurated&quot;, &quot;inaugurated&quot;, &quot;inaugurated&quot;, &quot;inaugurated&quot;, &quot;inaugurated&quot;, &quot;inaugurated&quot;, &quot;inaugurated&quot;, &quot;inauguration&quot;, &quot;inauguration&quot;, &quot;inauguration&quot;, &quot;inauguration&quot;, &quot;inauguration&quot;, &quot;inauguration&quot;, &quot;inauguration&quot;, &quot;inauguration&quot;, &quot;inauguration&quot;, &quot;inauguration&quot;, &quot;incentive&quot;, &quot;incentive&quot;, &quot;incentive&quot;, &quot;incentive&quot;, &quot;incentive&quot;, &quot;incentive&quot;, &quot;incentive&quot;, &quot;incentive&quot;, &quot;incentive&quot;, &quot;incentive&quot;, &quot;incidentally&quot;, &quot;incidentally&quot;, &quot;incidentally&quot;, &quot;incidentally&quot;, &quot;incidentally&quot;, &quot;incidentally&quot;, &quot;incidentally&quot;, &quot;incidentally&quot;, &quot;incidentally&quot;, &quot;incidentally&quot;, &quot;incidentally&quot;, &quot;incidentally&quot;, &quot;include&quot;, &quot;include&quot;, &quot;include&quot;, &quot;include&quot;, &quot;include&quot;, &quot;include&quot;, &quot;include&quot;, &quot;include&quot;, &quot;include&quot;, &quot;include&quot;, &quot;include&quot;, &quot;include&quot;, &quot;include&quot;, &quot;include&quot;, &quot;income&quot;, &quot;income&quot;, &quot;income&quot;, &quot;income&quot;, &quot;income&quot;, &quot;income&quot;, &quot;income&quot;, &quot;income&quot;, &quot;income&quot;, &quot;income&quot;, &quot;income&quot;, &quot;income&quot;, &quot;income&quot;, &quot;income&quot;, &quot;incompetent&quot;, &quot;incompetent&quot;, &quot;incompetent&quot;, &quot;incompetent&quot;, &quot;incompetent&quot;, &quot;incompetent&quot;, &quot;increase&quot;, &quot;increase&quot;, &quot;increase&quot;, &quot;increase&quot;, &quot;increase&quot;, &quot;increase&quot;, &quot;increase&quot;, &quot;increase&quot;, &quot;increase&quot;, &quot;increase&quot;, &quot;increase&quot;, &quot;increase&quot;, &quot;increase&quot;, &quot;increase&quot;, &quot;increase&quot;, &quot;increase&quot;, &quot;increase&quot;, &quot;increase&quot;, &quot;increase&quot;, &quot;increased&quot;, &quot;increased&quot;, &quot;increased&quot;, &quot;increased&quot;, &quot;increased&quot;, &quot;increased&quot;, &quot;increased&quot;, &quot;increased&quot;, &quot;increased&quot;, &quot;increased&quot;, &quot;increased&quot;, &quot;increased&quot;, &quot;increased&quot;, &quot;increased&quot;, &quot;increased&quot;, &quot;increased&quot;, &quot;increased&quot;, &quot;increased&quot;, &quot;increased&quot;, &quot;increases&quot;, &quot;increases&quot;, &quot;increases&quot;, &quot;increases&quot;, &quot;increases&quot;, &quot;increases&quot;, &quot;increases&quot;, &quot;increases&quot;, &quot;increases&quot;, &quot;increases&quot;, &quot;increases&quot;, &quot;increasingly&quot;, &quot;increasingly&quot;, &quot;increasingly&quot;, &quot;increasingly&quot;, &quot;increasingly&quot;, &quot;increasingly&quot;, &quot;increasingly&quot;, &quot;increasingly&quot;, &quot;increasingly&quot;, &quot;increasingly&quot;, &quot;increasingly&quot;, &quot;indefinitely&quot;, &quot;indefinitely&quot;, &quot;indefinitely&quot;, &quot;indefinitely&quot;, &quot;indefinitely&quot;, &quot;indefinitely&quot;, &quot;indefinitely&quot;, &quot;indefinitely&quot;, &quot;indemnity&quot;, &quot;indemnity&quot;, &quot;indemnity&quot;, &quot;indemnity&quot;, &quot;index&quot;, &quot;index&quot;, &quot;index&quot;, &quot;index&quot;, &quot;index&quot;, &quot;index&quot;, &quot;indexing&quot;, &quot;indian&quot;, &quot;indian&quot;, &quot;indian&quot;, &quot;indian&quot;, &quot;indian&quot;, &quot;indian&quot;, &quot;indian&quot;, &quot;indian&quot;, &quot;indian&quot;, &quot;indian&quot;, &quot;indian&quot;, &quot;indian&quot;, &quot;indian&quot;, &quot;indian&quot;, &quot;indiscriminate&quot;, &quot;indiscriminate&quot;, &quot;indiscriminate&quot;, &quot;indiscriminate&quot;, &quot;indiscriminate&quot;, &quot;indiscriminate&quot;, &quot;indiscriminate&quot;, &quot;indiscriminate&quot;, &quot;indispensably&quot;, &quot;indispensably&quot;, &quot;indispensably&quot;, &quot;individually&quot;, &quot;individually&quot;, &quot;individually&quot;, &quot;individually&quot;, &quot;individually&quot;, &quot;individually&quot;, &quot;individually&quot;, &quot;individually&quot;, &quot;individually&quot;, &quot;individually&quot;, &quot;individually&quot;, &quot;indomitable&quot;, &quot;indomitable&quot;, &quot;indomitable&quot;, &quot;indomitable&quot;, &quot;indomitable&quot;, &quot;indulged&quot;, &quot;indulged&quot;, &quot;indulged&quot;, &quot;indulged&quot;, &quot;industrial&quot;, &quot;industrial&quot;, &quot;industrial&quot;, &quot;industrial&quot;, &quot;industrial&quot;, &quot;industrial&quot;, &quot;industrial&quot;, &quot;industrial&quot;, &quot;industrial&quot;, &quot;industrial&quot;, &quot;industrial&quot;, &quot;industrial&quot;, &quot;industrial&quot;, &quot;industrial&quot;, &quot;industrial&quot;, &quot;industrial&quot;, &quot;industry&quot;, &quot;industry&quot;, &quot;industry&quot;, &quot;industry&quot;, &quot;industry&quot;, &quot;industry&quot;, &quot;industry&quot;, &quot;industry&quot;, &quot;industry&quot;, &quot;industry&quot;, &quot;industry&quot;, &quot;industry&quot;, &quot;industry&quot;, &quot;industry&quot;, &quot;industry&quot;, &quot;industry&quot;, &quot;industry&quot;, &quot;industry&quot;, &quot;ineffective&quot;, &quot;ineffective&quot;, &quot;ineffective&quot;, &quot;ineffective&quot;, &quot;ineffective&quot;, &quot;ineffective&quot;, &quot;inescapable&quot;, &quot;inescapable&quot;, &quot;inescapable&quot;, &quot;inescapable&quot;, &quot;infants&quot;, &quot;infants&quot;, &quot;inference&quot;, &quot;inference&quot;, &quot;inference&quot;, &quot;inference&quot;, &quot;inference&quot;, &quot;inference&quot;, &quot;infiltration&quot;, &quot;infiltration&quot;, &quot;infiltration&quot;, &quot;inflation&quot;, &quot;inflation&quot;, &quot;inflation&quot;, &quot;inflation&quot;, &quot;inflation&quot;, &quot;inflation&quot;, &quot;inflation&quot;, &quot;inflation&quot;, &quot;inflation&quot;, &quot;inflation&quot;, &quot;inflation&quot;, &quot;inflation&quot;, &quot;inflation&quot;, &quot;inflation&quot;, &quot;inflation&quot;, &quot;inflict&quot;, &quot;inflict&quot;, &quot;inflict&quot;, &quot;inflict&quot;, &quot;inflict&quot;, &quot;inflict&quot;, &quot;inflict&quot;, &quot;infrastructure&quot;, &quot;inhabitant&quot;, &quot;inhabitant&quot;, &quot;inhabitant&quot;, &quot;inhabitant&quot;, &quot;inhabitant&quot;, &quot;inhabitant&quot;, &quot;inherit&quot;, &quot;inherit&quot;, &quot;inherit&quot;, &quot;inherit&quot;, &quot;inherit&quot;, &quot;initiate&quot;, &quot;initiate&quot;, &quot;initiate&quot;, &quot;initiate&quot;, &quot;initiate&quot;, &quot;initiate&quot;, &quot;initiate&quot;, &quot;injunctions&quot;, &quot;injunctions&quot;, &quot;injunctions&quot;, &quot;injunctions&quot;, &quot;injunctions&quot;, &quot;injunctions&quot;, &quot;injuriously&quot;, &quot;injuriously&quot;, &quot;injuriously&quot;, &quot;injuriously&quot;, &quot;injuriously&quot;, &quot;injury&quot;, &quot;injury&quot;, &quot;injury&quot;, &quot;injury&quot;, &quot;injury&quot;, &quot;injury&quot;, &quot;injury&quot;, &quot;injury&quot;, &quot;injury&quot;, &quot;injury&quot;, &quot;injury&quot;, &quot;injury&quot;, &quot;injury&quot;, &quot;injury&quot;, &quot;injury&quot;, &quot;innovative&quot;, &quot;innumerable&quot;, &quot;innumerable&quot;, &quot;innumerable&quot;, &quot;innumerable&quot;, &quot;insistent&quot;, &quot;insistent&quot;, &quot;insistent&quot;, &quot;insistent&quot;, &quot;insistent&quot;, &quot;inspected&quot;, &quot;inspected&quot;, &quot;inspected&quot;, &quot;inspected&quot;, &quot;inspector&quot;, &quot;inspector&quot;, &quot;inspector&quot;, &quot;inspector&quot;, &quot;installation&quot;, &quot;installation&quot;, &quot;installation&quot;, &quot;installation&quot;, &quot;installation&quot;, &quot;installation&quot;, &quot;instead&quot;, &quot;instead&quot;, &quot;instead&quot;, &quot;instead&quot;, &quot;instead&quot;, &quot;instead&quot;, &quot;instead&quot;, &quot;instead&quot;, &quot;instead&quot;, &quot;instead&quot;, &quot;instead&quot;, &quot;instead&quot;, &quot;instead&quot;, &quot;instead&quot;, &quot;instead&quot;, &quot;instead&quot;, &quot;instead&quot;, &quot;instead&quot;, &quot;instruments&quot;, &quot;instruments&quot;, &quot;instruments&quot;, &quot;instruments&quot;, &quot;instruments&quot;, &quot;instruments&quot;, &quot;instruments&quot;, &quot;instruments&quot;, &quot;instruments&quot;, &quot;instruments&quot;, &quot;instruments&quot;, &quot;insufficient&quot;, &quot;insufficient&quot;, &quot;insufficient&quot;, &quot;insufficient&quot;, &quot;insufficient&quot;, &quot;insufficient&quot;, &quot;insufficient&quot;, &quot;insufficient&quot;, &quot;insufficient&quot;, &quot;insurrection&quot;, &quot;insurrection&quot;, &quot;insurrection&quot;, &quot;insurrection&quot;, &quot;insurrection&quot;, &quot;insurrection&quot;, &quot;insurrection&quot;, &quot;insurrection&quot;, &quot;insurrection&quot;, &quot;insurrection&quot;, &quot;integration&quot;, &quot;integration&quot;, &quot;integration&quot;, &quot;integration&quot;, &quot;integration&quot;, &quot;integrity&quot;, &quot;integrity&quot;, &quot;integrity&quot;, &quot;integrity&quot;, &quot;integrity&quot;, &quot;integrity&quot;, &quot;integrity&quot;, &quot;integrity&quot;, &quot;integrity&quot;, &quot;integrity&quot;, &quot;integrity&quot;, &quot;integrity&quot;, &quot;integrity&quot;, &quot;integrity&quot;, &quot;integrity&quot;, &quot;integrity&quot;, &quot;integrity&quot;, &quot;integrity&quot;, &quot;intelligence&quot;, &quot;intelligence&quot;, &quot;intelligence&quot;, &quot;intelligence&quot;, &quot;intelligence&quot;, &quot;intelligence&quot;, &quot;intelligence&quot;, &quot;intelligence&quot;, &quot;intelligence&quot;, &quot;intelligence&quot;, &quot;intelligence&quot;, &quot;intelligence&quot;, &quot;intelligence&quot;, &quot;intelligence&quot;, &quot;intelligence&quot;, &quot;intending&quot;, &quot;intending&quot;, &quot;intending&quot;, &quot;intending&quot;, &quot;intends&quot;, &quot;intends&quot;, &quot;intends&quot;, &quot;intends&quot;, &quot;intends&quot;, &quot;intends&quot;, &quot;intentioned&quot;, &quot;intentioned&quot;, &quot;intentioned&quot;, &quot;intentioned&quot;, &quot;intercourse&quot;, &quot;intercourse&quot;, &quot;intercourse&quot;, &quot;intercourse&quot;, &quot;intercourse&quot;, &quot;intercourse&quot;, &quot;intercourse&quot;, &quot;intercourse&quot;, &quot;intercourse&quot;, &quot;intercourse&quot;, &quot;intercourse&quot;, &quot;interests&quot;, &quot;interests&quot;, &quot;interests&quot;, &quot;interests&quot;, &quot;interests&quot;, &quot;interests&quot;, &quot;interests&quot;, &quot;interests&quot;, &quot;interests&quot;, &quot;interests&quot;, &quot;interests&quot;, &quot;interests&quot;, &quot;interests&quot;, &quot;interests&quot;, &quot;interests&quot;, &quot;interests&quot;, &quot;interests&quot;, &quot;interests&quot;, &quot;interests&quot;, &quot;international&quot;, &quot;international&quot;, &quot;international&quot;, &quot;international&quot;, &quot;international&quot;, &quot;international&quot;, &quot;international&quot;, &quot;international&quot;, &quot;international&quot;, &quot;international&quot;, &quot;international&quot;, &quot;international&quot;, &quot;international&quot;, &quot;international&quot;, &quot;international&quot;, &quot;international&quot;, &quot;international&quot;, &quot;international&quot;, &quot;international&quot;, &quot;internationally&quot;, &quot;internationally&quot;, &quot;internationally&quot;, &quot;internationally&quot;, &quot;internationally&quot;, &quot;internet&quot;, &quot;interruptions&quot;, &quot;interruptions&quot;, &quot;interruptions&quot;, &quot;interruptions&quot;, &quot;interruptions&quot;, &quot;intersection&quot;, &quot;interstate&quot;, &quot;interstate&quot;, &quot;interstate&quot;, &quot;interstate&quot;, &quot;interstate&quot;, &quot;interstate&quot;, &quot;interstate&quot;, &quot;interstate&quot;, &quot;interstate&quot;, &quot;interstate&quot;, &quot;intervening&quot;, &quot;intervening&quot;, &quot;intervening&quot;, &quot;intervening&quot;, &quot;intervening&quot;, &quot;intervening&quot;, &quot;intervening&quot;, &quot;inthe&quot;, &quot;inthe&quot;, &quot;inthe&quot;, &quot;intimidation&quot;, &quot;intimidation&quot;, &quot;intimidation&quot;, &quot;intimidation&quot;, &quot;intimidation&quot;, &quot;intimidation&quot;, &quot;intimidation&quot;, &quot;intimidation&quot;, &quot;intimidation&quot;, &quot;intricate&quot;, &quot;intricate&quot;, &quot;intricate&quot;, &quot;intricate&quot;, &quot;intrigue&quot;, &quot;intrigue&quot;, &quot;intrigue&quot;, &quot;intrigue&quot;, &quot;introduce&quot;, &quot;introduce&quot;, &quot;introduce&quot;, &quot;introduce&quot;, &quot;introduce&quot;, &quot;introduce&quot;, &quot;introduce&quot;, &quot;introduce&quot;, &quot;introduce&quot;, &quot;invaded&quot;, &quot;invaded&quot;, &quot;invaded&quot;, &quot;invaded&quot;, &quot;invaded&quot;, &quot;invaded&quot;, &quot;invaded&quot;, &quot;invaded&quot;, &quot;inventors&quot;, &quot;inventors&quot;, &quot;inventors&quot;, &quot;invested&quot;, &quot;invested&quot;, &quot;invested&quot;, &quot;invested&quot;, &quot;invested&quot;, &quot;invested&quot;, &quot;invested&quot;, &quot;invested&quot;, &quot;invested&quot;, &quot;invested&quot;, &quot;invested&quot;, &quot;invested&quot;, &quot;investment&quot;, &quot;investment&quot;, &quot;investment&quot;, &quot;investment&quot;, &quot;investment&quot;, &quot;investment&quot;, &quot;investment&quot;, &quot;investment&quot;, &quot;investment&quot;, &quot;investment&quot;, &quot;investment&quot;, &quot;investment&quot;, &quot;investment&quot;, &quot;invests&quot;, &quot;invests&quot;, &quot;invests&quot;, &quot;invests&quot;, &quot;invests&quot;, &quot;invisible&quot;, &quot;invisible&quot;, &quot;invisible&quot;, &quot;invisible&quot;, &quot;invisible&quot;, &quot;invisible&quot;, &quot;invisible&quot;, &quot;invited&quot;, &quot;invited&quot;, &quot;invited&quot;, &quot;invited&quot;, &quot;invited&quot;, &quot;invited&quot;, &quot;invited&quot;, &quot;invited&quot;, &quot;invited&quot;, &quot;invited&quot;, &quot;invited&quot;, &quot;invited&quot;, &quot;invited&quot;, &quot;invoke&quot;, &quot;invoke&quot;, &quot;invoke&quot;, &quot;invoke&quot;, &quot;invoke&quot;, &quot;invoke&quot;, &quot;invoke&quot;, &quot;invoke&quot;, &quot;iraq&quot;, &quot;iraq&quot;, &quot;iraq&quot;, &quot;iraq&quot;, &quot;iraq&quot;, &quot;iraqi&quot;, &quot;iraqi&quot;, &quot;iraqi&quot;, &quot;iraqis&quot;, &quot;irish&quot;, &quot;irish&quot;, &quot;irish&quot;, &quot;iron&quot;, &quot;iron&quot;, &quot;iron&quot;, &quot;iron&quot;, &quot;iron&quot;, &quot;iron&quot;, &quot;iron&quot;, &quot;iron&quot;, &quot;iron&quot;, &quot;iron&quot;, &quot;irredeemable&quot;, &quot;irredeemable&quot;, &quot;islamic&quot;, &quot;islamic&quot;, &quot;islamic&quot;, &quot;islands&quot;, &quot;islands&quot;, &quot;islands&quot;, &quot;islands&quot;, &quot;islands&quot;, &quot;islands&quot;, &quot;islands&quot;, &quot;islands&quot;, &quot;islands&quot;, &quot;islands&quot;, &quot;islands&quot;, &quot;islands&quot;, &quot;islands&quot;, &quot;islands&quot;, &quot;islands&quot;, &quot;islands&quot;, &quot;isolationism&quot;, &quot;isolationism&quot;, &quot;israel&quot;, &quot;israel&quot;, &quot;israel&quot;, &quot;israel&quot;, &quot;israel&quot;, &quot;israel&quot;, &quot;israel&quot;, &quot;israeli&quot;, &quot;israeli&quot;, &quot;israeli&quot;, &quot;israeli&quot;, &quot;israelis&quot;, &quot;israelis&quot;, &quot;israelis&quot;, &quot;israelis&quot;, &quot;issues&quot;, &quot;issues&quot;, &quot;issues&quot;, &quot;issues&quot;, &quot;issues&quot;, &quot;issues&quot;, &quot;issues&quot;, &quot;issues&quot;, &quot;issues&quot;, &quot;issues&quot;, &quot;issues&quot;, &quot;issues&quot;, &quot;issues&quot;, &quot;issues&quot;, &quot;issues&quot;, &quot;issues&quot;, &quot;isthmian&quot;, &quot;isthmian&quot;, &quot;isthmian&quot;, &quot;isthmian&quot;, &quot;isthmian&quot;, &quot;isthmian&quot;, &quot;isthmus&quot;, &quot;isthmus&quot;, &quot;isthmus&quot;, &quot;isthmus&quot;, &quot;isthmus&quot;, &quot;isthmus&quot;, &quot;isthmus&quot;, &quot;italy&quot;, &quot;italy&quot;, &quot;italy&quot;, &quot;italy&quot;, &quot;italy&quot;, &quot;italy&quot;, &quot;italy&quot;, &quot;italy&quot;, &quot;italy&quot;, &quot;italy&quot;, &quot;italy&quot;, &quot;italy&quot;, &quot;items&quot;, &quot;items&quot;, &quot;items&quot;, &quot;items&quot;, &quot;items&quot;, &quot;items&quot;, &quot;items&quot;, &quot;items&quot;, &quot;items&quot;, &quot;items&quot;, &quot;items&quot;, &quot;items&quot;, &quot;jack&quot;, &quot;james&quot;, &quot;james&quot;, &quot;james&quot;, &quot;james&quot;, &quot;james&quot;, &quot;james&quot;, &quot;james&quot;, &quot;james&quot;, &quot;james&quot;, &quot;james&quot;, &quot;james&quot;, &quot;japanese&quot;, &quot;japanese&quot;, &quot;japanese&quot;, &quot;japanese&quot;, &quot;japanese&quot;, &quot;japanese&quot;, &quot;japanese&quot;, &quot;jennings&quot;, &quot;jeopardize&quot;, &quot;jeopardize&quot;, &quot;jeopardize&quot;, &quot;jeopardize&quot;, &quot;jeopardize&quot;, &quot;jeopardize&quot;, &quot;jeopardize&quot;, &quot;jeopardize&quot;, &quot;jeopardize&quot;, &quot;jerry&quot;, &quot;job&quot;, &quot;job&quot;, &quot;job&quot;, &quot;job&quot;, &quot;job&quot;, &quot;job&quot;, &quot;job&quot;, &quot;job&quot;, &quot;job&quot;, &quot;job&quot;, &quot;job&quot;, &quot;job&quot;, &quot;jobs&quot;, &quot;jobs&quot;, &quot;jobs&quot;, &quot;jobs&quot;, &quot;jobs&quot;, &quot;jobs&quot;, &quot;jobs&quot;, &quot;jobs&quot;, &quot;jobs&quot;, &quot;jobs&quot;, &quot;jobs&quot;, &quot;joint&quot;, &quot;joint&quot;, &quot;joint&quot;, &quot;joint&quot;, &quot;joint&quot;, &quot;joint&quot;, &quot;joint&quot;, &quot;joint&quot;, &quot;joint&quot;, &quot;joint&quot;, &quot;joint&quot;, &quot;joint&quot;, &quot;joint&quot;, &quot;joint&quot;, &quot;joint&quot;, &quot;joint&quot;, &quot;joint&quot;, &quot;jordan&quot;, &quot;jordan&quot;, &quot;jordan&quot;, &quot;jordan&quot;, &quot;journal&quot;, &quot;journal&quot;, &quot;journal&quot;, &quot;journal&quot;, &quot;journal&quot;, &quot;journals&quot;, &quot;journals&quot;, &quot;journals&quot;, &quot;journals&quot;, &quot;journals&quot;, &quot;journals&quot;, &quot;judge&quot;, &quot;judge&quot;, &quot;judge&quot;, &quot;judge&quot;, &quot;judge&quot;, &quot;judge&quot;, &quot;judge&quot;, &quot;judge&quot;, &quot;judge&quot;, &quot;judge&quot;, &quot;judge&quot;, &quot;judge&quot;, &quot;judge&quot;, &quot;judge&quot;, &quot;judge&quot;, &quot;judge&quot;, &quot;judge&quot;, &quot;judge&quot;, &quot;judge&quot;, &quot;judicial&quot;, &quot;judicial&quot;, &quot;judicial&quot;, &quot;judicial&quot;, &quot;judicial&quot;, &quot;judicial&quot;, &quot;judicial&quot;, &quot;judicial&quot;, &quot;judicial&quot;, &quot;judicial&quot;, &quot;judicial&quot;, &quot;judicial&quot;, &quot;judicial&quot;, &quot;judicial&quot;, &quot;judicial&quot;, &quot;judicial&quot;, &quot;judiciously&quot;, &quot;judiciously&quot;, &quot;june&quot;, &quot;june&quot;, &quot;june&quot;, &quot;june&quot;, &quot;june&quot;, &quot;june&quot;, &quot;june&quot;, &quot;june&quot;, &quot;june&quot;, &quot;june&quot;, &quot;june&quot;, &quot;june&quot;, &quot;june&quot;, &quot;june&quot;, &quot;june&quot;, &quot;june&quot;, &quot;jungle&quot;, &quot;jungle&quot;, &quot;jungle&quot;, &quot;jungle&quot;, &quot;jungle&quot;, &quot;jungle&quot;, &quot;jungles&quot;, &quot;jungles&quot;, &quot;jungles&quot;, &quot;juries&quot;, &quot;juries&quot;, &quot;juries&quot;, &quot;jurisdiction&quot;, &quot;jurisdiction&quot;, &quot;jurisdiction&quot;, &quot;jurisdiction&quot;, &quot;jurisdiction&quot;, &quot;jurisdiction&quot;, &quot;jurisdiction&quot;, &quot;jurisdiction&quot;, &quot;jurisdiction&quot;, &quot;jurisdiction&quot;, &quot;jurisdiction&quot;, &quot;jurisdiction&quot;, &quot;jurors&quot;, &quot;jurors&quot;, &quot;justice&quot;, &quot;justice&quot;, &quot;justice&quot;, &quot;justice&quot;, &quot;justice&quot;, &quot;justice&quot;, &quot;justice&quot;, &quot;justice&quot;, &quot;justice&quot;, &quot;justice&quot;, &quot;justice&quot;, &quot;justice&quot;, &quot;justice&quot;, &quot;justice&quot;, &quot;justice&quot;, &quot;justice&quot;, &quot;justice&quot;, &quot;justice&quot;, &quot;justice&quot;, &quot;justices&quot;, &quot;justices&quot;, &quot;justices&quot;, &quot;justices&quot;, &quot;justices&quot;, &quot;justices&quot;, &quot;justices&quot;, &quot;justices&quot;, &quot;justified&quot;, &quot;justified&quot;, &quot;justified&quot;, &quot;justified&quot;, &quot;justified&quot;, &quot;justified&quot;, &quot;justified&quot;, &quot;justified&quot;, &quot;justified&quot;, &quot;justified&quot;, &quot;justified&quot;, &quot;justified&quot;, &quot;justified&quot;, &quot;justified&quot;, &quot;kalb&quot;, &quot;kansas&quot;, &quot;kansas&quot;, &quot;kansas&quot;, &quot;kansas&quot;, &quot;kansas&quot;, &quot;kansas&quot;, &quot;kansas&quot;, &quot;kansas&quot;, &quot;kansas&quot;, &quot;keeping&quot;, &quot;keeping&quot;, &quot;keeping&quot;, &quot;keeping&quot;, &quot;keeping&quot;, &quot;keeping&quot;, &quot;keeping&quot;, &quot;keeping&quot;, &quot;keeping&quot;, &quot;keeping&quot;, &quot;keeping&quot;, &quot;keeping&quot;, &quot;keeping&quot;, &quot;keeping&quot;, &quot;keeping&quot;, &quot;keeping&quot;, &quot;keeping&quot;, &quot;keeping&quot;, &quot;kellogg&quot;, &quot;kellogg&quot;, &quot;kellogg&quot;, &quot;kennedy&quot;, &quot;kennedy&quot;, &quot;kennedy&quot;, &quot;kennedy&quot;, &quot;kennedy&quot;, &quot;khrushchev&quot;, &quot;khrushchev&quot;, &quot;khrushchev&quot;, &quot;khrushchev&quot;, &quot;kid&quot;, &quot;kids&quot;, &quot;king&quot;, &quot;king&quot;, &quot;king&quot;, &quot;king&quot;, &quot;king&quot;, &quot;king&quot;, &quot;king&quot;, &quot;king&quot;, &quot;king&quot;, &quot;king&quot;, &quot;king&quot;, &quot;king&quot;, &quot;king&quot;, &quot;klan&quot;, &quot;klan&quot;, &quot;know&quot;, &quot;know&quot;, &quot;know&quot;, &quot;know&quot;, &quot;know&quot;, &quot;know&quot;, &quot;know&quot;, &quot;know&quot;, &quot;know&quot;, &quot;know&quot;, &quot;know&quot;, &quot;know&quot;, &quot;know&quot;, &quot;know&quot;, &quot;know&quot;, &quot;know&quot;, &quot;know&quot;, &quot;know&quot;, &quot;know&quot;, &quot;know&quot;, &quot;knowingly&quot;, &quot;knowingly&quot;, &quot;knowingly&quot;, &quot;knowingly&quot;, &quot;kondracke&quot;, &quot;kongo&quot;, &quot;kosovo&quot;, &quot;kosovo&quot;, &quot;kosygin&quot;, &quot;kosygin&quot;, &quot;kosygin&quot;, &quot;kremlin&quot;, &quot;kremlin&quot;, &quot;kremlin&quot;, &quot;kuwait&quot;, &quot;kuwait&quot;, &quot;kuwait&quot;, &quot;kuwait&quot;, &quot;labor&quot;, &quot;labor&quot;, &quot;labor&quot;, &quot;labor&quot;, &quot;labor&quot;, &quot;labor&quot;, &quot;labor&quot;, &quot;labor&quot;, &quot;labor&quot;, &quot;labor&quot;, &quot;labor&quot;, &quot;labor&quot;, &quot;labor&quot;, &quot;labor&quot;, &quot;labor&quot;, &quot;labor&quot;, &quot;labor&quot;, &quot;labor&quot;, &quot;labor&quot;, &quot;ladies&quot;, &quot;ladies&quot;, &quot;ladies&quot;, &quot;ladies&quot;, &quot;ladies&quot;, &quot;ladies&quot;, &quot;ladies&quot;, &quot;ladies&quot;, &quot;lake&quot;, &quot;lake&quot;, &quot;lake&quot;, &quot;lake&quot;, &quot;lake&quot;, &quot;lake&quot;, &quot;lake&quot;, &quot;lake&quot;, &quot;lands&quot;, &quot;lands&quot;, &quot;lands&quot;, &quot;lands&quot;, &quot;lands&quot;, &quot;lands&quot;, &quot;lands&quot;, &quot;lands&quot;, &quot;lands&quot;, &quot;lands&quot;, &quot;lands&quot;, &quot;lands&quot;, &quot;lands&quot;, &quot;lands&quot;, &quot;lands&quot;, &quot;lands&quot;, &quot;lands&quot;, &quot;lands&quot;, &quot;lands&quot;, &quot;large&quot;, &quot;large&quot;, &quot;large&quot;, &quot;large&quot;, &quot;large&quot;, &quot;large&quot;, &quot;large&quot;, &quot;large&quot;, &quot;large&quot;, &quot;large&quot;, &quot;large&quot;, &quot;large&quot;, &quot;large&quot;, &quot;large&quot;, &quot;large&quot;, &quot;large&quot;, &quot;large&quot;, &quot;large&quot;, &quot;large&quot;, &quot;laughter&quot;, &quot;laughter&quot;, &quot;laughter&quot;, &quot;laughter&quot;, &quot;laughter&quot;, &quot;laughter&quot;, &quot;launching&quot;, &quot;launching&quot;, &quot;launching&quot;, &quot;launching&quot;, &quot;law&quot;, &quot;law&quot;, &quot;law&quot;, &quot;law&quot;, &quot;law&quot;, &quot;law&quot;, &quot;law&quot;, &quot;law&quot;, &quot;law&quot;, &quot;law&quot;, &quot;law&quot;, &quot;law&quot;, &quot;law&quot;, &quot;law&quot;, &quot;law&quot;, &quot;law&quot;, &quot;law&quot;, &quot;law&quot;, &quot;law&quot;, &quot;law&quot;, &quot;lawful&quot;, &quot;lawful&quot;, &quot;lawful&quot;, &quot;lawful&quot;, &quot;lawful&quot;, &quot;lawful&quot;, &quot;lawful&quot;, &quot;lawful&quot;, &quot;lawful&quot;, &quot;lawful&quot;, &quot;lawful&quot;, &quot;lawful&quot;, &quot;lawful&quot;, &quot;lawful&quot;, &quot;lawlessness&quot;, &quot;lawlessness&quot;, &quot;lawlessness&quot;, &quot;lawlessness&quot;, &quot;lawlessness&quot;, &quot;lawlessness&quot;, &quot;lawlessness&quot;, &quot;lawlessness&quot;, &quot;lawmaking&quot;, &quot;lawmaking&quot;, &quot;laws&quot;, &quot;laws&quot;, &quot;laws&quot;, &quot;laws&quot;, &quot;laws&quot;, &quot;laws&quot;, &quot;laws&quot;, &quot;laws&quot;, &quot;laws&quot;, &quot;laws&quot;, &quot;laws&quot;, &quot;laws&quot;, &quot;laws&quot;, &quot;laws&quot;, &quot;laws&quot;, &quot;laws&quot;, &quot;laws&quot;, &quot;laws&quot;, &quot;laws&quot;, &quot;leader&quot;, &quot;leader&quot;, &quot;leader&quot;, &quot;leader&quot;, &quot;leader&quot;, &quot;leader&quot;, &quot;leader&quot;, &quot;leader&quot;, &quot;leader&quot;, &quot;leader&quot;, &quot;leader&quot;, &quot;leader&quot;, &quot;leaders&quot;, &quot;leaders&quot;, &quot;leaders&quot;, &quot;leaders&quot;, &quot;leaders&quot;, &quot;leaders&quot;, &quot;leaders&quot;, &quot;leaders&quot;, &quot;leaders&quot;, &quot;leaders&quot;, &quot;leaders&quot;, &quot;leaders&quot;, &quot;leaders&quot;, &quot;leaders&quot;, &quot;leaders&quot;, &quot;leaders&quot;, &quot;leaders&quot;, &quot;leaders&quot;, &quot;leagues&quot;, &quot;leagues&quot;, &quot;leagues&quot;, &quot;lease&quot;, &quot;lease&quot;, &quot;lease&quot;, &quot;lease&quot;, &quot;lease&quot;, &quot;lease&quot;, &quot;lease&quot;, &quot;lease&quot;, &quot;leasing&quot;, &quot;leasing&quot;, &quot;leasing&quot;, &quot;leasing&quot;, &quot;leaving&quot;, &quot;leaving&quot;, &quot;leaving&quot;, &quot;leaving&quot;, &quot;leaving&quot;, &quot;leaving&quot;, &quot;leaving&quot;, &quot;leaving&quot;, &quot;leaving&quot;, &quot;leaving&quot;, &quot;leaving&quot;, &quot;leaving&quot;, &quot;leaving&quot;, &quot;leaving&quot;, &quot;leaving&quot;, &quot;lebanese&quot;, &quot;lebanese&quot;, &quot;lebanon&quot;, &quot;lebanon&quot;, &quot;lebanon&quot;, &quot;lebanon&quot;, &quot;lebanon&quot;, &quot;lebanon&quot;, &quot;lebanon&quot;, &quot;lecompton&quot;, &quot;lecompton&quot;, &quot;legislation&quot;, &quot;legislation&quot;, &quot;legislation&quot;, &quot;legislation&quot;, &quot;legislation&quot;, &quot;legislation&quot;, &quot;legislation&quot;, &quot;legislation&quot;, &quot;legislation&quot;, &quot;legislation&quot;, &quot;legislation&quot;, &quot;legislation&quot;, &quot;legislation&quot;, &quot;legislation&quot;, &quot;legislation&quot;, &quot;legislation&quot;, &quot;legislation&quot;, &quot;legislation&quot;, &quot;legislation&quot;, &quot;legislative&quot;, &quot;legislative&quot;, &quot;legislative&quot;, &quot;legislative&quot;, &quot;legislative&quot;, &quot;legislative&quot;, &quot;legislative&quot;, &quot;legislative&quot;, &quot;legislative&quot;, &quot;legislative&quot;, &quot;legislative&quot;, &quot;legislative&quot;, &quot;legislative&quot;, &quot;legislative&quot;, &quot;legislative&quot;, &quot;legislative&quot;, &quot;legislative&quot;, &quot;legislatures&quot;, &quot;legislatures&quot;, &quot;legislatures&quot;, &quot;legislatures&quot;, &quot;legislatures&quot;, &quot;legislatures&quot;, &quot;legislatures&quot;, &quot;legislatures&quot;, &quot;legislatures&quot;, &quot;legislatures&quot;, &quot;legitimacy&quot;, &quot;legitimacy&quot;, &quot;legitimacy&quot;, &quot;legitimacy&quot;, &quot;legitimacy&quot;, &quot;legitimately&quot;, &quot;legitimately&quot;, &quot;legitimately&quot;, &quot;legitimately&quot;, &quot;legitimately&quot;, &quot;legitimately&quot;, &quot;lehrer&quot;, &quot;lend&quot;, &quot;lend&quot;, &quot;lend&quot;, &quot;lend&quot;, &quot;lend&quot;, &quot;lend&quot;, &quot;lend&quot;, &quot;lend&quot;, &quot;lend&quot;, &quot;let&quot;, &quot;let&quot;, &quot;let&quot;, &quot;let&quot;, &quot;let&quot;, &quot;let&quot;, &quot;let&quot;, &quot;let&quot;, &quot;let&quot;, &quot;let&quot;, &quot;let&quot;, &quot;let&quot;, &quot;let&quot;, &quot;let&quot;, &quot;let&quot;, &quot;let&quot;, &quot;let&quot;, &quot;let&quot;, &quot;let&quot;, &quot;letting&quot;, &quot;letting&quot;, &quot;letting&quot;, &quot;letting&quot;, &quot;letting&quot;, &quot;letting&quot;, &quot;lewis&quot;, &quot;lewis&quot;, &quot;lewis&quot;, &quot;lewis&quot;, &quot;lewis&quot;, &quot;lexington&quot;, &quot;lexington&quot;, &quot;lexington&quot;, &quot;lexington&quot;, &quot;liabilities&quot;, &quot;liabilities&quot;, &quot;liabilities&quot;, &quot;liabilities&quot;, &quot;liabilities&quot;, &quot;liberalism&quot;, &quot;liberalism&quot;, &quot;liberation&quot;, &quot;liberation&quot;, &quot;liberation&quot;, &quot;liberation&quot;, &quot;liberation&quot;, &quot;liberation&quot;, &quot;liberation&quot;, &quot;liberties&quot;, &quot;liberties&quot;, &quot;liberties&quot;, &quot;liberties&quot;, &quot;liberties&quot;, &quot;liberties&quot;, &quot;liberties&quot;, &quot;liberties&quot;, &quot;liberties&quot;, &quot;liberties&quot;, &quot;liberties&quot;, &quot;liberties&quot;, &quot;liberty&quot;, &quot;liberty&quot;, &quot;liberty&quot;, &quot;liberty&quot;, &quot;liberty&quot;, &quot;liberty&quot;, &quot;liberty&quot;, &quot;liberty&quot;, &quot;liberty&quot;, &quot;liberty&quot;, &quot;liberty&quot;, &quot;liberty&quot;, &quot;liberty&quot;, &quot;liberty&quot;, &quot;liberty&quot;, &quot;liberty&quot;, &quot;liberty&quot;, &quot;liberty&quot;, &quot;license&quot;, &quot;license&quot;, &quot;license&quot;, &quot;license&quot;, &quot;license&quot;, &quot;license&quot;, &quot;license&quot;, &quot;license&quot;, &quot;license&quot;, &quot;licensing&quot;, &quot;licensing&quot;, &quot;licensing&quot;, &quot;licensing&quot;, &quot;lien&quot;, &quot;lieutenants&quot;, &quot;lieutenants&quot;, &quot;lieutenants&quot;, &quot;lieutenants&quot;, &quot;life&quot;, &quot;life&quot;, &quot;life&quot;, &quot;life&quot;, &quot;life&quot;, &quot;life&quot;, &quot;life&quot;, &quot;life&quot;, &quot;life&quot;, &quot;life&quot;, &quot;life&quot;, &quot;life&quot;, &quot;life&quot;, &quot;life&quot;, &quot;life&quot;, &quot;life&quot;, &quot;life&quot;, &quot;life&quot;, &quot;life&quot;, &quot;life&quot;, &quot;lighted&quot;, &quot;lighted&quot;, &quot;lighted&quot;, &quot;lighted&quot;, &quot;lighted&quot;, &quot;lighted&quot;, &quot;lighted&quot;, &quot;lighted&quot;, &quot;lighted&quot;, &quot;lighted&quot;, &quot;lighted&quot;, &quot;limits&quot;, &quot;limits&quot;, &quot;limits&quot;, &quot;limits&quot;, &quot;limits&quot;, &quot;limits&quot;, &quot;limits&quot;, &quot;limits&quot;, &quot;limits&quot;, &quot;limits&quot;, &quot;limits&quot;, &quot;limits&quot;, &quot;limits&quot;, &quot;limits&quot;, &quot;limits&quot;, &quot;literal&quot;, &quot;literal&quot;, &quot;literal&quot;, &quot;literal&quot;, &quot;literal&quot;, &quot;literature&quot;, &quot;literature&quot;, &quot;literature&quot;, &quot;literature&quot;, &quot;literature&quot;, &quot;lithuania&quot;, &quot;lithuania&quot;, &quot;lithuania&quot;, &quot;litigation&quot;, &quot;litigation&quot;, &quot;litigation&quot;, &quot;litigation&quot;, &quot;litigation&quot;, &quot;litigation&quot;, &quot;litigation&quot;, &quot;litigation&quot;, &quot;live&quot;, &quot;live&quot;, &quot;live&quot;, &quot;live&quot;, &quot;live&quot;, &quot;live&quot;, &quot;live&quot;, &quot;live&quot;, &quot;live&quot;, &quot;live&quot;, &quot;live&quot;, &quot;live&quot;, &quot;live&quot;, &quot;live&quot;, &quot;live&quot;, &quot;live&quot;, &quot;live&quot;, &quot;live&quot;, &quot;live&quot;, &quot;lively&quot;, &quot;lively&quot;, &quot;lively&quot;, &quot;lively&quot;, &quot;lively&quot;, &quot;livestock&quot;, &quot;livestock&quot;, &quot;livestock&quot;, &quot;livestock&quot;, &quot;livestock&quot;, &quot;livestock&quot;, &quot;ll&quot;, &quot;ll&quot;, &quot;ll&quot;, &quot;ll&quot;, &quot;ll&quot;, &quot;ll&quot;, &quot;ll&quot;, &quot;ll&quot;, &quot;ll&quot;, &quot;lloyd&quot;, &quot;lloyd&quot;, &quot;lloyd&quot;, &quot;lobbyists&quot;, &quot;local&quot;, &quot;local&quot;, &quot;local&quot;, &quot;local&quot;, &quot;local&quot;, &quot;local&quot;, &quot;local&quot;, &quot;local&quot;, &quot;local&quot;, &quot;local&quot;, &quot;local&quot;, &quot;local&quot;, &quot;local&quot;, &quot;local&quot;, &quot;local&quot;, &quot;local&quot;, &quot;local&quot;, &quot;local&quot;, &quot;local&quot;, &quot;located&quot;, &quot;located&quot;, &quot;located&quot;, &quot;located&quot;, &quot;located&quot;, &quot;located&quot;, &quot;located&quot;, &quot;located&quot;, &quot;located&quot;, &quot;locks&quot;, &quot;locks&quot;, &quot;locks&quot;, &quot;loomis&quot;, &quot;lumber&quot;, &quot;lumber&quot;, &quot;lumber&quot;, &quot;lumber&quot;, &quot;lumber&quot;, &quot;lumber&quot;, &quot;luther&quot;, &quot;luther&quot;, &quot;luxuries&quot;, &quot;luxuries&quot;, &quot;luxuries&quot;, &quot;luxuries&quot;, &quot;luxuries&quot;, &quot;luxuries&quot;, &quot;luxuries&quot;, &quot;machinery&quot;, &quot;machinery&quot;, &quot;machinery&quot;, &quot;machinery&quot;, &quot;machinery&quot;, &quot;machinery&quot;, &quot;machinery&quot;, &quot;machinery&quot;, &quot;machinery&quot;, &quot;machinery&quot;, &quot;machinery&quot;, &quot;machinery&quot;, &quot;machinery&quot;, &quot;machinery&quot;, &quot;magic&quot;, &quot;magic&quot;, &quot;magic&quot;, &quot;magic&quot;, &quot;magistrate&quot;, &quot;magistrate&quot;, &quot;magistrate&quot;, &quot;magistrate&quot;, &quot;magistrate&quot;, &quot;magistrate&quot;, &quot;magistrate&quot;, &quot;mainly&quot;, &quot;mainly&quot;, &quot;mainly&quot;, &quot;mainly&quot;, &quot;mainly&quot;, &quot;mainly&quot;, &quot;mainly&quot;, &quot;mainly&quot;, &quot;mainly&quot;, &quot;mainstream&quot;, &quot;mainstream&quot;, &quot;maintains&quot;, &quot;maintains&quot;, &quot;maintains&quot;, &quot;maintains&quot;, &quot;maintains&quot;, &quot;maintains&quot;, &quot;malaria&quot;, &quot;malaria&quot;, &quot;malmros&quot;, &quot;man&quot;, &quot;man&quot;, &quot;man&quot;, &quot;man&quot;, &quot;man&quot;, &quot;man&quot;, &quot;man&quot;, &quot;man&quot;, &quot;man&quot;, &quot;man&quot;, &quot;man&quot;, &quot;man&quot;, &quot;man&quot;, &quot;man&quot;, &quot;man&quot;, &quot;man&quot;, &quot;man&quot;, &quot;man&quot;, &quot;man&quot;, &quot;manchuria&quot;, &quot;manchuria&quot;, &quot;manchuria&quot;, &quot;mandatory&quot;, &quot;mandatory&quot;, &quot;mandatory&quot;, &quot;mandatory&quot;, &quot;mandatory&quot;, &quot;maneuvers&quot;, &quot;maneuvers&quot;, &quot;maneuvers&quot;, &quot;maneuvers&quot;, &quot;mankind&quot;, &quot;mankind&quot;, &quot;mankind&quot;, &quot;mankind&quot;, &quot;mankind&quot;, &quot;mankind&quot;, &quot;mankind&quot;, &quot;mankind&quot;, &quot;mankind&quot;, &quot;mankind&quot;, &quot;mankind&quot;, &quot;mankind&quot;, &quot;mankind&quot;, &quot;mankind&quot;, &quot;mankind&quot;, &quot;manly&quot;, &quot;manly&quot;, &quot;manly&quot;, &quot;manpower&quot;, &quot;manpower&quot;, &quot;manpower&quot;, &quot;manpower&quot;, &quot;manpower&quot;, &quot;manufacturers&quot;, &quot;manufacturers&quot;, &quot;manufacturers&quot;, &quot;manufacturers&quot;, &quot;manufacturers&quot;, &quot;manufacturers&quot;, &quot;manufacturers&quot;, &quot;manufacturers&quot;, &quot;manufacturers&quot;, &quot;manufactures&quot;, &quot;manufactures&quot;, &quot;manufactures&quot;, &quot;manufactures&quot;, &quot;manufactures&quot;, &quot;manufactures&quot;, &quot;manufactures&quot;, &quot;manufactures&quot;, &quot;manufactures&quot;, &quot;manufacturing&quot;, &quot;manufacturing&quot;, &quot;manufacturing&quot;, &quot;manufacturing&quot;, &quot;manufacturing&quot;, &quot;manufacturing&quot;, &quot;manufacturing&quot;, &quot;marching&quot;, &quot;marching&quot;, &quot;marching&quot;, &quot;marching&quot;, &quot;marching&quot;, &quot;marching&quot;, &quot;marching&quot;, &quot;marine&quot;, &quot;marine&quot;, &quot;marine&quot;, &quot;marine&quot;, &quot;marine&quot;, &quot;marine&quot;, &quot;marine&quot;, &quot;marine&quot;, &quot;marine&quot;, &quot;marine&quot;, &quot;marine&quot;, &quot;marines&quot;, &quot;marines&quot;, &quot;marines&quot;, &quot;marines&quot;, &quot;marines&quot;, &quot;marines&quot;, &quot;marines&quot;, &quot;marines&quot;, &quot;marines&quot;, &quot;marines&quot;, &quot;marines&quot;, &quot;marines&quot;, &quot;marketing&quot;, &quot;marketing&quot;, &quot;marketing&quot;, &quot;marking&quot;, &quot;marking&quot;, &quot;marking&quot;, &quot;marking&quot;, &quot;marking&quot;, &quot;marking&quot;, &quot;marks&quot;, &quot;marks&quot;, &quot;marks&quot;, &quot;marks&quot;, &quot;marks&quot;, &quot;marks&quot;, &quot;marks&quot;, &quot;marks&quot;, &quot;marks&quot;, &quot;marks&quot;, &quot;marks&quot;, &quot;marshal&quot;, &quot;marshal&quot;, &quot;marshal&quot;, &quot;marshal&quot;, &quot;marshal&quot;, &quot;marshal&quot;, &quot;marshal&quot;, &quot;marshal&quot;, &quot;martin&quot;, &quot;martin&quot;, &quot;martin&quot;, &quot;martin&quot;, &quot;martin&quot;, &quot;marx&quot;, &quot;marx&quot;, &quot;marx&quot;, &quot;marx&quot;, &quot;mashek&quot;, &quot;masters&quot;, &quot;masters&quot;, &quot;masters&quot;, &quot;masters&quot;, &quot;masters&quot;, &quot;masters&quot;, &quot;masters&quot;, &quot;masters&quot;, &quot;match&quot;, &quot;match&quot;, &quot;match&quot;, &quot;match&quot;, &quot;match&quot;, &quot;match&quot;, &quot;matches&quot;, &quot;matches&quot;, &quot;matches&quot;, &quot;matches&quot;, &quot;math&quot;, &quot;matsu&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;matter&quot;, &quot;mature&quot;, &quot;mature&quot;, &quot;mature&quot;, &quot;mature&quot;, &quot;mature&quot;, &quot;mature&quot;, &quot;maybe&quot;, &quot;maybe&quot;, &quot;maybe&quot;, &quot;maybe&quot;, &quot;maybe&quot;, &quot;maybe&quot;, &quot;maybe&quot;, &quot;maybe&quot;, &quot;mayor&quot;, &quot;mayor&quot;, &quot;mayor&quot;, &quot;mayor&quot;, &quot;mayor&quot;, &quot;mayor&quot;, &quot;mayor&quot;, &quot;mayor&quot;, &quot;mayor&quot;, &quot;mccain&quot;, &quot;mcgee&quot;, &quot;mcnamara&quot;, &quot;mcnamara&quot;, &quot;mcnamara&quot;, &quot;meager&quot;, &quot;meager&quot;, &quot;meager&quot;, &quot;meal&quot;, &quot;meal&quot;, &quot;meal&quot;, &quot;meaningful&quot;, &quot;meaningful&quot;, &quot;meaningful&quot;, &quot;meaningful&quot;, &quot;meaningful&quot;, &quot;measured&quot;, &quot;measured&quot;, &quot;measured&quot;, &quot;measured&quot;, &quot;measured&quot;, &quot;measured&quot;, &quot;measured&quot;, &quot;measured&quot;, &quot;measured&quot;, &quot;measured&quot;, &quot;mechanism&quot;, &quot;mechanism&quot;, &quot;mechanism&quot;, &quot;mechanism&quot;, &quot;mechanism&quot;, &quot;mechanism&quot;, &quot;mechanisms&quot;, &quot;mechanisms&quot;, &quot;mechanisms&quot;, &quot;mechanisms&quot;, &quot;medicaid&quot;, &quot;medicare&quot;, &quot;medicare&quot;, &quot;mediterranean&quot;, &quot;mediterranean&quot;, &quot;mediterranean&quot;, &quot;mediterranean&quot;, &quot;mediterranean&quot;, &quot;mediterranean&quot;, &quot;mediterranean&quot;, &quot;mediterranean&quot;, &quot;meet&quot;, &quot;meet&quot;, &quot;meet&quot;, &quot;meet&quot;, &quot;meet&quot;, &quot;meet&quot;, &quot;meet&quot;, &quot;meet&quot;, &quot;meet&quot;, &quot;meet&quot;, &quot;meet&quot;, &quot;meet&quot;, &quot;meet&quot;, &quot;meet&quot;, &quot;meet&quot;, &quot;meet&quot;, &quot;meet&quot;, &quot;meet&quot;, &quot;meet&quot;, &quot;members&quot;, &quot;members&quot;, &quot;members&quot;, &quot;members&quot;, &quot;members&quot;, &quot;members&quot;, &quot;members&quot;, &quot;members&quot;, &quot;members&quot;, &quot;members&quot;, &quot;members&quot;, &quot;members&quot;, &quot;members&quot;, &quot;members&quot;, &quot;members&quot;, &quot;members&quot;, &quot;members&quot;, &quot;members&quot;, &quot;members&quot;, &quot;memory&quot;, &quot;memory&quot;, &quot;memory&quot;, &quot;memory&quot;, &quot;memory&quot;, &quot;memory&quot;, &quot;memory&quot;, &quot;memory&quot;, &quot;memory&quot;, &quot;men&quot;, &quot;men&quot;, &quot;men&quot;, &quot;men&quot;, &quot;men&quot;, &quot;men&quot;, &quot;men&quot;, &quot;men&quot;, &quot;men&quot;, &quot;men&quot;, &quot;men&quot;, &quot;men&quot;, &quot;men&quot;, &quot;men&quot;, &quot;men&quot;, &quot;men&quot;, &quot;men&quot;, &quot;men&quot;, &quot;men&quot;, &quot;men&quot;, &quot;menace&quot;, &quot;menace&quot;, &quot;menace&quot;, &quot;menace&quot;, &quot;menace&quot;, &quot;menace&quot;, &quot;menace&quot;, &quot;menace&quot;, &quot;menace&quot;, &quot;menace&quot;, &quot;merit&quot;, &quot;merit&quot;, &quot;merit&quot;, &quot;merit&quot;, &quot;merit&quot;, &quot;merit&quot;, &quot;merit&quot;, &quot;merit&quot;, &quot;merit&quot;, &quot;merit&quot;, &quot;merits&quot;, &quot;merits&quot;, &quot;merits&quot;, &quot;merits&quot;, &quot;merits&quot;, &quot;merits&quot;, &quot;merits&quot;, &quot;merits&quot;, &quot;merits&quot;, &quot;merits&quot;, &quot;merits&quot;, &quot;metal&quot;, &quot;metal&quot;, &quot;metal&quot;, &quot;metal&quot;, &quot;metal&quot;, &quot;metal&quot;, &quot;mexican&quot;, &quot;mexican&quot;, &quot;mexican&quot;, &quot;mexican&quot;, &quot;mexican&quot;, &quot;mexican&quot;, &quot;mexican&quot;, &quot;mexican&quot;, &quot;mexican&quot;, &quot;mexican&quot;, &quot;mexican&quot;, &quot;mexicans&quot;, &quot;mexicans&quot;, &quot;mexicans&quot;, &quot;mexicans&quot;, &quot;mexicans&quot;, &quot;mexicans&quot;, &quot;mexico&quot;, &quot;mexico&quot;, &quot;mexico&quot;, &quot;mexico&quot;, &quot;mexico&quot;, &quot;mexico&quot;, &quot;mexico&quot;, &quot;mexico&quot;, &quot;mexico&quot;, &quot;mexico&quot;, &quot;mexico&quot;, &quot;mexico&quot;, &quot;mexico&quot;, &quot;mexico&quot;, &quot;mexico&quot;, &quot;mexico&quot;, &quot;mexico&quot;, &quot;michigan&quot;, &quot;michigan&quot;, &quot;michigan&quot;, &quot;michigan&quot;, &quot;michigan&quot;, &quot;michigan&quot;, &quot;michigan&quot;, &quot;michigan&quot;, &quot;middle&quot;, &quot;middle&quot;, &quot;middle&quot;, &quot;middle&quot;, &quot;middle&quot;, &quot;middle&quot;, &quot;middle&quot;, &quot;middle&quot;, &quot;middle&quot;, &quot;middle&quot;, &quot;middle&quot;, &quot;middle&quot;, &quot;middle&quot;, &quot;middle&quot;, &quot;midway&quot;, &quot;midway&quot;, &quot;midway&quot;, &quot;midway&quot;, &quot;midway&quot;, &quot;mild&quot;, &quot;mild&quot;, &quot;mild&quot;, &quot;mild&quot;, &quot;mile&quot;, &quot;mile&quot;, &quot;mile&quot;, &quot;mile&quot;, &quot;mile&quot;, &quot;mile&quot;, &quot;mile&quot;, &quot;mile&quot;, &quot;mile&quot;, &quot;mile&quot;, &quot;mile&quot;, &quot;mile&quot;, &quot;military&quot;, &quot;military&quot;, &quot;military&quot;, &quot;military&quot;, &quot;military&quot;, &quot;military&quot;, &quot;military&quot;, &quot;military&quot;, &quot;military&quot;, &quot;military&quot;, &quot;military&quot;, &quot;military&quot;, &quot;military&quot;, &quot;military&quot;, &quot;military&quot;, &quot;military&quot;, &quot;military&quot;, &quot;military&quot;, &quot;military&quot;, &quot;milosevic&quot;, &quot;milosevic&quot;, &quot;miner&quot;, &quot;miner&quot;, &quot;miner&quot;, &quot;mingled&quot;, &quot;mingled&quot;, &quot;mingled&quot;, &quot;mingled&quot;, &quot;mingled&quot;, &quot;minh&quot;, &quot;minister&quot;, &quot;minister&quot;, &quot;minister&quot;, &quot;minister&quot;, &quot;minister&quot;, &quot;minister&quot;, &quot;minister&quot;, &quot;minister&quot;, &quot;minister&quot;, &quot;minister&quot;, &quot;minister&quot;, &quot;minister&quot;, &quot;minister&quot;, &quot;minister&quot;, &quot;minister&quot;, &quot;minister&quot;, &quot;minister&quot;, &quot;minister&quot;, &quot;minor&quot;, &quot;minor&quot;, &quot;minor&quot;, &quot;minor&quot;, &quot;minor&quot;, &quot;minor&quot;, &quot;minor&quot;, &quot;minor&quot;, &quot;minor&quot;, &quot;minor&quot;, &quot;minor&quot;, &quot;minorities&quot;, &quot;minorities&quot;, &quot;minorities&quot;, &quot;minorities&quot;, &quot;minorities&quot;, &quot;minorities&quot;, &quot;minorities&quot;, &quot;minorities&quot;, &quot;minorities&quot;, &quot;minorities&quot;, &quot;mints&quot;, &quot;mints&quot;, &quot;miserable&quot;, &quot;miserable&quot;, &quot;miserable&quot;, &quot;miserable&quot;, &quot;missiles&quot;, &quot;missiles&quot;, &quot;missiles&quot;, &quot;missiles&quot;, &quot;missiles&quot;, &quot;missiles&quot;, &quot;missiles&quot;, &quot;missionaries&quot;, &quot;missouri&quot;, &quot;missouri&quot;, &quot;missouri&quot;, &quot;missouri&quot;, &quot;missouri&quot;, &quot;missouri&quot;, &quot;missouri&quot;, &quot;missouri&quot;, &quot;missouri&quot;, &quot;missouri&quot;, &quot;missouri&quot;, &quot;missouri&quot;, &quot;missouri&quot;, &quot;mobilized&quot;, &quot;mobilized&quot;, &quot;mobilized&quot;, &quot;mobilized&quot;, &quot;momentous&quot;, &quot;momentous&quot;, &quot;momentous&quot;, &quot;momentous&quot;, &quot;momentous&quot;, &quot;momentous&quot;, &quot;momentous&quot;, &quot;momentous&quot;, &quot;monarchy&quot;, &quot;monarchy&quot;, &quot;monarchy&quot;, &quot;monarchy&quot;, &quot;monarchy&quot;, &quot;monitor&quot;, &quot;monitor&quot;, &quot;monitor&quot;, &quot;monopoly&quot;, &quot;monopoly&quot;, &quot;monopoly&quot;, &quot;monopoly&quot;, &quot;monopoly&quot;, &quot;monopoly&quot;, &quot;monopoly&quot;, &quot;monopoly&quot;, &quot;monopoly&quot;, &quot;monopoly&quot;, &quot;monopoly&quot;, &quot;moral&quot;, &quot;moral&quot;, &quot;moral&quot;, &quot;moral&quot;, &quot;moral&quot;, &quot;moral&quot;, &quot;moral&quot;, &quot;moral&quot;, &quot;moral&quot;, &quot;moral&quot;, &quot;moral&quot;, &quot;moral&quot;, &quot;moral&quot;, &quot;moral&quot;, &quot;moral&quot;, &quot;moral&quot;, &quot;morgan&quot;, &quot;morgan&quot;, &quot;morning&quot;, &quot;morning&quot;, &quot;morning&quot;, &quot;morning&quot;, &quot;morning&quot;, &quot;morning&quot;, &quot;morning&quot;, &quot;morning&quot;, &quot;morning&quot;, &quot;morning&quot;, &quot;morning&quot;, &quot;morning&quot;, &quot;morning&quot;, &quot;morning&quot;, &quot;morning&quot;, &quot;morning&quot;, &quot;moscow&quot;, &quot;moscow&quot;, &quot;moscow&quot;, &quot;moscow&quot;, &quot;moscow&quot;, &quot;moscow&quot;, &quot;moscow&quot;, &quot;motivated&quot;, &quot;motivated&quot;, &quot;motivated&quot;, &quot;motivated&quot;, &quot;motivated&quot;, &quot;motivated&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;mr&quot;, &quot;ms&quot;, &quot;ms&quot;, &quot;ms&quot;, &quot;multilateral&quot;, &quot;multilateral&quot;, &quot;multilateral&quot;, &quot;multinational&quot;, &quot;multinational&quot;, &quot;multinational&quot;, &quot;multinational&quot;, &quot;murderers&quot;, &quot;murderers&quot;, &quot;murderers&quot;, &quot;murderers&quot;, &quot;murderers&quot;, &quot;murderers&quot;, &quot;murderous&quot;, &quot;murderous&quot;, &quot;murderous&quot;, &quot;murderous&quot;, &quot;murderous&quot;, &quot;murderous&quot;, &quot;murders&quot;, &quot;murders&quot;, &quot;murders&quot;, &quot;murders&quot;, &quot;murders&quot;, &quot;muscle&quot;, &quot;muscle&quot;, &quot;muscle&quot;, &quot;muscle&quot;, &quot;muster&quot;, &quot;muster&quot;, &quot;muster&quot;, &quot;muster&quot;, &quot;muster&quot;, &quot;muster&quot;, &quot;mustered&quot;, &quot;mustered&quot;, &quot;mustered&quot;, &quot;mustered&quot;, &quot;mustered&quot;, &quot;mustered&quot;, &quot;mustered&quot;, &quot;naked&quot;, &quot;naked&quot;, &quot;naked&quot;, &quot;naked&quot;, &quot;naked&quot;, &quot;naked&quot;, &quot;nam&quot;, &quot;nam&quot;, &quot;nam&quot;, &quot;nam&quot;, &quot;nam&quot;, &quot;nam&quot;, &quot;nancy&quot;, &quot;nancy&quot;, &quot;nancy&quot;, &quot;nancy&quot;, &quot;napoleon&quot;, &quot;napoleon&quot;, &quot;nashville&quot;, &quot;nashville&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;nation&quot;, &quot;national&quot;, &quot;national&quot;, &quot;national&quot;, &quot;national&quot;, &quot;national&quot;, &quot;national&quot;, &quot;national&quot;, &quot;national&quot;, &quot;national&quot;, &quot;national&quot;, &quot;national&quot;, &quot;national&quot;, &quot;national&quot;, &quot;national&quot;, &quot;national&quot;, &quot;national&quot;, &quot;national&quot;, &quot;national&quot;, &quot;national&quot;, &quot;national&quot;, &quot;nationalities&quot;, &quot;nationalities&quot;, &quot;nationalities&quot;, &quot;nationalities&quot;, &quot;nationality&quot;, &quot;nationality&quot;, &quot;nationality&quot;, &quot;nationality&quot;, &quot;nationality&quot;, &quot;nationality&quot;, &quot;nationality&quot;, &quot;nationality&quot;, &quot;nations&quot;, &quot;nations&quot;, &quot;nations&quot;, &quot;nations&quot;, &quot;nations&quot;, &quot;nations&quot;, &quot;nations&quot;, &quot;nations&quot;, &quot;nations&quot;, &quot;nations&quot;, &quot;nations&quot;, &quot;nations&quot;, &quot;nations&quot;, &quot;nations&quot;, &quot;nations&quot;, &quot;nations&quot;, &quot;nations&quot;, &quot;nations&quot;, &quot;nations&quot;, &quot;nationwide&quot;, &quot;nationwide&quot;, &quot;nationwide&quot;, &quot;nationwide&quot;, &quot;nationwide&quot;, &quot;nationwide&quot;, &quot;natives&quot;, &quot;natives&quot;, &quot;natives&quot;, &quot;natives&quot;, &quot;nato&quot;, &quot;nato&quot;, &quot;nato&quot;, &quot;nato&quot;, &quot;naturalized&quot;, &quot;naturalized&quot;, &quot;naturalized&quot;, &quot;naught&quot;, &quot;naught&quot;, &quot;naught&quot;, &quot;naught&quot;, &quot;navigating&quot;, &quot;navigating&quot;, &quot;navigation&quot;, &quot;navigation&quot;, &quot;navigation&quot;, &quot;navigation&quot;, &quot;navigation&quot;, &quot;navigation&quot;, &quot;navigation&quot;, &quot;navigation&quot;, &quot;navigation&quot;, &quot;navigation&quot;, &quot;navy&quot;, &quot;navy&quot;, &quot;navy&quot;, &quot;navy&quot;, &quot;navy&quot;, &quot;navy&quot;, &quot;navy&quot;, &quot;navy&quot;, &quot;navy&quot;, &quot;navy&quot;, &quot;navy&quot;, &quot;navy&quot;, &quot;navy&quot;, &quot;navy&quot;, &quot;navy&quot;, &quot;navy&quot;, &quot;navy&quot;, &quot;navy&quot;, &quot;nazi&quot;, &quot;nazi&quot;, &quot;nazi&quot;, &quot;nazi&quot;, &quot;nazi&quot;, &quot;nazis&quot;, &quot;nazis&quot;, &quot;nazis&quot;, &quot;nebraska&quot;, &quot;nebraska&quot;, &quot;nebraska&quot;, &quot;nebraska&quot;, &quot;nebraska&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;necessary&quot;, &quot;need&quot;, &quot;need&quot;, &quot;need&quot;, &quot;need&quot;, &quot;need&quot;, &quot;need&quot;, &quot;need&quot;, &quot;need&quot;, &quot;need&quot;, &quot;need&quot;, &quot;need&quot;, &quot;need&quot;, &quot;need&quot;, &quot;need&quot;, &quot;need&quot;, &quot;need&quot;, &quot;need&quot;, &quot;need&quot;, &quot;need&quot;, &quot;needed&quot;, &quot;needed&quot;, &quot;needed&quot;, &quot;needed&quot;, &quot;needed&quot;, &quot;needed&quot;, &quot;needed&quot;, &quot;needed&quot;, &quot;needed&quot;, &quot;needed&quot;, &quot;needed&quot;, &quot;needed&quot;, &quot;needed&quot;, &quot;needed&quot;, &quot;needed&quot;, &quot;needed&quot;, &quot;needed&quot;, &quot;needed&quot;, &quot;needs&quot;, &quot;needs&quot;, &quot;needs&quot;, &quot;needs&quot;, &quot;needs&quot;, &quot;needs&quot;, &quot;needs&quot;, &quot;needs&quot;, &quot;needs&quot;, &quot;needs&quot;, &quot;needs&quot;, &quot;needs&quot;, &quot;needs&quot;, &quot;needs&quot;, &quot;needs&quot;, &quot;needs&quot;, &quot;needs&quot;, &quot;needs&quot;, &quot;needs&quot;, &quot;negligence&quot;, &quot;negligence&quot;, &quot;negligence&quot;, &quot;negligence&quot;, &quot;negligence&quot;, &quot;negro&quot;, &quot;negro&quot;, &quot;negro&quot;, &quot;negro&quot;, &quot;negro&quot;, &quot;negro&quot;, &quot;negro&quot;, &quot;negro&quot;, &quot;negro&quot;, &quot;negro&quot;, &quot;negro&quot;, &quot;negro&quot;, &quot;negroes&quot;, &quot;negroes&quot;, &quot;negroes&quot;, &quot;negroes&quot;, &quot;negroes&quot;, &quot;negroes&quot;, &quot;negroes&quot;, &quot;negroes&quot;, &quot;negroes&quot;, &quot;negroes&quot;, &quot;neighbors&quot;, &quot;neighbors&quot;, &quot;neighbors&quot;, &quot;neighbors&quot;, &quot;neighbors&quot;, &quot;neighbors&quot;, &quot;neighbors&quot;, &quot;neighbors&quot;, &quot;neighbors&quot;, &quot;neighbors&quot;, &quot;neighbors&quot;, &quot;neighbors&quot;, &quot;neighbors&quot;, &quot;neighbors&quot;, &quot;neighbors&quot;, &quot;neighbors&quot;, &quot;neill&quot;, &quot;neill&quot;, &quot;neutral&quot;, &quot;neutral&quot;, &quot;neutral&quot;, &quot;neutral&quot;, &quot;neutral&quot;, &quot;neutral&quot;, &quot;neutral&quot;, &quot;neutral&quot;, &quot;neutral&quot;, &quot;neutral&quot;, &quot;neutral&quot;, &quot;neutral&quot;, &quot;neutrals&quot;, &quot;neutrals&quot;, &quot;neutrals&quot;, &quot;neutrals&quot;, &quot;neutrals&quot;, &quot;neutrals&quot;, &quot;neutrals&quot;, &quot;new&quot;, &quot;new&quot;, &quot;new&quot;, &quot;new&quot;, &quot;new&quot;, &quot;new&quot;, &quot;new&quot;, &quot;new&quot;, &quot;new&quot;, &quot;new&quot;, &quot;new&quot;, &quot;new&quot;, &quot;new&quot;, &quot;new&quot;, &quot;new&quot;, &quot;new&quot;, &quot;new&quot;, &quot;new&quot;, &quot;new&quot;, &quot;new&quot;, &quot;newman&quot;, &quot;newman&quot;, &quot;nicaraguan&quot;, &quot;nicaraguan&quot;, &quot;nicaraguan&quot;, &quot;nicaraguan&quot;, &quot;nineteenth&quot;, &quot;nineteenth&quot;, &quot;nineteenth&quot;, &quot;nixon&quot;, &quot;nixon&quot;, &quot;nixon&quot;, &quot;nixon&quot;, &quot;nominee&quot;, &quot;nominee&quot;, &quot;nominee&quot;, &quot;noncommissioned&quot;, &quot;noncommissioned&quot;, &quot;noncommissioned&quot;, &quot;noncommissioned&quot;, &quot;noncommissioned&quot;, &quot;noriega&quot;, &quot;noriega&quot;, &quot;normal&quot;, &quot;normal&quot;, &quot;normal&quot;, &quot;normal&quot;, &quot;normal&quot;, &quot;normal&quot;, &quot;normal&quot;, &quot;normal&quot;, &quot;normal&quot;, &quot;normal&quot;, &quot;normal&quot;, &quot;normal&quot;, &quot;normalization&quot;, &quot;normalization&quot;, &quot;normandy&quot;, &quot;normandy&quot;, &quot;normandy&quot;, &quot;normandy&quot;, &quot;normandy&quot;, &quot;normandy&quot;, &quot;norte&quot;, &quot;norte&quot;, &quot;north&quot;, &quot;north&quot;, &quot;north&quot;, &quot;north&quot;, &quot;north&quot;, &quot;north&quot;, &quot;north&quot;, &quot;north&quot;, &quot;north&quot;, &quot;north&quot;, &quot;north&quot;, &quot;north&quot;, &quot;north&quot;, &quot;north&quot;, &quot;north&quot;, &quot;north&quot;, &quot;north&quot;, &quot;north&quot;, &quot;northwest&quot;, &quot;northwest&quot;, &quot;northwest&quot;, &quot;northwest&quot;, &quot;northwest&quot;, &quot;northwest&quot;, &quot;northwest&quot;, &quot;northwest&quot;, &quot;noted&quot;, &quot;noted&quot;, &quot;noted&quot;, &quot;noted&quot;, &quot;noted&quot;, &quot;noted&quot;, &quot;noted&quot;, &quot;noted&quot;, &quot;noted&quot;, &quot;noted&quot;, &quot;noted&quot;, &quot;noted&quot;, &quot;notes&quot;, &quot;notes&quot;, &quot;notes&quot;, &quot;notes&quot;, &quot;notes&quot;, &quot;notes&quot;, &quot;notes&quot;, &quot;notes&quot;, &quot;notes&quot;, &quot;notes&quot;, &quot;notes&quot;, &quot;notes&quot;, &quot;noticed&quot;, &quot;noticed&quot;, &quot;noticed&quot;, &quot;noticed&quot;, &quot;noticed&quot;, &quot;notify&quot;, &quot;notify&quot;, &quot;notify&quot;, &quot;notify&quot;, &quot;notify&quot;, &quot;notify&quot;, &quot;notify&quot;, &quot;notify&quot;, &quot;notify&quot;, &quot;notify&quot;, &quot;november&quot;, &quot;november&quot;, &quot;november&quot;, &quot;november&quot;, &quot;november&quot;, &quot;november&quot;, &quot;november&quot;, &quot;november&quot;, &quot;november&quot;, &quot;november&quot;, &quot;november&quot;, &quot;november&quot;, &quot;november&quot;, &quot;november&quot;, &quot;november&quot;, &quot;november&quot;, &quot;nuclear&quot;, &quot;nuclear&quot;, &quot;nuclear&quot;, &quot;nuclear&quot;, &quot;nuclear&quot;, &quot;nuclear&quot;, &quot;nuclear&quot;, &quot;nuclear&quot;, &quot;nuclear&quot;, &quot;nuclear&quot;, &quot;nueces&quot;, &quot;nullify&quot;, &quot;nullify&quot;, &quot;nullify&quot;, &quot;nullify&quot;, &quot;nullify&quot;, &quot;nullify&quot;, &quot;oas&quot;, &quot;oas&quot;, &quot;oas&quot;, &quot;oas&quot;, &quot;oath&quot;, &quot;oath&quot;, &quot;oath&quot;, &quot;oath&quot;, &quot;oath&quot;, &quot;oath&quot;, &quot;oath&quot;, &quot;oath&quot;, &quot;oath&quot;, &quot;oath&quot;, &quot;oath&quot;, &quot;oath&quot;, &quot;oath&quot;, &quot;oath&quot;, &quot;obedient&quot;, &quot;obedient&quot;, &quot;obedient&quot;, &quot;obedient&quot;, &quot;object&quot;, &quot;object&quot;, &quot;object&quot;, &quot;object&quot;, &quot;object&quot;, &quot;object&quot;, &quot;object&quot;, &quot;object&quot;, &quot;object&quot;, &quot;object&quot;, &quot;object&quot;, &quot;object&quot;, &quot;object&quot;, &quot;object&quot;, &quot;object&quot;, &quot;object&quot;, &quot;object&quot;, &quot;object&quot;, &quot;objections&quot;, &quot;objections&quot;, &quot;objections&quot;, &quot;objections&quot;, &quot;objections&quot;, &quot;objections&quot;, &quot;objections&quot;, &quot;objections&quot;, &quot;objects&quot;, &quot;objects&quot;, &quot;objects&quot;, &quot;objects&quot;, &quot;objects&quot;, &quot;objects&quot;, &quot;objects&quot;, &quot;objects&quot;, &quot;objects&quot;, &quot;objects&quot;, &quot;objects&quot;, &quot;obscure&quot;, &quot;obscure&quot;, &quot;obscure&quot;, &quot;obscure&quot;, &quot;obscure&quot;, &quot;obscure&quot;, &quot;observers&quot;, &quot;observers&quot;, &quot;observers&quot;, &quot;observers&quot;, &quot;observers&quot;, &quot;observers&quot;, &quot;observers&quot;, &quot;observers&quot;, &quot;obviously&quot;, &quot;obviously&quot;, &quot;obviously&quot;, &quot;obviously&quot;, &quot;obviously&quot;, &quot;obviously&quot;, &quot;obviously&quot;, &quot;obviously&quot;, &quot;obviously&quot;, &quot;obviously&quot;, &quot;obviously&quot;, &quot;obviously&quot;, &quot;obviously&quot;, &quot;obviously&quot;, &quot;obviously&quot;, &quot;obviously&quot;, &quot;occasional&quot;, &quot;occasional&quot;, &quot;occasional&quot;, &quot;occasional&quot;, &quot;occasional&quot;, &quot;occasional&quot;, &quot;occasional&quot;, &quot;occasional&quot;, &quot;occasions&quot;, &quot;occasions&quot;, &quot;occasions&quot;, &quot;occasions&quot;, &quot;occasions&quot;, &quot;occasions&quot;, &quot;occasions&quot;, &quot;occasions&quot;, &quot;occasions&quot;, &quot;occasions&quot;, &quot;occasions&quot;, &quot;occasions&quot;, &quot;occasions&quot;, &quot;offend&quot;, &quot;offend&quot;, &quot;offend&quot;, &quot;offend&quot;, &quot;office&quot;, &quot;office&quot;, &quot;office&quot;, &quot;office&quot;, &quot;office&quot;, &quot;office&quot;, &quot;office&quot;, &quot;office&quot;, &quot;office&quot;, &quot;office&quot;, &quot;office&quot;, &quot;office&quot;, &quot;office&quot;, &quot;office&quot;, &quot;office&quot;, &quot;office&quot;, &quot;office&quot;, &quot;office&quot;, &quot;office&quot;, &quot;officer&quot;, &quot;officer&quot;, &quot;officer&quot;, &quot;officer&quot;, &quot;officer&quot;, &quot;officer&quot;, &quot;officer&quot;, &quot;officer&quot;, &quot;officer&quot;, &quot;officer&quot;, &quot;officer&quot;, &quot;officer&quot;, &quot;officer&quot;, &quot;officer&quot;, &quot;officer&quot;, &quot;officers&quot;, &quot;officers&quot;, &quot;officers&quot;, &quot;officers&quot;, &quot;officers&quot;, &quot;officers&quot;, &quot;officers&quot;, &quot;officers&quot;, &quot;officers&quot;, &quot;officers&quot;, &quot;officers&quot;, &quot;officers&quot;, &quot;officers&quot;, &quot;officers&quot;, &quot;officers&quot;, &quot;officers&quot;, &quot;officers&quot;, &quot;officers&quot;, &quot;officers&quot;, &quot;officials&quot;, &quot;officials&quot;, &quot;officials&quot;, &quot;officials&quot;, &quot;officials&quot;, &quot;officials&quot;, &quot;officials&quot;, &quot;officials&quot;, &quot;officials&quot;, &quot;officials&quot;, &quot;officials&quot;, &quot;officials&quot;, &quot;officials&quot;, &quot;officials&quot;, &quot;officials&quot;, &quot;officials&quot;, &quot;officials&quot;, &quot;officials&quot;, &quot;offshore&quot;, &quot;offshore&quot;, &quot;offshore&quot;, &quot;offshore&quot;, &quot;ofour&quot;, &quot;ofthe&quot;, &quot;ofthe&quot;, &quot;ofthe&quot;, &quot;oil&quot;, &quot;oil&quot;, &quot;oil&quot;, &quot;oil&quot;, &quot;oil&quot;, &quot;oil&quot;, &quot;oil&quot;, &quot;oil&quot;, &quot;oil&quot;, &quot;oil&quot;, &quot;oil&quot;, &quot;oil&quot;, &quot;oil&quot;, &quot;oklahoma&quot;, &quot;oklahoma&quot;, &quot;oklahoma&quot;, &quot;oklahoma&quot;, &quot;oklahoma&quot;, &quot;oklahoma&quot;, &quot;oklahoma&quot;, &quot;omitted&quot;, &quot;omitted&quot;, &quot;omitted&quot;, &quot;omitted&quot;, &quot;omitted&quot;, &quot;omitted&quot;, &quot;omitted&quot;, &quot;opportunity&quot;, &quot;opportunity&quot;, &quot;opportunity&quot;, &quot;opportunity&quot;, &quot;opportunity&quot;, &quot;opportunity&quot;, &quot;opportunity&quot;, &quot;opportunity&quot;, &quot;opportunity&quot;, &quot;opportunity&quot;, &quot;opportunity&quot;, &quot;opportunity&quot;, &quot;opportunity&quot;, &quot;opportunity&quot;, &quot;opportunity&quot;, &quot;opportunity&quot;, &quot;opportunity&quot;, &quot;opportunity&quot;, &quot;opportunity&quot;, &quot;oppose&quot;, &quot;oppose&quot;, &quot;oppose&quot;, &quot;oppose&quot;, &quot;oppose&quot;, &quot;oppose&quot;, &quot;oppose&quot;, &quot;oppose&quot;, &quot;oppose&quot;, &quot;oppose&quot;, &quot;oppose&quot;, &quot;oppose&quot;, &quot;oppose&quot;, &quot;oppose&quot;, &quot;oppose&quot;, &quot;opposition&quot;, &quot;opposition&quot;, &quot;opposition&quot;, &quot;opposition&quot;, &quot;opposition&quot;, &quot;opposition&quot;, &quot;opposition&quot;, &quot;opposition&quot;, &quot;opposition&quot;, &quot;opposition&quot;, &quot;opposition&quot;, &quot;opposition&quot;, &quot;opposition&quot;, &quot;opposition&quot;, &quot;opposition&quot;, &quot;ordained&quot;, &quot;ordained&quot;, &quot;ordained&quot;, &quot;ordained&quot;, &quot;ordained&quot;, &quot;order&quot;, &quot;order&quot;, &quot;order&quot;, &quot;order&quot;, &quot;order&quot;, &quot;order&quot;, &quot;order&quot;, &quot;order&quot;, &quot;order&quot;, &quot;order&quot;, &quot;order&quot;, &quot;order&quot;, &quot;order&quot;, &quot;order&quot;, &quot;order&quot;, &quot;order&quot;, &quot;order&quot;, &quot;order&quot;, &quot;order&quot;, &quot;order&quot;, &quot;ordinance&quot;, &quot;ordinance&quot;, &quot;ordinance&quot;, &quot;ordinance&quot;, &quot;ordinance&quot;, &quot;ordinance&quot;, &quot;oregon&quot;, &quot;oregon&quot;, &quot;oregon&quot;, &quot;oregon&quot;, &quot;oregon&quot;, &quot;oregon&quot;, &quot;oregon&quot;, &quot;oriental&quot;, &quot;originated&quot;, &quot;originated&quot;, &quot;originated&quot;, &quot;originated&quot;, &quot;originated&quot;, &quot;originated&quot;, &quot;originated&quot;, &quot;orthography&quot;, &quot;ottoman&quot;, &quot;ottoman&quot;, &quot;ottoman&quot;, &quot;ought&quot;, &quot;ought&quot;, &quot;ought&quot;, &quot;ought&quot;, &quot;ought&quot;, &quot;ought&quot;, &quot;ought&quot;, &quot;ought&quot;, &quot;ought&quot;, &quot;ought&quot;, &quot;ought&quot;, &quot;ought&quot;, &quot;ought&quot;, &quot;ought&quot;, &quot;ought&quot;, &quot;ought&quot;, &quot;ought&quot;, &quot;ought&quot;, &quot;ounce&quot;, &quot;ounce&quot;, &quot;ounce&quot;, &quot;ounce&quot;, &quot;ounce&quot;, &quot;ounce&quot;, &quot;ounce&quot;, &quot;ounces&quot;, &quot;outlays&quot;, &quot;outlays&quot;, &quot;outlays&quot;, &quot;outlays&quot;, &quot;outlays&quot;, &quot;outlined&quot;, &quot;outlined&quot;, &quot;outlined&quot;, &quot;outlined&quot;, &quot;outlined&quot;, &quot;outlined&quot;, &quot;outlined&quot;, &quot;outlined&quot;, &quot;outlined&quot;, &quot;outlines&quot;, &quot;outlines&quot;, &quot;outlines&quot;, &quot;outlines&quot;, &quot;outlines&quot;, &quot;outlook&quot;, &quot;outlook&quot;, &quot;outlook&quot;, &quot;outlook&quot;, &quot;outlook&quot;, &quot;outlook&quot;, &quot;outlook&quot;, &quot;outlook&quot;, &quot;output&quot;, &quot;output&quot;, &quot;output&quot;, &quot;output&quot;, &quot;output&quot;, &quot;output&quot;, &quot;output&quot;, &quot;outstanding&quot;, &quot;outstanding&quot;, &quot;outstanding&quot;, &quot;outstanding&quot;, &quot;outstanding&quot;, &quot;outstanding&quot;, &quot;outstanding&quot;, &quot;outstanding&quot;, &quot;outstanding&quot;, &quot;outstanding&quot;, &quot;outstanding&quot;, &quot;outstanding&quot;, &quot;outward&quot;, &quot;outward&quot;, &quot;outward&quot;, &quot;outward&quot;, &quot;outward&quot;, &quot;outward&quot;, &quot;overestimated&quot;, &quot;overestimated&quot;, &quot;overproduction&quot;, &quot;overproduction&quot;, &quot;overrun&quot;, &quot;overrun&quot;, &quot;overrun&quot;, &quot;overrun&quot;, &quot;overrun&quot;, &quot;overrun&quot;, &quot;overseas&quot;, &quot;overseas&quot;, &quot;overseas&quot;, &quot;overseas&quot;, &quot;overseas&quot;, &quot;overseas&quot;, &quot;overt&quot;, &quot;overt&quot;, &quot;overt&quot;, &quot;overt&quot;, &quot;overt&quot;, &quot;owed&quot;, &quot;owed&quot;, &quot;owed&quot;, &quot;owed&quot;, &quot;owed&quot;, &quot;owed&quot;, &quot;owed&quot;, &quot;owed&quot;, &quot;owing&quot;, &quot;owing&quot;, &quot;owing&quot;, &quot;owing&quot;, &quot;owing&quot;, &quot;owing&quot;, &quot;owing&quot;, &quot;owing&quot;, &quot;owing&quot;, &quot;ownership&quot;, &quot;ownership&quot;, &quot;ownership&quot;, &quot;ownership&quot;, &quot;ownership&quot;, &quot;ownership&quot;, &quot;ownership&quot;, &quot;ownership&quot;, &quot;ownership&quot;, &quot;ownership&quot;, &quot;packing&quot;, &quot;packing&quot;, &quot;packing&quot;, &quot;packing&quot;, &quot;packing&quot;, &quot;paid&quot;, &quot;paid&quot;, &quot;paid&quot;, &quot;paid&quot;, &quot;paid&quot;, &quot;paid&quot;, &quot;paid&quot;, &quot;paid&quot;, &quot;paid&quot;, &quot;paid&quot;, &quot;paid&quot;, &quot;paid&quot;, &quot;paid&quot;, &quot;paid&quot;, &quot;paid&quot;, &quot;paid&quot;, &quot;paid&quot;, &quot;pain&quot;, &quot;pain&quot;, &quot;pain&quot;, &quot;pain&quot;, &quot;pain&quot;, &quot;pain&quot;, &quot;pain&quot;, &quot;pain&quot;, &quot;pain&quot;, &quot;pain&quot;, &quot;pains&quot;, &quot;pains&quot;, &quot;pains&quot;, &quot;pains&quot;, &quot;pains&quot;, &quot;pains&quot;, &quot;pains&quot;, &quot;pains&quot;, &quot;pains&quot;, &quot;palace&quot;, &quot;palace&quot;, &quot;palace&quot;, &quot;palace&quot;, &quot;palace&quot;, &quot;palestinian&quot;, &quot;palestinian&quot;, &quot;palestinian&quot;, &quot;palestinians&quot;, &quot;palestinians&quot;, &quot;palestinians&quot;, &quot;palpable&quot;, &quot;palpable&quot;, &quot;palpable&quot;, &quot;palpable&quot;, &quot;palpable&quot;, &quot;palpable&quot;, &quot;palpably&quot;, &quot;palpably&quot;, &quot;palpably&quot;, &quot;palpably&quot;, &quot;palpably&quot;, &quot;pan&quot;, &quot;pan&quot;, &quot;pan&quot;, &quot;pan&quot;, &quot;pan&quot;, &quot;pan&quot;, &quot;pan&quot;, &quot;panama&quot;, &quot;panama&quot;, &quot;panama&quot;, &quot;panama&quot;, &quot;panama&quot;, &quot;panama&quot;, &quot;panama&quot;, &quot;panama&quot;, &quot;panama&quot;, &quot;panama&quot;, &quot;panama&quot;, &quot;panama&quot;, &quot;panamanian&quot;, &quot;panamanian&quot;, &quot;panamanian&quot;, &quot;panics&quot;, &quot;panics&quot;, &quot;paperwork&quot;, &quot;par&quot;, &quot;par&quot;, &quot;par&quot;, &quot;par&quot;, &quot;parallel&quot;, &quot;parallel&quot;, &quot;parallel&quot;, &quot;parallel&quot;, &quot;parallel&quot;, &quot;parallel&quot;, &quot;parallel&quot;, &quot;parallel&quot;, &quot;parallel&quot;, &quot;parallel&quot;, &quot;parallel&quot;, &quot;parallel&quot;, &quot;parallel&quot;, &quot;paralysis&quot;, &quot;paralysis&quot;, &quot;paralysis&quot;, &quot;paralysis&quot;, &quot;paralysis&quot;, &quot;paredes&quot;, &quot;parental&quot;, &quot;parental&quot;, &quot;parental&quot;, &quot;parental&quot;, &quot;parents&quot;, &quot;parents&quot;, &quot;parents&quot;, &quot;parents&quot;, &quot;parents&quot;, &quot;parents&quot;, &quot;parents&quot;, &quot;parents&quot;, &quot;parents&quot;, &quot;parents&quot;, &quot;parents&quot;, &quot;parents&quot;, &quot;parks&quot;, &quot;parks&quot;, &quot;parks&quot;, &quot;parks&quot;, &quot;parks&quot;, &quot;parks&quot;, &quot;parks&quot;, &quot;partnerships&quot;, &quot;partnerships&quot;, &quot;partnerships&quot;, &quot;partnerships&quot;, &quot;partnerships&quot;, &quot;partnerships&quot;, &quot;party&quot;, &quot;party&quot;, &quot;party&quot;, &quot;party&quot;, &quot;party&quot;, &quot;party&quot;, &quot;party&quot;, &quot;party&quot;, &quot;party&quot;, &quot;party&quot;, &quot;party&quot;, &quot;party&quot;, &quot;party&quot;, &quot;party&quot;, &quot;party&quot;, &quot;party&quot;, &quot;party&quot;, &quot;party&quot;, &quot;party&quot;, &quot;pass&quot;, &quot;pass&quot;, &quot;pass&quot;, &quot;pass&quot;, &quot;pass&quot;, &quot;pass&quot;, &quot;pass&quot;, &quot;pass&quot;, &quot;pass&quot;, &quot;pass&quot;, &quot;pass&quot;, &quot;pass&quot;, &quot;pass&quot;, &quot;pass&quot;, &quot;pass&quot;, &quot;pass&quot;, &quot;pass&quot;, &quot;pass&quot;, &quot;pass&quot;, &quot;passenger&quot;, &quot;passenger&quot;, &quot;passenger&quot;, &quot;passenger&quot;, &quot;passenger&quot;, &quot;passenger&quot;, &quot;passenger&quot;, &quot;passes&quot;, &quot;passes&quot;, &quot;passes&quot;, &quot;passes&quot;, &quot;passes&quot;, &quot;passes&quot;, &quot;passes&quot;, &quot;passes&quot;, &quot;passionate&quot;, &quot;passionate&quot;, &quot;passionate&quot;, &quot;passionate&quot;, &quot;past&quot;, &quot;past&quot;, &quot;past&quot;, &quot;past&quot;, &quot;past&quot;, &quot;past&quot;, &quot;past&quot;, &quot;past&quot;, &quot;past&quot;, &quot;past&quot;, &quot;past&quot;, &quot;past&quot;, &quot;past&quot;, &quot;past&quot;, &quot;past&quot;, &quot;past&quot;, &quot;past&quot;, &quot;past&quot;, &quot;past&quot;, &quot;pat&quot;, &quot;pat&quot;, &quot;pat&quot;, &quot;pat&quot;, &quot;pat&quot;, &quot;pat&quot;, &quot;patent&quot;, &quot;patent&quot;, &quot;patent&quot;, &quot;patent&quot;, &quot;patent&quot;, &quot;patents&quot;, &quot;patents&quot;, &quot;patience&quot;, &quot;patience&quot;, &quot;patience&quot;, &quot;patience&quot;, &quot;patience&quot;, &quot;patience&quot;, &quot;patience&quot;, &quot;patience&quot;, &quot;patience&quot;, &quot;patience&quot;, &quot;patience&quot;, &quot;patience&quot;, &quot;patience&quot;, &quot;patience&quot;, &quot;pay&quot;, &quot;pay&quot;, &quot;pay&quot;, &quot;pay&quot;, &quot;pay&quot;, &quot;pay&quot;, &quot;pay&quot;, &quot;pay&quot;, &quot;pay&quot;, &quot;pay&quot;, &quot;pay&quot;, &quot;pay&quot;, &quot;pay&quot;, &quot;pay&quot;, &quot;pay&quot;, &quot;pay&quot;, &quot;pay&quot;, &quot;pay&quot;, &quot;paychecks&quot;, &quot;payne&quot;, &quot;payne&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peace&quot;, &quot;peaceful&quot;, &quot;peaceful&quot;, &quot;peaceful&quot;, &quot;peaceful&quot;, &quot;peaceful&quot;, &quot;peaceful&quot;, &quot;peaceful&quot;, &quot;peaceful&quot;, &quot;peaceful&quot;, &quot;peaceful&quot;, &quot;peaceful&quot;, &quot;peaceful&quot;, &quot;peaceful&quot;, &quot;peaceful&quot;, &quot;peaceful&quot;, &quot;peaceful&quot;, &quot;peaceful&quot;, &quot;peaceful&quot;, &quot;penmanship&quot;, &quot;pensacola&quot;, &quot;pensacola&quot;, &quot;pension&quot;, &quot;pension&quot;, &quot;pension&quot;, &quot;pension&quot;, &quot;pension&quot;, &quot;pension&quot;, &quot;pension&quot;, &quot;pensioners&quot;, &quot;pensioners&quot;, &quot;pensioners&quot;, &quot;pensioners&quot;, &quot;pensions&quot;, &quot;pensions&quot;, &quot;pensions&quot;, &quot;pensions&quot;, &quot;pensions&quot;, &quot;pensions&quot;, &quot;pensions&quot;, &quot;pensions&quot;, &quot;people&quot;, &quot;people&quot;, &quot;people&quot;, &quot;people&quot;, &quot;people&quot;, &quot;people&quot;, &quot;people&quot;, &quot;people&quot;, &quot;people&quot;, &quot;people&quot;, &quot;people&quot;, &quot;people&quot;, &quot;people&quot;, &quot;people&quot;, &quot;people&quot;, &quot;people&quot;, &quot;people&quot;, &quot;people&quot;, &quot;people&quot;, &quot;people&quot;, &quot;peoples&quot;, &quot;peoples&quot;, &quot;peoples&quot;, &quot;peoples&quot;, &quot;peoples&quot;, &quot;peoples&quot;, &quot;peoples&quot;, &quot;peoples&quot;, &quot;peoples&quot;, &quot;peoples&quot;, &quot;peoples&quot;, &quot;peoples&quot;, &quot;peoples&quot;, &quot;peoples&quot;, &quot;peoples&quot;, &quot;percent&quot;, &quot;percent&quot;, &quot;percent&quot;, &quot;percent&quot;, &quot;percent&quot;, &quot;percent&quot;, &quot;percent&quot;, &quot;percent&quot;, &quot;percent&quot;, &quot;percent&quot;, &quot;percent&quot;, &quot;percent&quot;, &quot;percent&quot;, &quot;percent&quot;, &quot;percent&quot;, &quot;percent&quot;, &quot;percent&quot;, &quot;perform&quot;, &quot;perform&quot;, &quot;perform&quot;, &quot;perform&quot;, &quot;perform&quot;, &quot;perform&quot;, &quot;perform&quot;, &quot;perform&quot;, &quot;perform&quot;, &quot;perform&quot;, &quot;perform&quot;, &quot;perform&quot;, &quot;performance&quot;, &quot;performance&quot;, &quot;performance&quot;, &quot;performance&quot;, &quot;performance&quot;, &quot;performance&quot;, &quot;performance&quot;, &quot;performance&quot;, &quot;performance&quot;, &quot;performance&quot;, &quot;performance&quot;, &quot;performance&quot;, &quot;performance&quot;, &quot;performance&quot;, &quot;performance&quot;, &quot;performs&quot;, &quot;performs&quot;, &quot;performs&quot;, &quot;performs&quot;, &quot;performs&quot;, &quot;perils&quot;, &quot;perils&quot;, &quot;perils&quot;, &quot;perils&quot;, &quot;perils&quot;, &quot;perils&quot;, &quot;perils&quot;, &quot;perished&quot;, &quot;perished&quot;, &quot;perished&quot;, &quot;perished&quot;, &quot;perished&quot;, &quot;perished&quot;, &quot;permit&quot;, &quot;permit&quot;, &quot;permit&quot;, &quot;permit&quot;, &quot;permit&quot;, &quot;permit&quot;, &quot;permit&quot;, &quot;permit&quot;, &quot;permit&quot;, &quot;permit&quot;, &quot;permit&quot;, &quot;permit&quot;, &quot;permit&quot;, &quot;permit&quot;, &quot;permit&quot;, &quot;permit&quot;, &quot;permit&quot;, &quot;permit&quot;, &quot;permitting&quot;, &quot;permitting&quot;, &quot;permitting&quot;, &quot;permitting&quot;, &quot;permitting&quot;, &quot;permitting&quot;, &quot;permitting&quot;, &quot;permitting&quot;, &quot;permitting&quot;, &quot;permitting&quot;, &quot;permitting&quot;, &quot;permitting&quot;, &quot;pernicious&quot;, &quot;pernicious&quot;, &quot;pernicious&quot;, &quot;perot&quot;, &quot;perpetrated&quot;, &quot;perpetrated&quot;, &quot;perpetrated&quot;, &quot;perpetrated&quot;, &quot;perpetrated&quot;, &quot;perpetrated&quot;, &quot;person&quot;, &quot;person&quot;, &quot;person&quot;, &quot;person&quot;, &quot;person&quot;, &quot;person&quot;, &quot;person&quot;, &quot;person&quot;, &quot;person&quot;, &quot;person&quot;, &quot;person&quot;, &quot;person&quot;, &quot;person&quot;, &quot;person&quot;, &quot;person&quot;, &quot;person&quot;, &quot;person&quot;, &quot;person&quot;, &quot;persons&quot;, &quot;persons&quot;, &quot;persons&quot;, &quot;persons&quot;, &quot;persons&quot;, &quot;persons&quot;, &quot;persons&quot;, &quot;persons&quot;, &quot;persons&quot;, &quot;persons&quot;, &quot;persons&quot;, &quot;persons&quot;, &quot;persons&quot;, &quot;persons&quot;, &quot;persons&quot;, &quot;persons&quot;, &quot;persons&quot;, &quot;persons&quot;, &quot;persuade&quot;, &quot;persuade&quot;, &quot;persuade&quot;, &quot;persuade&quot;, &quot;persuade&quot;, &quot;persuade&quot;, &quot;persuade&quot;, &quot;persuade&quot;, &quot;persuade&quot;, &quot;persuade&quot;, &quot;persuade&quot;, &quot;pertinent&quot;, &quot;pertinent&quot;, &quot;pertinent&quot;, &quot;pertinent&quot;, &quot;pertinent&quot;, &quot;pescadores&quot;, &quot;peter&quot;, &quot;peter&quot;, &quot;peter&quot;, &quot;peter&quot;, &quot;peter&quot;, &quot;petersburg&quot;, &quot;petersburg&quot;, &quot;petersburg&quot;, &quot;petroleum&quot;, &quot;petroleum&quot;, &quot;petroleum&quot;, &quot;petroleum&quot;, &quot;petroleum&quot;, &quot;petroleum&quot;, &quot;petroleum&quot;, &quot;philanthropic&quot;, &quot;philanthropic&quot;, &quot;philanthropic&quot;, &quot;philippine&quot;, &quot;philippine&quot;, &quot;philippine&quot;, &quot;philippine&quot;, &quot;philippine&quot;, &quot;philippine&quot;, &quot;philippine&quot;, &quot;philippines&quot;, &quot;philippines&quot;, &quot;philippines&quot;, &quot;philippines&quot;, &quot;philippines&quot;, &quot;philippines&quot;, &quot;philippines&quot;, &quot;philippines&quot;, &quot;philippines&quot;, &quot;piers&quot;, &quot;piers&quot;, &quot;piled&quot;, &quot;piled&quot;, &quot;piled&quot;, &quot;piled&quot;, &quot;piled&quot;, &quot;pillage&quot;, &quot;pillage&quot;, &quot;pillage&quot;, &quot;pious&quot;, &quot;pious&quot;, &quot;pious&quot;, &quot;pious&quot;, &quot;pirates&quot;, &quot;pirates&quot;, &quot;pirates&quot;, &quot;pirates&quot;, &quot;place&quot;, &quot;place&quot;, &quot;place&quot;, &quot;place&quot;, &quot;place&quot;, &quot;place&quot;, &quot;place&quot;, &quot;place&quot;, &quot;place&quot;, &quot;place&quot;, &quot;place&quot;, &quot;place&quot;, &quot;place&quot;, &quot;place&quot;, &quot;place&quot;, &quot;place&quot;, &quot;place&quot;, &quot;place&quot;, &quot;place&quot;, &quot;planes&quot;, &quot;planes&quot;, &quot;planes&quot;, &quot;planes&quot;, &quot;planes&quot;, &quot;planes&quot;, &quot;planting&quot;, &quot;planting&quot;, &quot;planting&quot;, &quot;planting&quot;, &quot;planting&quot;, &quot;planting&quot;, &quot;planting&quot;, &quot;planting&quot;, &quot;planting&quot;, &quot;platform&quot;, &quot;platform&quot;, &quot;platform&quot;, &quot;platform&quot;, &quot;platform&quot;, &quot;platform&quot;, &quot;platform&quot;, &quot;platform&quot;, &quot;platform&quot;, &quot;play&quot;, &quot;play&quot;, &quot;play&quot;, &quot;play&quot;, &quot;play&quot;, &quot;play&quot;, &quot;play&quot;, &quot;play&quot;, &quot;play&quot;, &quot;play&quot;, &quot;play&quot;, &quot;play&quot;, &quot;play&quot;, &quot;play&quot;, &quot;plo&quot;, &quot;plo&quot;, &quot;plo&quot;, &quot;poles&quot;, &quot;poles&quot;, &quot;poles&quot;, &quot;poles&quot;, &quot;police&quot;, &quot;police&quot;, &quot;police&quot;, &quot;police&quot;, &quot;police&quot;, &quot;police&quot;, &quot;police&quot;, &quot;police&quot;, &quot;police&quot;, &quot;police&quot;, &quot;police&quot;, &quot;police&quot;, &quot;police&quot;, &quot;police&quot;, &quot;police&quot;, &quot;police&quot;, &quot;police&quot;, &quot;policeman&quot;, &quot;policeman&quot;, &quot;policeman&quot;, &quot;policeman&quot;, &quot;policeman&quot;, &quot;policeman&quot;, &quot;policy&quot;, &quot;policy&quot;, &quot;policy&quot;, &quot;policy&quot;, &quot;policy&quot;, &quot;policy&quot;, &quot;policy&quot;, &quot;policy&quot;, &quot;policy&quot;, &quot;policy&quot;, &quot;policy&quot;, &quot;policy&quot;, &quot;policy&quot;, &quot;policy&quot;, &quot;policy&quot;, &quot;policy&quot;, &quot;policy&quot;, &quot;policy&quot;, &quot;policy&quot;, &quot;polish&quot;, &quot;polish&quot;, &quot;polish&quot;, &quot;polish&quot;, &quot;political&quot;, &quot;political&quot;, &quot;political&quot;, &quot;political&quot;, &quot;political&quot;, &quot;political&quot;, &quot;political&quot;, &quot;political&quot;, &quot;political&quot;, &quot;political&quot;, &quot;political&quot;, &quot;political&quot;, &quot;political&quot;, &quot;political&quot;, &quot;political&quot;, &quot;political&quot;, &quot;political&quot;, &quot;political&quot;, &quot;political&quot;, &quot;politician&quot;, &quot;politician&quot;, &quot;politician&quot;, &quot;politician&quot;, &quot;politician&quot;, &quot;politics&quot;, &quot;politics&quot;, &quot;politics&quot;, &quot;politics&quot;, &quot;politics&quot;, &quot;politics&quot;, &quot;politics&quot;, &quot;politics&quot;, &quot;politics&quot;, &quot;politics&quot;, &quot;politics&quot;, &quot;politics&quot;, &quot;politics&quot;, &quot;politics&quot;, &quot;polls&quot;, &quot;polls&quot;, &quot;polls&quot;, &quot;polls&quot;, &quot;polls&quot;, &quot;polls&quot;, &quot;polls&quot;, &quot;polls&quot;, &quot;polls&quot;, &quot;polls&quot;, &quot;polygamy&quot;, &quot;polygamy&quot;, &quot;portion&quot;, &quot;portion&quot;, &quot;portion&quot;, &quot;portion&quot;, &quot;portion&quot;, &quot;portion&quot;, &quot;portion&quot;, &quot;portion&quot;, &quot;portion&quot;, &quot;portion&quot;, &quot;portion&quot;, &quot;portion&quot;, &quot;portion&quot;, &quot;portion&quot;, &quot;portion&quot;, &quot;portion&quot;, &quot;portions&quot;, &quot;portions&quot;, &quot;portions&quot;, &quot;portions&quot;, &quot;portions&quot;, &quot;portions&quot;, &quot;portions&quot;, &quot;portions&quot;, &quot;portions&quot;, &quot;portions&quot;, &quot;portions&quot;, &quot;porto&quot;, &quot;porto&quot;, &quot;porto&quot;, &quot;porto&quot;, &quot;porto&quot;, &quot;porto&quot;, &quot;porto&quot;, &quot;ports&quot;, &quot;ports&quot;, &quot;ports&quot;, &quot;ports&quot;, &quot;ports&quot;, &quot;ports&quot;, &quot;ports&quot;, &quot;ports&quot;, &quot;ports&quot;, &quot;ports&quot;, &quot;ports&quot;, &quot;ports&quot;, &quot;ports&quot;, &quot;ports&quot;, &quot;position&quot;, &quot;position&quot;, &quot;position&quot;, &quot;position&quot;, &quot;position&quot;, &quot;position&quot;, &quot;position&quot;, &quot;position&quot;, &quot;position&quot;, &quot;position&quot;, &quot;position&quot;, &quot;position&quot;, &quot;position&quot;, &quot;position&quot;, &quot;position&quot;, &quot;position&quot;, &quot;position&quot;, &quot;position&quot;, &quot;position&quot;, &quot;possessed&quot;, &quot;possessed&quot;, &quot;possessed&quot;, &quot;possessed&quot;, &quot;possessed&quot;, &quot;possessed&quot;, &quot;possessed&quot;, &quot;possessed&quot;, &quot;possessed&quot;, &quot;possessed&quot;, &quot;possessed&quot;, &quot;possible&quot;, &quot;possible&quot;, &quot;possible&quot;, &quot;possible&quot;, &quot;possible&quot;, &quot;possible&quot;, &quot;possible&quot;, &quot;possible&quot;, &quot;possible&quot;, &quot;possible&quot;, &quot;possible&quot;, &quot;possible&quot;, &quot;possible&quot;, &quot;possible&quot;, &quot;possible&quot;, &quot;possible&quot;, &quot;possible&quot;, &quot;possible&quot;, &quot;possible&quot;, &quot;postages&quot;, &quot;postages&quot;, &quot;postal&quot;, &quot;postal&quot;, &quot;postal&quot;, &quot;postal&quot;, &quot;postal&quot;, &quot;postal&quot;, &quot;postal&quot;, &quot;postmasters&quot;, &quot;postmasters&quot;, &quot;postmasters&quot;, &quot;postmasters&quot;, &quot;postmasters&quot;, &quot;postponed&quot;, &quot;postponed&quot;, &quot;postponed&quot;, &quot;postponed&quot;, &quot;postponed&quot;, &quot;postponed&quot;, &quot;postponed&quot;, &quot;postponing&quot;, &quot;postponing&quot;, &quot;postponing&quot;, &quot;postponing&quot;, &quot;postponing&quot;, &quot;postponing&quot;, &quot;potential&quot;, &quot;potential&quot;, &quot;potential&quot;, &quot;potential&quot;, &quot;potential&quot;, &quot;potential&quot;, &quot;potential&quot;, &quot;potential&quot;, &quot;potential&quot;, &quot;potential&quot;, &quot;potential&quot;, &quot;potential&quot;, &quot;potential&quot;, &quot;power&quot;, &quot;power&quot;, &quot;power&quot;, &quot;power&quot;, &quot;power&quot;, &quot;power&quot;, &quot;power&quot;, &quot;power&quot;, &quot;power&quot;, &quot;power&quot;, &quot;power&quot;, &quot;power&quot;, &quot;power&quot;, &quot;power&quot;, &quot;power&quot;, &quot;power&quot;, &quot;power&quot;, &quot;power&quot;, &quot;power&quot;, &quot;powerful&quot;, &quot;powerful&quot;, &quot;powerful&quot;, &quot;powerful&quot;, &quot;powerful&quot;, &quot;powerful&quot;, &quot;powerful&quot;, &quot;powerful&quot;, &quot;powerful&quot;, &quot;powerful&quot;, &quot;powerful&quot;, &quot;powerful&quot;, &quot;powerful&quot;, &quot;powerful&quot;, &quot;powerful&quot;, &quot;powers&quot;, &quot;powers&quot;, &quot;powers&quot;, &quot;powers&quot;, &quot;powers&quot;, &quot;powers&quot;, &quot;powers&quot;, &quot;powers&quot;, &quot;powers&quot;, &quot;powers&quot;, &quot;powers&quot;, &quot;powers&quot;, &quot;powers&quot;, &quot;powers&quot;, &quot;powers&quot;, &quot;powers&quot;, &quot;powers&quot;, &quot;powers&quot;, &quot;powers&quot;, &quot;praying&quot;, &quot;praying&quot;, &quot;praying&quot;, &quot;praying&quot;, &quot;praying&quot;, &quot;praying&quot;, &quot;preamble&quot;, &quot;preamble&quot;, &quot;preamble&quot;, &quot;preamble&quot;, &quot;preamble&quot;, &quot;preamble&quot;, &quot;precarious&quot;, &quot;precarious&quot;, &quot;precarious&quot;, &quot;precarious&quot;, &quot;precedent&quot;, &quot;precedent&quot;, &quot;precedent&quot;, &quot;precedent&quot;, &quot;precedent&quot;, &quot;precedent&quot;, &quot;precedent&quot;, &quot;precedent&quot;, &quot;precedent&quot;, &quot;precedent&quot;, &quot;precedent&quot;, &quot;precedent&quot;, &quot;precedent&quot;, &quot;precedent&quot;, &quot;precedent&quot;, &quot;precedent&quot;, &quot;precipitate&quot;, &quot;precipitate&quot;, &quot;precipitate&quot;, &quot;precipitate&quot;, &quot;precipitate&quot;, &quot;precipitate&quot;, &quot;pregnancy&quot;, &quot;preparations&quot;, &quot;preparations&quot;, &quot;preparations&quot;, &quot;preparations&quot;, &quot;preparations&quot;, &quot;preparations&quot;, &quot;preparations&quot;, &quot;preparations&quot;, &quot;preparations&quot;, &quot;preparing&quot;, &quot;preparing&quot;, &quot;preparing&quot;, &quot;preparing&quot;, &quot;preparing&quot;, &quot;preparing&quot;, &quot;preparing&quot;, &quot;preparing&quot;, &quot;preparing&quot;, &quot;preparing&quot;, &quot;preparing&quot;, &quot;preparing&quot;, &quot;preparing&quot;, &quot;prescription&quot;, &quot;present&quot;, &quot;present&quot;, &quot;present&quot;, &quot;present&quot;, &quot;present&quot;, &quot;present&quot;, &quot;present&quot;, &quot;present&quot;, &quot;present&quot;, &quot;present&quot;, &quot;present&quot;, &quot;present&quot;, &quot;present&quot;, &quot;present&quot;, &quot;present&quot;, &quot;present&quot;, &quot;present&quot;, &quot;present&quot;, &quot;present&quot;, &quot;present&quot;, &quot;preserved&quot;, &quot;preserved&quot;, &quot;preserved&quot;, &quot;preserved&quot;, &quot;preserved&quot;, &quot;preserved&quot;, &quot;preserved&quot;, &quot;preserved&quot;, &quot;preserved&quot;, &quot;preserved&quot;, &quot;preserved&quot;, &quot;preserved&quot;, &quot;preserved&quot;, &quot;preserved&quot;, &quot;preserved&quot;, &quot;president&quot;, &quot;president&quot;, &quot;president&quot;, &quot;president&quot;, &quot;president&quot;, &quot;president&quot;, &quot;president&quot;, &quot;president&quot;, &quot;president&quot;, &quot;president&quot;, &quot;president&quot;, &quot;president&quot;, &quot;president&quot;, &quot;president&quot;, &quot;president&quot;, &quot;president&quot;, &quot;president&quot;, &quot;president&quot;, &quot;president&quot;, &quot;president&quot;, &quot;press&quot;, &quot;press&quot;, &quot;press&quot;, &quot;press&quot;, &quot;press&quot;, &quot;press&quot;, &quot;press&quot;, &quot;press&quot;, &quot;press&quot;, &quot;press&quot;, &quot;press&quot;, &quot;press&quot;, &quot;press&quot;, &quot;press&quot;, &quot;press&quot;, &quot;press&quot;, &quot;press&quot;, &quot;press&quot;, &quot;prestige&quot;, &quot;prestige&quot;, &quot;prestige&quot;, &quot;prestige&quot;, &quot;prestige&quot;, &quot;prestige&quot;, &quot;prestige&quot;, &quot;prestige&quot;, &quot;presumption&quot;, &quot;presumption&quot;, &quot;presumption&quot;, &quot;presumption&quot;, &quot;presumption&quot;, &quot;pretensions&quot;, &quot;pretensions&quot;, &quot;pretensions&quot;, &quot;pretensions&quot;, &quot;pretensions&quot;, &quot;pretensions&quot;, &quot;pretty&quot;, &quot;pretty&quot;, &quot;pretty&quot;, &quot;price&quot;, &quot;price&quot;, &quot;price&quot;, &quot;price&quot;, &quot;price&quot;, &quot;price&quot;, &quot;price&quot;, &quot;price&quot;, &quot;price&quot;, &quot;price&quot;, &quot;price&quot;, &quot;price&quot;, &quot;price&quot;, &quot;price&quot;, &quot;price&quot;, &quot;price&quot;, &quot;price&quot;, &quot;prices&quot;, &quot;prices&quot;, &quot;prices&quot;, &quot;prices&quot;, &quot;prices&quot;, &quot;prices&quot;, &quot;prices&quot;, &quot;prices&quot;, &quot;prices&quot;, &quot;prices&quot;, &quot;prices&quot;, &quot;prices&quot;, &quot;prices&quot;, &quot;prices&quot;, &quot;primaries&quot;, &quot;primaries&quot;, &quot;primaries&quot;, &quot;prince&quot;, &quot;prince&quot;, &quot;prince&quot;, &quot;prince&quot;, &quot;prince&quot;, &quot;prince&quot;, &quot;prince&quot;, &quot;prince&quot;, &quot;principle&quot;, &quot;principle&quot;, &quot;principle&quot;, &quot;principle&quot;, &quot;principle&quot;, &quot;principle&quot;, &quot;principle&quot;, &quot;principle&quot;, &quot;principle&quot;, &quot;principle&quot;, &quot;principle&quot;, &quot;principle&quot;, &quot;principle&quot;, &quot;principle&quot;, &quot;principle&quot;, &quot;principle&quot;, &quot;principle&quot;, &quot;principle&quot;, &quot;principles&quot;, &quot;principles&quot;, &quot;principles&quot;, &quot;principles&quot;, &quot;principles&quot;, &quot;principles&quot;, &quot;principles&quot;, &quot;principles&quot;, &quot;principles&quot;, &quot;principles&quot;, &quot;principles&quot;, &quot;principles&quot;, &quot;principles&quot;, &quot;principles&quot;, &quot;principles&quot;, &quot;principles&quot;, &quot;principles&quot;, &quot;principles&quot;, &quot;principles&quot;, &quot;print&quot;, &quot;print&quot;, &quot;print&quot;, &quot;print&quot;, &quot;print&quot;, &quot;print&quot;, &quot;prison&quot;, &quot;prison&quot;, &quot;prison&quot;, &quot;prison&quot;, &quot;prison&quot;, &quot;prison&quot;, &quot;prison&quot;, &quot;privateer&quot;, &quot;privateer&quot;, &quot;privateers&quot;, &quot;privateers&quot;, &quot;privateers&quot;, &quot;privateers&quot;, &quot;problem&quot;, &quot;problem&quot;, &quot;problem&quot;, &quot;problem&quot;, &quot;problem&quot;, &quot;problem&quot;, &quot;problem&quot;, &quot;problem&quot;, &quot;problem&quot;, &quot;problem&quot;, &quot;problem&quot;, &quot;problem&quot;, &quot;problem&quot;, &quot;problem&quot;, &quot;problem&quot;, &quot;problem&quot;, &quot;problem&quot;, &quot;process&quot;, &quot;process&quot;, &quot;process&quot;, &quot;process&quot;, &quot;process&quot;, &quot;process&quot;, &quot;process&quot;, &quot;process&quot;, &quot;process&quot;, &quot;process&quot;, &quot;process&quot;, &quot;process&quot;, &quot;process&quot;, &quot;process&quot;, &quot;process&quot;, &quot;process&quot;, &quot;process&quot;, &quot;process&quot;, &quot;process&quot;, &quot;processes&quot;, &quot;processes&quot;, &quot;processes&quot;, &quot;processes&quot;, &quot;processes&quot;, &quot;processes&quot;, &quot;processes&quot;, &quot;processes&quot;, &quot;processes&quot;, &quot;processes&quot;, &quot;processes&quot;, &quot;processes&quot;, &quot;processes&quot;, &quot;processes&quot;, &quot;processes&quot;, &quot;processes&quot;, &quot;processes&quot;, &quot;proclamation&quot;, &quot;proclamation&quot;, &quot;proclamation&quot;, &quot;proclamation&quot;, &quot;proclamation&quot;, &quot;proclamation&quot;, &quot;proclamation&quot;, &quot;proclamation&quot;, &quot;proclamation&quot;, &quot;proclamation&quot;, &quot;proclamation&quot;, &quot;proclamation&quot;, &quot;proclamation&quot;, &quot;proclamation&quot;, &quot;proclamations&quot;, &quot;proclamations&quot;, &quot;proclamations&quot;, &quot;proclamations&quot;, &quot;proclamations&quot;, &quot;proclamations&quot;, &quot;producing&quot;, &quot;producing&quot;, &quot;producing&quot;, &quot;producing&quot;, &quot;producing&quot;, &quot;producing&quot;, &quot;producing&quot;, &quot;producing&quot;, &quot;producing&quot;, &quot;producing&quot;, &quot;producing&quot;, &quot;producing&quot;, &quot;producing&quot;, &quot;production&quot;, &quot;production&quot;, &quot;production&quot;, &quot;production&quot;, &quot;production&quot;, &quot;production&quot;, &quot;production&quot;, &quot;production&quot;, &quot;production&quot;, &quot;production&quot;, &quot;production&quot;, &quot;production&quot;, &quot;production&quot;, &quot;production&quot;, &quot;production&quot;, &quot;production&quot;, &quot;production&quot;, &quot;program&quot;, &quot;program&quot;, &quot;program&quot;, &quot;program&quot;, &quot;program&quot;, &quot;program&quot;, &quot;program&quot;, &quot;program&quot;, &quot;program&quot;, &quot;program&quot;, &quot;program&quot;, &quot;program&quot;, &quot;program&quot;, &quot;program&quot;, &quot;program&quot;, &quot;program&quot;, &quot;program&quot;, &quot;program&quot;, &quot;program&quot;, &quot;programme&quot;, &quot;programme&quot;, &quot;programme&quot;, &quot;programs&quot;, &quot;programs&quot;, &quot;programs&quot;, &quot;programs&quot;, &quot;programs&quot;, &quot;programs&quot;, &quot;programs&quot;, &quot;programs&quot;, &quot;programs&quot;, &quot;programs&quot;, &quot;progressing&quot;, &quot;progressing&quot;, &quot;progressing&quot;, &quot;progressing&quot;, &quot;progressing&quot;, &quot;progressing&quot;, &quot;projects&quot;, &quot;projects&quot;, &quot;projects&quot;, &quot;projects&quot;, &quot;projects&quot;, &quot;projects&quot;, &quot;projects&quot;, &quot;projects&quot;, &quot;projects&quot;, &quot;projects&quot;, &quot;projects&quot;, &quot;projects&quot;, &quot;prolongation&quot;, &quot;prolongation&quot;, &quot;prompted&quot;, &quot;prompted&quot;, &quot;prompted&quot;, &quot;prompted&quot;, &quot;prompted&quot;, &quot;prompted&quot;, &quot;prompted&quot;, &quot;prompted&quot;, &quot;prophesy&quot;, &quot;prophesy&quot;, &quot;prophesy&quot;, &quot;prophesy&quot;, &quot;prophesy&quot;, &quot;prosecutor&quot;, &quot;prosecutor&quot;, &quot;prosecutor&quot;, &quot;prosecutor&quot;, &quot;protect&quot;, &quot;protect&quot;, &quot;protect&quot;, &quot;protect&quot;, &quot;protect&quot;, &quot;protect&quot;, &quot;protect&quot;, &quot;protect&quot;, &quot;protect&quot;, &quot;protect&quot;, &quot;protect&quot;, &quot;protect&quot;, &quot;protect&quot;, &quot;protect&quot;, &quot;protect&quot;, &quot;protect&quot;, &quot;protect&quot;, &quot;protect&quot;, &quot;protect&quot;, &quot;protectorate&quot;, &quot;protest&quot;, &quot;protest&quot;, &quot;protest&quot;, &quot;protest&quot;, &quot;protest&quot;, &quot;protest&quot;, &quot;protest&quot;, &quot;protest&quot;, &quot;protest&quot;, &quot;protest&quot;, &quot;protest&quot;, &quot;protest&quot;, &quot;protest&quot;, &quot;protest&quot;, &quot;protestant&quot;, &quot;protestant&quot;, &quot;protestant&quot;, &quot;protestant&quot;, &quot;protestant&quot;, &quot;proudest&quot;, &quot;proudest&quot;, &quot;proudest&quot;, &quot;proudest&quot;, &quot;proudest&quot;, &quot;proudly&quot;, &quot;proudly&quot;, &quot;proudly&quot;, &quot;proves&quot;, &quot;proves&quot;, &quot;proves&quot;, &quot;proves&quot;, &quot;proves&quot;, &quot;proves&quot;, &quot;proves&quot;, &quot;proves&quot;, &quot;proves&quot;, &quot;proves&quot;, &quot;province&quot;, &quot;province&quot;, &quot;province&quot;, &quot;province&quot;, &quot;province&quot;, &quot;province&quot;, &quot;province&quot;, &quot;province&quot;, &quot;province&quot;, &quot;provisional&quot;, &quot;provisional&quot;, &quot;provisional&quot;, &quot;provisional&quot;, &quot;provisional&quot;, &quot;provisional&quot;, &quot;provisional&quot;, &quot;provisional&quot;, &quot;provisional&quot;, &quot;provisional&quot;, &quot;provisional&quot;, &quot;provisionally&quot;, &quot;provisionally&quot;, &quot;provisionally&quot;, &quot;provocation&quot;, &quot;provocation&quot;, &quot;provocation&quot;, &quot;provocation&quot;, &quot;provocation&quot;, &quot;provocation&quot;, &quot;provocation&quot;, &quot;public&quot;, &quot;public&quot;, &quot;public&quot;, &quot;public&quot;, &quot;public&quot;, &quot;public&quot;, &quot;public&quot;, &quot;public&quot;, &quot;public&quot;, &quot;public&quot;, &quot;public&quot;, &quot;public&quot;, &quot;public&quot;, &quot;public&quot;, &quot;public&quot;, &quot;public&quot;, &quot;public&quot;, &quot;public&quot;, &quot;public&quot;, &quot;public&quot;, &quot;publicity&quot;, &quot;publicity&quot;, &quot;publicity&quot;, &quot;publicity&quot;, &quot;publicity&quot;, &quot;publicity&quot;, &quot;publicity&quot;, &quot;pulled&quot;, &quot;pulled&quot;, &quot;pulled&quot;, &quot;pulled&quot;, &quot;pulp&quot;, &quot;pulp&quot;, &quot;pupils&quot;, &quot;pupils&quot;, &quot;pupils&quot;, &quot;purchasing&quot;, &quot;purchasing&quot;, &quot;purchasing&quot;, &quot;purchasing&quot;, &quot;purchasing&quot;, &quot;purchasing&quot;, &quot;purchasing&quot;, &quot;purchasing&quot;, &quot;purchasing&quot;, &quot;purports&quot;, &quot;purports&quot;, &quot;purports&quot;, &quot;purpose&quot;, &quot;purpose&quot;, &quot;purpose&quot;, &quot;purpose&quot;, &quot;purpose&quot;, &quot;purpose&quot;, &quot;purpose&quot;, &quot;purpose&quot;, &quot;purpose&quot;, &quot;purpose&quot;, &quot;purpose&quot;, &quot;purpose&quot;, &quot;purpose&quot;, &quot;purpose&quot;, &quot;purpose&quot;, &quot;purpose&quot;, &quot;purpose&quot;, &quot;purpose&quot;, &quot;purpose&quot;, &quot;pursuance&quot;, &quot;pursuance&quot;, &quot;pursuance&quot;, &quot;pursuance&quot;, &quot;pursuance&quot;, &quot;pursuance&quot;, &quot;pursuance&quot;, &quot;pursuance&quot;, &quot;pursuance&quot;, &quot;pursuant&quot;, &quot;pursuant&quot;, &quot;pursuant&quot;, &quot;pursuant&quot;, &quot;pursuant&quot;, &quot;pursuant&quot;, &quot;pursuant&quot;, &quot;pursuant&quot;, &quot;pursued&quot;, &quot;pursued&quot;, &quot;pursued&quot;, &quot;pursued&quot;, &quot;pursued&quot;, &quot;pursued&quot;, &quot;pursued&quot;, &quot;pursued&quot;, &quot;pursued&quot;, &quot;pursued&quot;, &quot;pursued&quot;, &quot;pursued&quot;, &quot;pursued&quot;, &quot;pursued&quot;, &quot;qadhafi&quot;, &quot;qadhafi&quot;, &quot;qaeda&quot;, &quot;qaida&quot;, &quot;quantities&quot;, &quot;quantities&quot;, &quot;quantities&quot;, &quot;quantities&quot;, &quot;quantities&quot;, &quot;quantities&quot;, &quot;quantities&quot;, &quot;quantities&quot;, &quot;quantities&quot;, &quot;queen&quot;, &quot;queen&quot;, &quot;queen&quot;, &quot;queen&quot;, &quot;queen&quot;, &quot;queen&quot;, &quot;queen&quot;, &quot;quemoy&quot;, &quot;question&quot;, &quot;question&quot;, &quot;question&quot;, &quot;question&quot;, &quot;question&quot;, &quot;question&quot;, &quot;question&quot;, &quot;question&quot;, &quot;question&quot;, &quot;question&quot;, &quot;question&quot;, &quot;question&quot;, &quot;question&quot;, &quot;question&quot;, &quot;question&quot;, &quot;question&quot;, &quot;question&quot;, &quot;question&quot;, &quot;question&quot;, &quot;questioning&quot;, &quot;questioning&quot;, &quot;questioning&quot;, &quot;questioning&quot;, &quot;quicker&quot;, &quot;quicker&quot;, &quot;quicker&quot;, &quot;quicker&quot;, &quot;quo&quot;, &quot;quo&quot;, &quot;quo&quot;, &quot;quo&quot;, &quot;quoting&quot;, &quot;quoting&quot;, &quot;quoting&quot;, &quot;quoting&quot;, &quot;quoting&quot;, &quot;quoting&quot;, &quot;racism&quot;, &quot;racism&quot;, &quot;racism&quot;, &quot;radically&quot;, &quot;radically&quot;, &quot;radically&quot;, &quot;radically&quot;, &quot;radically&quot;, &quot;radically&quot;, &quot;radically&quot;, &quot;radically&quot;, &quot;raiders&quot;, &quot;raiders&quot;, &quot;raiders&quot;, &quot;raiders&quot;, &quot;railroad&quot;, &quot;railroad&quot;, &quot;railroad&quot;, &quot;railroad&quot;, &quot;railroad&quot;, &quot;railroad&quot;, &quot;railroad&quot;, &quot;railroad&quot;, &quot;railroad&quot;, &quot;railroad&quot;, &quot;railroad&quot;, &quot;railroad&quot;, &quot;railroads&quot;, &quot;railroads&quot;, &quot;railroads&quot;, &quot;railroads&quot;, &quot;railroads&quot;, &quot;railroads&quot;, &quot;railroads&quot;, &quot;railroads&quot;, &quot;railroads&quot;, &quot;raise&quot;, &quot;raise&quot;, &quot;raise&quot;, &quot;raise&quot;, &quot;raise&quot;, &quot;raise&quot;, &quot;raise&quot;, &quot;raise&quot;, &quot;raise&quot;, &quot;raise&quot;, &quot;raise&quot;, &quot;raise&quot;, &quot;raise&quot;, &quot;raise&quot;, &quot;raise&quot;, &quot;raises&quot;, &quot;raises&quot;, &quot;raises&quot;, &quot;raises&quot;, &quot;raises&quot;, &quot;raises&quot;, &quot;rates&quot;, &quot;rates&quot;, &quot;rates&quot;, &quot;rates&quot;, &quot;rates&quot;, &quot;rates&quot;, &quot;rates&quot;, &quot;rates&quot;, &quot;rates&quot;, &quot;rates&quot;, &quot;rates&quot;, &quot;rates&quot;, &quot;rates&quot;, &quot;rates&quot;, &quot;rates&quot;, &quot;rates&quot;, &quot;rates&quot;, &quot;ratification&quot;, &quot;ratification&quot;, &quot;ratification&quot;, &quot;ratification&quot;, &quot;ratification&quot;, &quot;ratification&quot;, &quot;ratification&quot;, &quot;ratification&quot;, &quot;ratification&quot;, &quot;ratification&quot;, &quot;ratification&quot;, &quot;ratification&quot;, &quot;ratification&quot;, &quot;ratifications&quot;, &quot;ratifications&quot;, &quot;ratifications&quot;, &quot;ratify&quot;, &quot;ratify&quot;, &quot;ratify&quot;, &quot;ratify&quot;, &quot;ratify&quot;, &quot;ratify&quot;, &quot;ratify&quot;, &quot;ratify&quot;, &quot;ravaged&quot;, &quot;ravaged&quot;, &quot;ravaged&quot;, &quot;ravaged&quot;, &quot;reach&quot;, &quot;reach&quot;, &quot;reach&quot;, &quot;reach&quot;, &quot;reach&quot;, &quot;reach&quot;, &quot;reach&quot;, &quot;reach&quot;, &quot;reach&quot;, &quot;reach&quot;, &quot;reach&quot;, &quot;reach&quot;, &quot;reach&quot;, &quot;reach&quot;, &quot;reach&quot;, &quot;reach&quot;, &quot;reach&quot;, &quot;reaches&quot;, &quot;reaches&quot;, &quot;reaches&quot;, &quot;reaches&quot;, &quot;reaches&quot;, &quot;reaches&quot;, &quot;reaches&quot;, &quot;reaches&quot;, &quot;reaches&quot;, &quot;reaches&quot;, &quot;reaches&quot;, &quot;reaches&quot;, &quot;reagan&quot;, &quot;reagan&quot;, &quot;reagan&quot;, &quot;reagan&quot;, &quot;reagan&quot;, &quot;reagan&quot;, &quot;reagan&quot;, &quot;real&quot;, &quot;real&quot;, &quot;real&quot;, &quot;real&quot;, &quot;real&quot;, &quot;real&quot;, &quot;real&quot;, &quot;real&quot;, &quot;real&quot;, &quot;real&quot;, &quot;real&quot;, &quot;real&quot;, &quot;real&quot;, &quot;real&quot;, &quot;real&quot;, &quot;real&quot;, &quot;real&quot;, &quot;real&quot;, &quot;real&quot;, &quot;reality&quot;, &quot;reality&quot;, &quot;reality&quot;, &quot;reality&quot;, &quot;reality&quot;, &quot;reality&quot;, &quot;reality&quot;, &quot;reality&quot;, &quot;reality&quot;, &quot;reality&quot;, &quot;reality&quot;, &quot;reality&quot;, &quot;reality&quot;, &quot;reality&quot;, &quot;reasonably&quot;, &quot;reasonably&quot;, &quot;reasonably&quot;, &quot;reasonably&quot;, &quot;reasonably&quot;, &quot;reasonably&quot;, &quot;reasonably&quot;, &quot;reasonably&quot;, &quot;reasonably&quot;, &quot;reasonably&quot;, &quot;rebates&quot;, &quot;rebates&quot;, &quot;rebates&quot;, &quot;rebel&quot;, &quot;rebel&quot;, &quot;rebel&quot;, &quot;rebel&quot;, &quot;rebel&quot;, &quot;rebellion&quot;, &quot;rebellion&quot;, &quot;rebellion&quot;, &quot;rebellion&quot;, &quot;rebellion&quot;, &quot;rebellion&quot;, &quot;rebellion&quot;, &quot;rebellion&quot;, &quot;recalled&quot;, &quot;recalled&quot;, &quot;recalled&quot;, &quot;recalled&quot;, &quot;recalled&quot;, &quot;recalled&quot;, &quot;recalling&quot;, &quot;recalling&quot;, &quot;recalling&quot;, &quot;recalling&quot;, &quot;receipts&quot;, &quot;receipts&quot;, &quot;receipts&quot;, &quot;receipts&quot;, &quot;receipts&quot;, &quot;receipts&quot;, &quot;receipts&quot;, &quot;receipts&quot;, &quot;receipts&quot;, &quot;receipts&quot;, &quot;receipts&quot;, &quot;receipts&quot;, &quot;receipts&quot;, &quot;received&quot;, &quot;received&quot;, &quot;received&quot;, &quot;received&quot;, &quot;received&quot;, &quot;received&quot;, &quot;received&quot;, &quot;received&quot;, &quot;received&quot;, &quot;received&quot;, &quot;received&quot;, &quot;received&quot;, &quot;received&quot;, &quot;received&quot;, &quot;received&quot;, &quot;received&quot;, &quot;received&quot;, &quot;received&quot;, &quot;received&quot;, &quot;recent&quot;, &quot;recent&quot;, &quot;recent&quot;, &quot;recent&quot;, &quot;recent&quot;, &quot;recent&quot;, &quot;recent&quot;, &quot;recent&quot;, &quot;recent&quot;, &quot;recent&quot;, &quot;recent&quot;, &quot;recent&quot;, &quot;recent&quot;, &quot;recent&quot;, &quot;recent&quot;, &quot;recent&quot;, &quot;recent&quot;, &quot;recent&quot;, &quot;recent&quot;, &quot;recently&quot;, &quot;recently&quot;, &quot;recently&quot;, &quot;recently&quot;, &quot;recently&quot;, &quot;recently&quot;, &quot;recently&quot;, &quot;recently&quot;, &quot;recently&quot;, &quot;recently&quot;, &quot;recently&quot;, &quot;recently&quot;, &quot;recently&quot;, &quot;recently&quot;, &quot;recently&quot;, &quot;recently&quot;, &quot;recently&quot;, &quot;recently&quot;, &quot;reciprocated&quot;, &quot;reciprocated&quot;, &quot;reciprocated&quot;, &quot;reciprocated&quot;, &quot;recognized&quot;, &quot;recognized&quot;, &quot;recognized&quot;, &quot;recognized&quot;, &quot;recognized&quot;, &quot;recognized&quot;, &quot;recognized&quot;, &quot;recognized&quot;, &quot;recognized&quot;, &quot;recognized&quot;, &quot;recognized&quot;, &quot;recognized&quot;, &quot;recognized&quot;, &quot;recognized&quot;, &quot;recognized&quot;, &quot;recognized&quot;, &quot;recognized&quot;, &quot;recognized&quot;, &quot;recognized&quot;, &quot;recollected&quot;, &quot;recollected&quot;, &quot;recollected&quot;, &quot;recovery&quot;, &quot;recovery&quot;, &quot;recovery&quot;, &quot;recovery&quot;, &quot;recovery&quot;, &quot;recovery&quot;, &quot;recovery&quot;, &quot;recovery&quot;, &quot;recovery&quot;, &quot;recovery&quot;, &quot;recovery&quot;, &quot;recuperation&quot;, &quot;recuperation&quot;, &quot;redemption&quot;, &quot;redemption&quot;, &quot;redemption&quot;, &quot;redemption&quot;, &quot;redemption&quot;, &quot;redress&quot;, &quot;redress&quot;, &quot;redress&quot;, &quot;redress&quot;, &quot;redress&quot;, &quot;redress&quot;, &quot;redress&quot;, &quot;redress&quot;, &quot;reduced&quot;, &quot;reduced&quot;, &quot;reduced&quot;, &quot;reduced&quot;, &quot;reduced&quot;, &quot;reduced&quot;, &quot;reduced&quot;, &quot;reduced&quot;, &quot;reduced&quot;, &quot;reduced&quot;, &quot;reduced&quot;, &quot;reduced&quot;, &quot;reduced&quot;, &quot;reduced&quot;, &quot;reduced&quot;, &quot;reduces&quot;, &quot;reduces&quot;, &quot;reduces&quot;, &quot;reduces&quot;, &quot;reduces&quot;, &quot;reduces&quot;, &quot;reduction&quot;, &quot;reduction&quot;, &quot;reduction&quot;, &quot;reduction&quot;, &quot;reduction&quot;, &quot;reduction&quot;, &quot;reduction&quot;, &quot;reduction&quot;, &quot;reduction&quot;, &quot;reduction&quot;, &quot;reduction&quot;, &quot;reduction&quot;, &quot;reduction&quot;, &quot;reduction&quot;, &quot;reduction&quot;, &quot;reduction&quot;, &quot;reduction&quot;, &quot;reduction&quot;, &quot;reestablishment&quot;, &quot;reestablishment&quot;, &quot;reestablishment&quot;, &quot;reestablishment&quot;, &quot;reestablishment&quot;, &quot;reestablishment&quot;, &quot;reestablishment&quot;, &quot;reestablishment&quot;, &quot;referring&quot;, &quot;referring&quot;, &quot;referring&quot;, &quot;referring&quot;, &quot;referring&quot;, &quot;referring&quot;, &quot;referring&quot;, &quot;referring&quot;, &quot;referring&quot;, &quot;referring&quot;, &quot;reflection&quot;, &quot;reflection&quot;, &quot;reflection&quot;, &quot;reflection&quot;, &quot;reflection&quot;, &quot;reflection&quot;, &quot;reflection&quot;, &quot;reflection&quot;, &quot;reflection&quot;, &quot;refrained&quot;, &quot;refrained&quot;, &quot;refrained&quot;, &quot;refrained&quot;, &quot;regard&quot;, &quot;regard&quot;, &quot;regard&quot;, &quot;regard&quot;, &quot;regard&quot;, &quot;regard&quot;, &quot;regard&quot;, &quot;regard&quot;, &quot;regard&quot;, &quot;regard&quot;, &quot;regard&quot;, &quot;regard&quot;, &quot;regard&quot;, &quot;regard&quot;, &quot;regard&quot;, &quot;regard&quot;, &quot;regard&quot;, &quot;regard&quot;, &quot;regard&quot;, &quot;regards&quot;, &quot;regards&quot;, &quot;regards&quot;, &quot;regards&quot;, &quot;regards&quot;, &quot;regards&quot;, &quot;regards&quot;, &quot;regards&quot;, &quot;regards&quot;, &quot;regards&quot;, &quot;regards&quot;, &quot;regards&quot;, &quot;regiment&quot;, &quot;regiment&quot;, &quot;regiment&quot;, &quot;regiment&quot;, &quot;regiment&quot;, &quot;regiment&quot;, &quot;regiment&quot;, &quot;region&quot;, &quot;region&quot;, &quot;region&quot;, &quot;region&quot;, &quot;region&quot;, &quot;region&quot;, &quot;region&quot;, &quot;region&quot;, &quot;region&quot;, &quot;region&quot;, &quot;region&quot;, &quot;region&quot;, &quot;region&quot;, &quot;region&quot;, &quot;region&quot;, &quot;regional&quot;, &quot;regional&quot;, &quot;regional&quot;, &quot;regional&quot;, &quot;regional&quot;, &quot;regional&quot;, &quot;regional&quot;, &quot;regions&quot;, &quot;regions&quot;, &quot;regions&quot;, &quot;regions&quot;, &quot;regions&quot;, &quot;regions&quot;, &quot;regions&quot;, &quot;regions&quot;, &quot;regions&quot;, &quot;regions&quot;, &quot;regions&quot;, &quot;register&quot;, &quot;register&quot;, &quot;register&quot;, &quot;register&quot;, &quot;register&quot;, &quot;register&quot;, &quot;register&quot;, &quot;register&quot;, &quot;registration&quot;, &quot;registration&quot;, &quot;registration&quot;, &quot;registration&quot;, &quot;registration&quot;, &quot;registration&quot;, &quot;regulated&quot;, &quot;regulated&quot;, &quot;regulated&quot;, &quot;regulated&quot;, &quot;regulated&quot;, &quot;regulated&quot;, &quot;regulated&quot;, &quot;regulated&quot;, &quot;regulated&quot;, &quot;regulated&quot;, &quot;regulations&quot;, &quot;regulations&quot;, &quot;regulations&quot;, &quot;regulations&quot;, &quot;regulations&quot;, &quot;regulations&quot;, &quot;regulations&quot;, &quot;regulations&quot;, &quot;regulations&quot;, &quot;regulations&quot;, &quot;regulations&quot;, &quot;regulations&quot;, &quot;regulations&quot;, &quot;rehabilitation&quot;, &quot;rehabilitation&quot;, &quot;rehabilitation&quot;, &quot;rehabilitation&quot;, &quot;rehabilitation&quot;, &quot;rehabilitation&quot;, &quot;rehabilitation&quot;, &quot;reiterated&quot;, &quot;reiterated&quot;, &quot;reiterated&quot;, &quot;reiterated&quot;, &quot;reiterated&quot;, &quot;reiterated&quot;, &quot;reiterated&quot;, &quot;rejoicing&quot;, &quot;rejoicing&quot;, &quot;rejoicing&quot;, &quot;relates&quot;, &quot;relates&quot;, &quot;relates&quot;, &quot;relates&quot;, &quot;relates&quot;, &quot;relates&quot;, &quot;relates&quot;, &quot;relates&quot;, &quot;relates&quot;, &quot;relates&quot;, &quot;relations&quot;, &quot;relations&quot;, &quot;relations&quot;, &quot;relations&quot;, &quot;relations&quot;, &quot;relations&quot;, &quot;relations&quot;, &quot;relations&quot;, &quot;relations&quot;, &quot;relations&quot;, &quot;relations&quot;, &quot;relations&quot;, &quot;relations&quot;, &quot;relations&quot;, &quot;relations&quot;, &quot;relations&quot;, &quot;relations&quot;, &quot;relations&quot;, &quot;relations&quot;, &quot;released&quot;, &quot;released&quot;, &quot;released&quot;, &quot;released&quot;, &quot;released&quot;, &quot;released&quot;, &quot;released&quot;, &quot;released&quot;, &quot;released&quot;, &quot;released&quot;, &quot;released&quot;, &quot;released&quot;, &quot;released&quot;, &quot;relief&quot;, &quot;relief&quot;, &quot;relief&quot;, &quot;relief&quot;, &quot;relief&quot;, &quot;relief&quot;, &quot;relief&quot;, &quot;relief&quot;, &quot;relief&quot;, &quot;relief&quot;, &quot;relief&quot;, &quot;relief&quot;, &quot;relief&quot;, &quot;relief&quot;, &quot;relief&quot;, &quot;relief&quot;, &quot;relief&quot;, &quot;relief&quot;, &quot;relies&quot;, &quot;relies&quot;, &quot;relies&quot;, &quot;relies&quot;, &quot;relies&quot;, &quot;relies&quot;, &quot;relieved&quot;, &quot;relieved&quot;, &quot;relieved&quot;, &quot;relieved&quot;, &quot;relieved&quot;, &quot;relieved&quot;, &quot;relieved&quot;, &quot;relieved&quot;, &quot;relieved&quot;, &quot;relieved&quot;, &quot;religious&quot;, &quot;religious&quot;, &quot;religious&quot;, &quot;religious&quot;, &quot;religious&quot;, &quot;religious&quot;, &quot;religious&quot;, &quot;religious&quot;, &quot;religious&quot;, &quot;religious&quot;, &quot;religious&quot;, &quot;religious&quot;, &quot;religious&quot;, &quot;religious&quot;, &quot;religious&quot;, &quot;reluctance&quot;, &quot;reluctance&quot;, &quot;reluctance&quot;, &quot;reluctance&quot;, &quot;reluctance&quot;, &quot;reluctance&quot;, &quot;reluctance&quot;, &quot;reluctance&quot;, &quot;reluctance&quot;, &quot;remarks&quot;, &quot;remarks&quot;, &quot;remarks&quot;, &quot;remarks&quot;, &quot;remarks&quot;, &quot;remarks&quot;, &quot;remarks&quot;, &quot;remarks&quot;, &quot;remarks&quot;, &quot;remedy&quot;, &quot;remedy&quot;, &quot;remedy&quot;, &quot;remedy&quot;, &quot;remedy&quot;, &quot;remedy&quot;, &quot;remedy&quot;, &quot;remedy&quot;, &quot;remedy&quot;, &quot;remedy&quot;, &quot;remedy&quot;, &quot;remedy&quot;, &quot;remedy&quot;, &quot;remedy&quot;, &quot;remnants&quot;, &quot;remnants&quot;, &quot;remnants&quot;, &quot;remnants&quot;, &quot;removal&quot;, &quot;removal&quot;, &quot;removal&quot;, &quot;removal&quot;, &quot;removal&quot;, &quot;removal&quot;, &quot;removal&quot;, &quot;removal&quot;, &quot;removal&quot;, &quot;removal&quot;, &quot;removal&quot;, &quot;removal&quot;, &quot;rendering&quot;, &quot;rendering&quot;, &quot;rendering&quot;, &quot;rendering&quot;, &quot;rendering&quot;, &quot;rendering&quot;, &quot;rendering&quot;, &quot;rendering&quot;, &quot;renewed&quot;, &quot;renewed&quot;, &quot;renewed&quot;, &quot;renewed&quot;, &quot;renewed&quot;, &quot;renewed&quot;, &quot;renewed&quot;, &quot;renewed&quot;, &quot;renewed&quot;, &quot;renewed&quot;, &quot;renewed&quot;, &quot;renewed&quot;, &quot;renewed&quot;, &quot;reopened&quot;, &quot;reopened&quot;, &quot;reopened&quot;, &quot;reopened&quot;, &quot;reopened&quot;, &quot;reorganization&quot;, &quot;reorganization&quot;, &quot;reorganization&quot;, &quot;reorganization&quot;, &quot;reorganization&quot;, &quot;reorganization&quot;, &quot;reorganization&quot;, &quot;reorganization&quot;, &quot;repaired&quot;, &quot;repaired&quot;, &quot;repaired&quot;, &quot;repaired&quot;, &quot;repaired&quot;, &quot;repairing&quot;, &quot;repairing&quot;, &quot;repairing&quot;, &quot;repairing&quot;, &quot;repairing&quot;, &quot;repairing&quot;, &quot;reparations&quot;, &quot;reparations&quot;, &quot;reparations&quot;, &quot;reparations&quot;, &quot;repeal&quot;, &quot;repeal&quot;, &quot;repeal&quot;, &quot;repeal&quot;, &quot;repeal&quot;, &quot;repeal&quot;, &quot;repeal&quot;, &quot;repeal&quot;, &quot;repeal&quot;, &quot;repeal&quot;, &quot;repeal&quot;, &quot;repeat&quot;, &quot;repeat&quot;, &quot;repeat&quot;, &quot;repeat&quot;, &quot;repeat&quot;, &quot;repeat&quot;, &quot;repeat&quot;, &quot;repeat&quot;, &quot;repeat&quot;, &quot;repeat&quot;, &quot;repeat&quot;, &quot;repeat&quot;, &quot;repeat&quot;, &quot;repeat&quot;, &quot;repeat&quot;, &quot;repeat&quot;, &quot;repeat&quot;, &quot;repeat&quot;, &quot;repeatedly&quot;, &quot;repeatedly&quot;, &quot;repeatedly&quot;, &quot;repeatedly&quot;, &quot;repeatedly&quot;, &quot;repeatedly&quot;, &quot;repeatedly&quot;, &quot;repeatedly&quot;, &quot;repeatedly&quot;, &quot;repeatedly&quot;, &quot;repeatedly&quot;, &quot;repeatedly&quot;, &quot;repeatedly&quot;, &quot;repeatedly&quot;, &quot;replaced&quot;, &quot;replaced&quot;, &quot;replaced&quot;, &quot;replaced&quot;, &quot;replaced&quot;, &quot;replaced&quot;, &quot;replaced&quot;, &quot;replaced&quot;, &quot;replaced&quot;, &quot;replaced&quot;, &quot;replaced&quot;, &quot;report&quot;, &quot;report&quot;, &quot;report&quot;, &quot;report&quot;, &quot;report&quot;, &quot;report&quot;, &quot;report&quot;, &quot;report&quot;, &quot;report&quot;, &quot;report&quot;, &quot;report&quot;, &quot;report&quot;, &quot;report&quot;, &quot;report&quot;, &quot;report&quot;, &quot;report&quot;, &quot;report&quot;, &quot;report&quot;, &quot;report&quot;, &quot;report&quot;, &quot;reporting&quot;, &quot;reporting&quot;, &quot;reporting&quot;, &quot;reporting&quot;, &quot;reporting&quot;, &quot;reporting&quot;, &quot;reporting&quot;, &quot;reporting&quot;, &quot;reporting&quot;, &quot;reposed&quot;, &quot;reposed&quot;, &quot;reposed&quot;, &quot;reposed&quot;, &quot;reposed&quot;, &quot;reposed&quot;, &quot;represent&quot;, &quot;represent&quot;, &quot;represent&quot;, &quot;represent&quot;, &quot;represent&quot;, &quot;represent&quot;, &quot;represent&quot;, &quot;represent&quot;, &quot;represent&quot;, &quot;represent&quot;, &quot;represent&quot;, &quot;represent&quot;, &quot;represent&quot;, &quot;represent&quot;, &quot;representatives&quot;, &quot;representatives&quot;, &quot;representatives&quot;, &quot;representatives&quot;, &quot;representatives&quot;, &quot;representatives&quot;, &quot;representatives&quot;, &quot;representatives&quot;, &quot;representatives&quot;, &quot;representatives&quot;, &quot;representatives&quot;, &quot;representatives&quot;, &quot;representatives&quot;, &quot;representatives&quot;, &quot;representatives&quot;, &quot;representatives&quot;, &quot;representatives&quot;, &quot;representatives&quot;, &quot;repressive&quot;, &quot;repressive&quot;, &quot;repressive&quot;, &quot;repressive&quot;, &quot;republic&quot;, &quot;republic&quot;, &quot;republic&quot;, &quot;republic&quot;, &quot;republic&quot;, &quot;republic&quot;, &quot;republic&quot;, &quot;republic&quot;, &quot;republic&quot;, &quot;republic&quot;, &quot;republic&quot;, &quot;republic&quot;, &quot;republic&quot;, &quot;republic&quot;, &quot;republic&quot;, &quot;republic&quot;, &quot;republic&quot;, &quot;republic&quot;, &quot;republican&quot;, &quot;republican&quot;, &quot;republican&quot;, &quot;republican&quot;, &quot;republican&quot;, &quot;republican&quot;, &quot;republican&quot;, &quot;republican&quot;, &quot;republican&quot;, &quot;republican&quot;, &quot;republican&quot;, &quot;republican&quot;, &quot;republican&quot;, &quot;republican&quot;, &quot;republican&quot;, &quot;republican&quot;, &quot;republican&quot;, &quot;republicanism&quot;, &quot;republicanism&quot;, &quot;republicanism&quot;, &quot;republicans&quot;, &quot;republicans&quot;, &quot;republicans&quot;, &quot;republicans&quot;, &quot;republicans&quot;, &quot;republicans&quot;, &quot;republicans&quot;, &quot;republicans&quot;, &quot;republicans&quot;, &quot;republicans&quot;, &quot;republics&quot;, &quot;republics&quot;, &quot;republics&quot;, &quot;republics&quot;, &quot;republics&quot;, &quot;republics&quot;, &quot;republics&quot;, &quot;republics&quot;, &quot;republics&quot;, &quot;republics&quot;, &quot;republics&quot;, &quot;repudiated&quot;, &quot;repudiated&quot;, &quot;repudiated&quot;, &quot;repudiated&quot;, &quot;repudiated&quot;, &quot;requisition&quot;, &quot;requisition&quot;, &quot;requisition&quot;, &quot;rescue&quot;, &quot;rescue&quot;, &quot;rescue&quot;, &quot;rescue&quot;, &quot;rescue&quot;, &quot;rescue&quot;, &quot;rescue&quot;, &quot;rescue&quot;, &quot;rescue&quot;, &quot;reserve&quot;, &quot;reserve&quot;, &quot;reserve&quot;, &quot;reserve&quot;, &quot;reserve&quot;, &quot;reserve&quot;, &quot;reserve&quot;, &quot;reserve&quot;, &quot;reserve&quot;, &quot;reserve&quot;, &quot;reserve&quot;, &quot;reserve&quot;, &quot;reserve&quot;, &quot;reserve&quot;, &quot;reserve&quot;, &quot;reservoir&quot;, &quot;reservoir&quot;, &quot;reservoir&quot;, &quot;reservoir&quot;, &quot;residing&quot;, &quot;residing&quot;, &quot;residing&quot;, &quot;residing&quot;, &quot;residing&quot;, &quot;residing&quot;, &quot;resolution&quot;, &quot;resolution&quot;, &quot;resolution&quot;, &quot;resolution&quot;, &quot;resolution&quot;, &quot;resolution&quot;, &quot;resolution&quot;, &quot;resolution&quot;, &quot;resolution&quot;, &quot;resolution&quot;, &quot;resolution&quot;, &quot;resolution&quot;, &quot;resolution&quot;, &quot;resolution&quot;, &quot;resolution&quot;, &quot;resolution&quot;, &quot;resolution&quot;, &quot;resolved&quot;, &quot;resolved&quot;, &quot;resolved&quot;, &quot;resolved&quot;, &quot;resolved&quot;, &quot;resolved&quot;, &quot;resolved&quot;, &quot;resolved&quot;, &quot;resolved&quot;, &quot;resolved&quot;, &quot;resolved&quot;, &quot;resolved&quot;, &quot;resolved&quot;, &quot;resolved&quot;, &quot;resolved&quot;, &quot;resolved&quot;, &quot;resolved&quot;, &quot;resolving&quot;, &quot;resolving&quot;, &quot;resolving&quot;, &quot;resolving&quot;, &quot;resolving&quot;, &quot;resolving&quot;, &quot;resolving&quot;, &quot;resolving&quot;, &quot;resorting&quot;, &quot;resorting&quot;, &quot;resorting&quot;, &quot;resorting&quot;, &quot;resorting&quot;, &quot;resorting&quot;, &quot;resorting&quot;, &quot;resorting&quot;, &quot;response&quot;, &quot;response&quot;, &quot;response&quot;, &quot;response&quot;, &quot;response&quot;, &quot;response&quot;, &quot;response&quot;, &quot;response&quot;, &quot;response&quot;, &quot;response&quot;, &quot;response&quot;, &quot;response&quot;, &quot;response&quot;, &quot;response&quot;, &quot;responsible&quot;, &quot;responsible&quot;, &quot;responsible&quot;, &quot;responsible&quot;, &quot;responsible&quot;, &quot;responsible&quot;, &quot;responsible&quot;, &quot;responsible&quot;, &quot;responsible&quot;, &quot;responsible&quot;, &quot;responsible&quot;, &quot;responsible&quot;, &quot;responsible&quot;, &quot;responsible&quot;, &quot;responsible&quot;, &quot;responsible&quot;, &quot;responsible&quot;, &quot;responsive&quot;, &quot;responsive&quot;, &quot;responsive&quot;, &quot;responsive&quot;, &quot;responsive&quot;, &quot;responsive&quot;, &quot;responsive&quot;, &quot;responsive&quot;, &quot;restlessness&quot;, &quot;restlessness&quot;, &quot;restlessness&quot;, &quot;restlessness&quot;, &quot;restrictive&quot;, &quot;restrictive&quot;, &quot;restrictive&quot;, &quot;restrictive&quot;, &quot;restrictive&quot;, &quot;restrictive&quot;, &quot;restrictive&quot;, &quot;resulted&quot;, &quot;resulted&quot;, &quot;resulted&quot;, &quot;resulted&quot;, &quot;resulted&quot;, &quot;resulted&quot;, &quot;resulted&quot;, &quot;resulted&quot;, &quot;resulted&quot;, &quot;resulted&quot;, &quot;resulted&quot;, &quot;resulted&quot;, &quot;resulted&quot;, &quot;resume&quot;, &quot;resume&quot;, &quot;resume&quot;, &quot;resume&quot;, &quot;resume&quot;, &quot;resume&quot;, &quot;resume&quot;, &quot;resume&quot;, &quot;resume&quot;, &quot;resume&quot;, &quot;resume&quot;, &quot;resume&quot;, &quot;retain&quot;, &quot;retain&quot;, &quot;retain&quot;, &quot;retain&quot;, &quot;retain&quot;, &quot;retain&quot;, &quot;retain&quot;, &quot;retain&quot;, &quot;retain&quot;, &quot;retain&quot;, &quot;retain&quot;, &quot;retain&quot;, &quot;retain&quot;, &quot;retaliatory&quot;, &quot;retaliatory&quot;, &quot;retaliatory&quot;, &quot;retaliatory&quot;, &quot;retirement&quot;, &quot;retirement&quot;, &quot;retirement&quot;, &quot;retirement&quot;, &quot;retirement&quot;, &quot;retirement&quot;, &quot;retirement&quot;, &quot;retirement&quot;, &quot;retirement&quot;, &quot;retirement&quot;, &quot;retirement&quot;, &quot;revenge&quot;, &quot;revenge&quot;, &quot;revenge&quot;, &quot;revenge&quot;, &quot;revenge&quot;, &quot;revenge&quot;, &quot;revenue&quot;, &quot;revenue&quot;, &quot;revenue&quot;, &quot;revenue&quot;, &quot;revenue&quot;, &quot;revenue&quot;, &quot;revenue&quot;, &quot;revenue&quot;, &quot;revenue&quot;, &quot;revenue&quot;, &quot;revenue&quot;, &quot;revenue&quot;, &quot;revenue&quot;, &quot;revenue&quot;, &quot;revenue&quot;, &quot;revenue&quot;, &quot;revenue&quot;, &quot;reverence&quot;, &quot;reverence&quot;, &quot;reverence&quot;, &quot;reverence&quot;, &quot;reverence&quot;, &quot;reverence&quot;, &quot;reverence&quot;, &quot;reverence&quot;, &quot;revision&quot;, &quot;revision&quot;, &quot;revision&quot;, &quot;revision&quot;, &quot;revision&quot;, &quot;revision&quot;, &quot;revision&quot;, &quot;revision&quot;, &quot;revision&quot;, &quot;revision&quot;, &quot;revival&quot;, &quot;revival&quot;, &quot;revival&quot;, &quot;revival&quot;, &quot;revival&quot;, &quot;revival&quot;, &quot;revival&quot;, &quot;revolution&quot;, &quot;revolution&quot;, &quot;revolution&quot;, &quot;revolution&quot;, &quot;revolution&quot;, &quot;revolution&quot;, &quot;revolution&quot;, &quot;revolution&quot;, &quot;revolution&quot;, &quot;revolution&quot;, &quot;revolution&quot;, &quot;revolution&quot;, &quot;revolution&quot;, &quot;revolution&quot;, &quot;revolution&quot;, &quot;revolution&quot;, &quot;revolutions&quot;, &quot;revolutions&quot;, &quot;revolutions&quot;, &quot;revolutions&quot;, &quot;revolutions&quot;, &quot;revolutions&quot;, &quot;revolutions&quot;, &quot;reynolds&quot;, &quot;reynolds&quot;, &quot;reynolds&quot;, &quot;rhode&quot;, &quot;rhode&quot;, &quot;rhode&quot;, &quot;rhode&quot;, &quot;rhode&quot;, &quot;rican&quot;, &quot;rican&quot;, &quot;ride&quot;, &quot;ride&quot;, &quot;ride&quot;, &quot;right&quot;, &quot;right&quot;, &quot;right&quot;, &quot;right&quot;, &quot;right&quot;, &quot;right&quot;, &quot;right&quot;, &quot;right&quot;, &quot;right&quot;, &quot;right&quot;, &quot;right&quot;, &quot;right&quot;, &quot;right&quot;, &quot;right&quot;, &quot;right&quot;, &quot;right&quot;, &quot;right&quot;, &quot;right&quot;, &quot;right&quot;, &quot;righteous&quot;, &quot;righteous&quot;, &quot;righteous&quot;, &quot;righteous&quot;, &quot;righteous&quot;, &quot;righteous&quot;, &quot;righteous&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;rights&quot;, &quot;riots&quot;, &quot;riots&quot;, &quot;riots&quot;, &quot;ripe&quot;, &quot;ripe&quot;, &quot;ripe&quot;, &quot;ripe&quot;, &quot;rising&quot;, &quot;rising&quot;, &quot;rising&quot;, &quot;rising&quot;, &quot;rising&quot;, &quot;rising&quot;, &quot;rising&quot;, &quot;rising&quot;, &quot;rising&quot;, &quot;rising&quot;, &quot;risks&quot;, &quot;risks&quot;, &quot;risks&quot;, &quot;risks&quot;, &quot;risks&quot;, &quot;risks&quot;, &quot;risks&quot;, &quot;risks&quot;, &quot;risks&quot;, &quot;rivalries&quot;, &quot;rivalries&quot;, &quot;rivalries&quot;, &quot;rivalries&quot;, &quot;robert&quot;, &quot;robert&quot;, &quot;robert&quot;, &quot;robert&quot;, &quot;robert&quot;, &quot;robert&quot;, &quot;robert&quot;, &quot;robert&quot;, &quot;robert&quot;, &quot;roles&quot;, &quot;roles&quot;, &quot;roles&quot;, &quot;rolls&quot;, &quot;rolls&quot;, &quot;rolls&quot;, &quot;rolls&quot;, &quot;rolls&quot;, &quot;rolls&quot;, &quot;rolls&quot;, &quot;rome&quot;, &quot;rome&quot;, &quot;rome&quot;, &quot;rome&quot;, &quot;rome&quot;, &quot;ronald&quot;, &quot;ronald&quot;, &quot;ronald&quot;, &quot;roof&quot;, &quot;roof&quot;, &quot;roof&quot;, &quot;roof&quot;, &quot;roof&quot;, &quot;roof&quot;, &quot;roots&quot;, &quot;roots&quot;, &quot;roots&quot;, &quot;roots&quot;, &quot;roots&quot;, &quot;roots&quot;, &quot;row&quot;, &quot;ruin&quot;, &quot;ruin&quot;, &quot;ruin&quot;, &quot;ruin&quot;, &quot;ruin&quot;, &quot;ruin&quot;, &quot;ruin&quot;, &quot;ruin&quot;, &quot;ruin&quot;, &quot;ruin&quot;, &quot;ruin&quot;, &quot;ruin&quot;, &quot;ruinous&quot;, &quot;ruinous&quot;, &quot;ruinous&quot;, &quot;ruinous&quot;, &quot;ruinous&quot;, &quot;rule&quot;, &quot;rule&quot;, &quot;rule&quot;, &quot;rule&quot;, &quot;rule&quot;, &quot;rule&quot;, &quot;rule&quot;, &quot;rule&quot;, &quot;rule&quot;, &quot;rule&quot;, &quot;rule&quot;, &quot;rule&quot;, &quot;rule&quot;, &quot;rule&quot;, &quot;rule&quot;, &quot;rule&quot;, &quot;rule&quot;, &quot;ruled&quot;, &quot;ruled&quot;, &quot;ruled&quot;, &quot;ruled&quot;, &quot;ruled&quot;, &quot;ruled&quot;, &quot;ruled&quot;, &quot;ruled&quot;, &quot;ruled&quot;, &quot;rumor&quot;, &quot;rumor&quot;, &quot;rumor&quot;, &quot;rumor&quot;, &quot;rumor&quot;, &quot;rwanda&quot;, &quot;rwanda&quot;, &quot;saddam&quot;, &quot;saddam&quot;, &quot;saddam&quot;, &quot;sadness&quot;, &quot;sadness&quot;, &quot;safeguards&quot;, &quot;safeguards&quot;, &quot;safeguards&quot;, &quot;safeguards&quot;, &quot;safeguards&quot;, &quot;safeguards&quot;, &quot;safeguards&quot;, &quot;safeguards&quot;, &quot;safeguards&quot;, &quot;safeguards&quot;, &quot;safer&quot;, &quot;safer&quot;, &quot;safer&quot;, &quot;safer&quot;, &quot;safer&quot;, &quot;safer&quot;, &quot;safer&quot;, &quot;safer&quot;, &quot;safer&quot;, &quot;safer&quot;, &quot;safer&quot;, &quot;said&quot;, &quot;said&quot;, &quot;said&quot;, &quot;said&quot;, &quot;said&quot;, &quot;said&quot;, &quot;said&quot;, &quot;said&quot;, &quot;said&quot;, &quot;said&quot;, &quot;said&quot;, &quot;said&quot;, &quot;said&quot;, &quot;said&quot;, &quot;said&quot;, &quot;said&quot;, &quot;said&quot;, &quot;said&quot;, &quot;said&quot;, &quot;sailors&quot;, &quot;sailors&quot;, &quot;sailors&quot;, &quot;sailors&quot;, &quot;sailors&quot;, &quot;sailors&quot;, &quot;sailors&quot;, &quot;sailors&quot;, &quot;sailors&quot;, &quot;sailors&quot;, &quot;sailors&quot;, &quot;salutary&quot;, &quot;salutary&quot;, &quot;salutary&quot;, &quot;salvador&quot;, &quot;salvador&quot;, &quot;salvador&quot;, &quot;salvador&quot;, &quot;salvador&quot;, &quot;salvador&quot;, &quot;salvador&quot;, &quot;salvation&quot;, &quot;salvation&quot;, &quot;salvation&quot;, &quot;salvation&quot;, &quot;salvation&quot;, &quot;salvation&quot;, &quot;salvation&quot;, &quot;salvation&quot;, &quot;samoan&quot;, &quot;san&quot;, &quot;san&quot;, &quot;san&quot;, &quot;san&quot;, &quot;san&quot;, &quot;san&quot;, &quot;san&quot;, &quot;san&quot;, &quot;san&quot;, &quot;san&quot;, &quot;san&quot;, &quot;sanctioned&quot;, &quot;sanctioned&quot;, &quot;sanctioned&quot;, &quot;sanctioned&quot;, &quot;sanctioned&quot;, &quot;sanctioned&quot;, &quot;sanctioned&quot;, &quot;sanctuaries&quot;, &quot;sanctuaries&quot;, &quot;sanctuaries&quot;, &quot;sanitary&quot;, &quot;sanitary&quot;, &quot;sanitary&quot;, &quot;sanitary&quot;, &quot;sanitary&quot;, &quot;sanitation&quot;, &quot;sanitation&quot;, &quot;sanitation&quot;, &quot;sanitation&quot;, &quot;sanitation&quot;, &quot;sanitation&quot;, &quot;satellites&quot;, &quot;satellites&quot;, &quot;satellites&quot;, &quot;satellites&quot;, &quot;satisfactorily&quot;, &quot;satisfactorily&quot;, &quot;satisfactorily&quot;, &quot;satisfactorily&quot;, &quot;satisfactorily&quot;, &quot;satisfactorily&quot;, &quot;satisfactorily&quot;, &quot;satisfying&quot;, &quot;satisfying&quot;, &quot;satisfying&quot;, &quot;satisfying&quot;, &quot;satisfying&quot;, &quot;satisfying&quot;, &quot;savages&quot;, &quot;savages&quot;, &quot;savages&quot;, &quot;sawyer&quot;, &quot;says&quot;, &quot;says&quot;, &quot;says&quot;, &quot;says&quot;, &quot;says&quot;, &quot;says&quot;, &quot;says&quot;, &quot;says&quot;, &quot;says&quot;, &quot;says&quot;, &quot;says&quot;, &quot;says&quot;, &quot;says&quot;, &quot;says&quot;, &quot;says&quot;, &quot;says&quot;, &quot;says&quot;, &quot;scale&quot;, &quot;scale&quot;, &quot;scale&quot;, &quot;scale&quot;, &quot;scale&quot;, &quot;scale&quot;, &quot;scale&quot;, &quot;scale&quot;, &quot;scale&quot;, &quot;scale&quot;, &quot;scale&quot;, &quot;scale&quot;, &quot;schedule&quot;, &quot;schedule&quot;, &quot;schedule&quot;, &quot;schedule&quot;, &quot;schedule&quot;, &quot;schedule&quot;, &quot;schedule&quot;, &quot;schedule&quot;, &quot;schedule&quot;, &quot;schedule&quot;, &quot;schedule&quot;, &quot;scheduled&quot;, &quot;scheduled&quot;, &quot;scheduled&quot;, &quot;scheduled&quot;, &quot;scheduled&quot;, &quot;schedules&quot;, &quot;schedules&quot;, &quot;schedules&quot;, &quot;schedules&quot;, &quot;schedules&quot;, &quot;schedules&quot;, &quot;schedules&quot;, &quot;scherer&quot;, &quot;scherer&quot;, &quot;scherer&quot;, &quot;schley&quot;, &quot;schley&quot;, &quot;scope&quot;, &quot;scope&quot;, &quot;scope&quot;, &quot;scope&quot;, &quot;scope&quot;, &quot;scope&quot;, &quot;scope&quot;, &quot;scope&quot;, &quot;scope&quot;, &quot;scope&quot;, &quot;scope&quot;, &quot;scott&quot;, &quot;scott&quot;, &quot;scott&quot;, &quot;scott&quot;, &quot;scott&quot;, &quot;sdi&quot;, &quot;sdi&quot;, &quot;seal&quot;, &quot;seal&quot;, &quot;seal&quot;, &quot;seal&quot;, &quot;seal&quot;, &quot;seal&quot;, &quot;seal&quot;, &quot;seal&quot;, &quot;sealing&quot;, &quot;sealing&quot;, &quot;seas&quot;, &quot;seas&quot;, &quot;seas&quot;, &quot;seas&quot;, &quot;seas&quot;, &quot;seas&quot;, &quot;seas&quot;, &quot;seas&quot;, &quot;seas&quot;, &quot;seas&quot;, &quot;seas&quot;, &quot;seasonal&quot;, &quot;seasonal&quot;, &quot;seasonal&quot;, &quot;seats&quot;, &quot;seats&quot;, &quot;seats&quot;, &quot;seats&quot;, &quot;seats&quot;, &quot;seats&quot;, &quot;sec&quot;, &quot;sec&quot;, &quot;sec&quot;, &quot;sec&quot;, &quot;secede&quot;, &quot;secede&quot;, &quot;secede&quot;, &quot;secede&quot;, &quot;seceded&quot;, &quot;seceded&quot;, &quot;secession&quot;, &quot;secession&quot;, &quot;secession&quot;, &quot;secession&quot;, &quot;secession&quot;, &quot;second&quot;, &quot;second&quot;, &quot;second&quot;, &quot;second&quot;, &quot;second&quot;, &quot;second&quot;, &quot;second&quot;, &quot;second&quot;, &quot;second&quot;, &quot;second&quot;, &quot;second&quot;, &quot;second&quot;, &quot;second&quot;, &quot;second&quot;, &quot;second&quot;, &quot;second&quot;, &quot;second&quot;, &quot;second&quot;, &quot;second&quot;, &quot;secondary&quot;, &quot;secondary&quot;, &quot;secondary&quot;, &quot;secondary&quot;, &quot;secondary&quot;, &quot;secondary&quot;, &quot;secondary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;secretary&quot;, &quot;section&quot;, &quot;section&quot;, &quot;section&quot;, &quot;section&quot;, &quot;section&quot;, &quot;section&quot;, &quot;section&quot;, &quot;section&quot;, &quot;section&quot;, &quot;section&quot;, &quot;section&quot;, &quot;section&quot;, &quot;section&quot;, &quot;section&quot;, &quot;sectional&quot;, &quot;sectional&quot;, &quot;sectional&quot;, &quot;sectional&quot;, &quot;sectional&quot;, &quot;sectional&quot;, &quot;sectional&quot;, &quot;securing&quot;, &quot;securing&quot;, &quot;securing&quot;, &quot;securing&quot;, &quot;securing&quot;, &quot;securing&quot;, &quot;securing&quot;, &quot;securing&quot;, &quot;securing&quot;, &quot;securing&quot;, &quot;securing&quot;, &quot;securing&quot;, &quot;securing&quot;, &quot;securing&quot;, &quot;securing&quot;, &quot;security&quot;, &quot;security&quot;, &quot;security&quot;, &quot;security&quot;, &quot;security&quot;, &quot;security&quot;, &quot;security&quot;, &quot;security&quot;, &quot;security&quot;, &quot;security&quot;, &quot;security&quot;, &quot;security&quot;, &quot;security&quot;, &quot;security&quot;, &quot;security&quot;, &quot;security&quot;, &quot;security&quot;, &quot;security&quot;, &quot;security&quot;, &quot;seek&quot;, &quot;seek&quot;, &quot;seek&quot;, &quot;seek&quot;, &quot;seek&quot;, &quot;seek&quot;, &quot;seek&quot;, &quot;seek&quot;, &quot;seek&quot;, &quot;seek&quot;, &quot;seek&quot;, &quot;seek&quot;, &quot;seek&quot;, &quot;seek&quot;, &quot;seek&quot;, &quot;seek&quot;, &quot;seek&quot;, &quot;seek&quot;, &quot;seek&quot;, &quot;seeks&quot;, &quot;seeks&quot;, &quot;seeks&quot;, &quot;seeks&quot;, &quot;seeks&quot;, &quot;seeks&quot;, &quot;seeks&quot;, &quot;seeks&quot;, &quot;seeks&quot;, &quot;seeks&quot;, &quot;seeks&quot;, &quot;seeks&quot;, &quot;seeks&quot;, &quot;seeks&quot;, &quot;seen&quot;, &quot;seen&quot;, &quot;seen&quot;, &quot;seen&quot;, &quot;seen&quot;, &quot;seen&quot;, &quot;seen&quot;, &quot;seen&quot;, &quot;seen&quot;, &quot;seen&quot;, &quot;seen&quot;, &quot;seen&quot;, &quot;seen&quot;, &quot;seen&quot;, &quot;seen&quot;, &quot;seen&quot;, &quot;seen&quot;, &quot;seen&quot;, &quot;seen&quot;, &quot;segregation&quot;, &quot;segregation&quot;, &quot;segregation&quot;, &quot;segregation&quot;, &quot;seigniorage&quot;, &quot;selling&quot;, &quot;selling&quot;, &quot;selling&quot;, &quot;selling&quot;, &quot;selling&quot;, &quot;selling&quot;, &quot;selling&quot;, &quot;selling&quot;, &quot;selling&quot;, &quot;selling&quot;, &quot;selma&quot;, &quot;selma&quot;, &quot;selma&quot;, &quot;selma&quot;, &quot;senate&quot;, &quot;senate&quot;, &quot;senate&quot;, &quot;senate&quot;, &quot;senate&quot;, &quot;senate&quot;, &quot;senate&quot;, &quot;senate&quot;, &quot;senate&quot;, &quot;senate&quot;, &quot;senate&quot;, &quot;senate&quot;, &quot;senate&quot;, &quot;senate&quot;, &quot;senate&quot;, &quot;senate&quot;, &quot;senate&quot;, &quot;senate&quot;, &quot;senate&quot;, &quot;senator&quot;, &quot;senator&quot;, &quot;senator&quot;, &quot;senator&quot;, &quot;senator&quot;, &quot;senator&quot;, &quot;senator&quot;, &quot;senator&quot;, &quot;senator&quot;, &quot;senator&quot;, &quot;senator&quot;, &quot;senator&quot;, &quot;senator&quot;, &quot;senator&quot;, &quot;senator&quot;, &quot;senator&quot;, &quot;senator&quot;, &quot;senator&quot;, &quot;senators&quot;, &quot;senators&quot;, &quot;senators&quot;, &quot;senators&quot;, &quot;senators&quot;, &quot;senators&quot;, &quot;senators&quot;, &quot;senators&quot;, &quot;senators&quot;, &quot;senators&quot;, &quot;senators&quot;, &quot;senators&quot;, &quot;senators&quot;, &quot;sending&quot;, &quot;sending&quot;, &quot;sending&quot;, &quot;sending&quot;, &quot;sending&quot;, &quot;sending&quot;, &quot;sending&quot;, &quot;sending&quot;, &quot;sending&quot;, &quot;sending&quot;, &quot;sending&quot;, &quot;seniority&quot;, &quot;seniority&quot;, &quot;seniority&quot;, &quot;seniority&quot;, &quot;seniors&quot;, &quot;seniors&quot;, &quot;sensibly&quot;, &quot;sensibly&quot;, &quot;sensibly&quot;, &quot;sensibly&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;sent&quot;, &quot;serbia&quot;, &quot;serbia&quot;, &quot;serbia&quot;, &quot;service&quot;, &quot;service&quot;, &quot;service&quot;, &quot;service&quot;, &quot;service&quot;, &quot;service&quot;, &quot;service&quot;, &quot;service&quot;, &quot;service&quot;, &quot;service&quot;, &quot;service&quot;, &quot;service&quot;, &quot;service&quot;, &quot;service&quot;, &quot;service&quot;, &quot;service&quot;, &quot;service&quot;, &quot;service&quot;, &quot;service&quot;, &quot;serviceable&quot;, &quot;serviceable&quot;, &quot;servitude&quot;, &quot;servitude&quot;, &quot;servitude&quot;, &quot;servitude&quot;, &quot;servitude&quot;, &quot;servitude&quot;, &quot;servitude&quot;, &quot;session&quot;, &quot;session&quot;, &quot;session&quot;, &quot;session&quot;, &quot;session&quot;, &quot;session&quot;, &quot;session&quot;, &quot;session&quot;, &quot;session&quot;, &quot;session&quot;, &quot;session&quot;, &quot;session&quot;, &quot;session&quot;, &quot;session&quot;, &quot;session&quot;, &quot;session&quot;, &quot;session&quot;, &quot;session&quot;, &quot;session&quot;, &quot;setbacks&quot;, &quot;setbacks&quot;, &quot;setbacks&quot;, &quot;setbacks&quot;, &quot;setting&quot;, &quot;setting&quot;, &quot;setting&quot;, &quot;setting&quot;, &quot;setting&quot;, &quot;setting&quot;, &quot;setting&quot;, &quot;setting&quot;, &quot;setting&quot;, &quot;setting&quot;, &quot;setting&quot;, &quot;setting&quot;, &quot;setting&quot;, &quot;setting&quot;, &quot;settlement&quot;, &quot;settlement&quot;, &quot;settlement&quot;, &quot;settlement&quot;, &quot;settlement&quot;, &quot;settlement&quot;, &quot;settlement&quot;, &quot;settlement&quot;, &quot;settlement&quot;, &quot;settlement&quot;, &quot;settlement&quot;, &quot;settlement&quot;, &quot;settlement&quot;, &quot;settlement&quot;, &quot;settlement&quot;, &quot;settlement&quot;, &quot;settlement&quot;, &quot;settlement&quot;, &quot;settler&quot;, &quot;settler&quot;, &quot;settler&quot;, &quot;settler&quot;, &quot;settling&quot;, &quot;settling&quot;, &quot;settling&quot;, &quot;settling&quot;, &quot;settling&quot;, &quot;settling&quot;, &quot;settling&quot;, &quot;settling&quot;, &quot;settling&quot;, &quot;settling&quot;, &quot;seven&quot;, &quot;seven&quot;, &quot;seven&quot;, &quot;seven&quot;, &quot;seven&quot;, &quot;seven&quot;, &quot;seven&quot;, &quot;seven&quot;, &quot;seven&quot;, &quot;seven&quot;, &quot;seven&quot;, &quot;seven&quot;, &quot;seven&quot;, &quot;seven&quot;, &quot;seven&quot;, &quot;seventy&quot;, &quot;seventy&quot;, &quot;seventy&quot;, &quot;seventy&quot;, &quot;seventy&quot;, &quot;seventy&quot;, &quot;seventy&quot;, &quot;seventy&quot;, &quot;seventy&quot;, &quot;seventy&quot;, &quot;severalty&quot;, &quot;severed&quot;, &quot;severed&quot;, &quot;severed&quot;, &quot;severed&quot;, &quot;severely&quot;, &quot;severely&quot;, &quot;severely&quot;, &quot;severely&quot;, &quot;severely&quot;, &quot;severely&quot;, &quot;severely&quot;, &quot;severely&quot;, &quot;severely&quot;, &quot;shadel&quot;, &quot;shall&quot;, &quot;shall&quot;, &quot;shall&quot;, &quot;shall&quot;, &quot;shall&quot;, &quot;shall&quot;, &quot;shall&quot;, &quot;shall&quot;, &quot;shall&quot;, &quot;shall&quot;, &quot;shall&quot;, &quot;shall&quot;, &quot;shall&quot;, &quot;shall&quot;, &quot;shall&quot;, &quot;shall&quot;, &quot;shall&quot;, &quot;shall&quot;, &quot;shall&quot;, &quot;sharing&quot;, &quot;sharing&quot;, &quot;sharing&quot;, &quot;sharing&quot;, &quot;sharing&quot;, &quot;sharing&quot;, &quot;sharing&quot;, &quot;sharing&quot;, &quot;sharing&quot;, &quot;shek&quot;, &quot;shek&quot;, &quot;shells&quot;, &quot;shells&quot;, &quot;shells&quot;, &quot;shells&quot;, &quot;shells&quot;, &quot;shells&quot;, &quot;sheriff&quot;, &quot;sheriff&quot;, &quot;sheriff&quot;, &quot;shewn&quot;, &quot;shewn&quot;, &quot;shift&quot;, &quot;shift&quot;, &quot;shift&quot;, &quot;shift&quot;, &quot;shift&quot;, &quot;shift&quot;, &quot;shift&quot;, &quot;shift&quot;, &quot;shift&quot;, &quot;shipper&quot;, &quot;shippers&quot;, &quot;shippers&quot;, &quot;shippers&quot;, &quot;shippers&quot;, &quot;ships&quot;, &quot;ships&quot;, &quot;ships&quot;, &quot;ships&quot;, &quot;ships&quot;, &quot;ships&quot;, &quot;ships&quot;, &quot;ships&quot;, &quot;ships&quot;, &quot;ships&quot;, &quot;ships&quot;, &quot;ships&quot;, &quot;ships&quot;, &quot;ships&quot;, &quot;ships&quot;, &quot;shirk&quot;, &quot;shirk&quot;, &quot;shirk&quot;, &quot;shirk&quot;, &quot;shirk&quot;, &quot;shoals&quot;, &quot;shoals&quot;, &quot;shoals&quot;, &quot;shocked&quot;, &quot;shocked&quot;, &quot;shocked&quot;, &quot;shocked&quot;, &quot;shocked&quot;, &quot;shocked&quot;, &quot;shocked&quot;, &quot;shot&quot;, &quot;shot&quot;, &quot;shot&quot;, &quot;shot&quot;, &quot;shot&quot;, &quot;shot&quot;, &quot;shot&quot;, &quot;shot&quot;, &quot;shot&quot;, &quot;shot&quot;, &quot;shot&quot;, &quot;shots&quot;, &quot;shots&quot;, &quot;shots&quot;, &quot;shots&quot;, &quot;shouldbe&quot;, &quot;shouldbe&quot;, &quot;showing&quot;, &quot;showing&quot;, &quot;showing&quot;, &quot;showing&quot;, &quot;showing&quot;, &quot;showing&quot;, &quot;showing&quot;, &quot;showing&quot;, &quot;showing&quot;, &quot;showing&quot;, &quot;showing&quot;, &quot;shultz&quot;, &quot;shultz&quot;, &quot;shultz&quot;, &quot;shultz&quot;, &quot;shuttle&quot;, &quot;shuttle&quot;, &quot;sicily&quot;, &quot;sicily&quot;, &quot;sighted&quot;, &quot;sighted&quot;, &quot;sighted&quot;, &quot;sighted&quot;, &quot;sighted&quot;, &quot;sighted&quot;, &quot;sighted&quot;, &quot;silk&quot;, &quot;silk&quot;, &quot;silk&quot;, &quot;silk&quot;, &quot;silver&quot;, &quot;silver&quot;, &quot;silver&quot;, &quot;silver&quot;, &quot;silver&quot;, &quot;silver&quot;, &quot;silver&quot;, &quot;silver&quot;, &quot;silver&quot;, &quot;silver&quot;, &quot;sinai&quot;, &quot;sinai&quot;, &quot;sinai&quot;, &quot;sinai&quot;, &quot;sinai&quot;, &quot;single&quot;, &quot;single&quot;, &quot;single&quot;, &quot;single&quot;, &quot;single&quot;, &quot;single&quot;, &quot;single&quot;, &quot;single&quot;, &quot;single&quot;, &quot;single&quot;, &quot;single&quot;, &quot;single&quot;, &quot;single&quot;, &quot;single&quot;, &quot;single&quot;, &quot;single&quot;, &quot;single&quot;, &quot;single&quot;, &quot;single&quot;, &quot;sioux&quot;, &quot;sioux&quot;, &quot;sir&quot;, &quot;sir&quot;, &quot;sir&quot;, &quot;sir&quot;, &quot;sir&quot;, &quot;sir&quot;, &quot;sir&quot;, &quot;sir&quot;, &quot;sir&quot;, &quot;sir&quot;, &quot;sir&quot;, &quot;sir&quot;, &quot;sister&quot;, &quot;sister&quot;, &quot;sister&quot;, &quot;sister&quot;, &quot;sister&quot;, &quot;sister&quot;, &quot;sister&quot;, &quot;sister&quot;, &quot;sister&quot;, &quot;sits&quot;, &quot;sits&quot;, &quot;sits&quot;, &quot;sits&quot;, &quot;situated&quot;, &quot;situated&quot;, &quot;situated&quot;, &quot;situated&quot;, &quot;situated&quot;, &quot;situated&quot;, &quot;situated&quot;, &quot;situated&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;situation&quot;, &quot;skin&quot;, &quot;skin&quot;, &quot;skin&quot;, &quot;skin&quot;, &quot;skin&quot;, &quot;skin&quot;, &quot;slave&quot;, &quot;slave&quot;, &quot;slave&quot;, &quot;slave&quot;, &quot;slave&quot;, &quot;slave&quot;, &quot;slave&quot;, &quot;slave&quot;, &quot;slave&quot;, &quot;slave&quot;, &quot;slave&quot;, &quot;slave&quot;, &quot;slaveholding&quot;, &quot;slaveholding&quot;, &quot;slaveholding&quot;, &quot;slaveholding&quot;, &quot;slaveholding&quot;, &quot;slavery&quot;, &quot;slavery&quot;, &quot;slavery&quot;, &quot;slavery&quot;, &quot;slavery&quot;, &quot;slavery&quot;, &quot;slavery&quot;, &quot;slavery&quot;, &quot;slavery&quot;, &quot;slavery&quot;, &quot;slavery&quot;, &quot;slavery&quot;, &quot;slavery&quot;, &quot;slavery&quot;, &quot;slavery&quot;, &quot;slaves&quot;, &quot;slaves&quot;, &quot;slaves&quot;, &quot;slaves&quot;, &quot;slaves&quot;, &quot;slaves&quot;, &quot;slaves&quot;, &quot;slaves&quot;, &quot;slip&quot;, &quot;slip&quot;, &quot;slip&quot;, &quot;slogan&quot;, &quot;slogan&quot;, &quot;slogan&quot;, &quot;slogan&quot;, &quot;slogan&quot;, &quot;slogan&quot;, &quot;society&quot;, &quot;society&quot;, &quot;society&quot;, &quot;society&quot;, &quot;society&quot;, &quot;society&quot;, &quot;society&quot;, &quot;society&quot;, &quot;society&quot;, &quot;society&quot;, &quot;society&quot;, &quot;society&quot;, &quot;society&quot;, &quot;society&quot;, &quot;society&quot;, &quot;society&quot;, &quot;society&quot;, &quot;soils&quot;, &quot;soils&quot;, &quot;soils&quot;, &quot;solar&quot;, &quot;solar&quot;, &quot;solicitation&quot;, &quot;solicitation&quot;, &quot;solicitation&quot;, &quot;solicitation&quot;, &quot;solicitude&quot;, &quot;solicitude&quot;, &quot;solicitude&quot;, &quot;solicitude&quot;, &quot;solicitude&quot;, &quot;solution&quot;, &quot;solution&quot;, &quot;solution&quot;, &quot;solution&quot;, &quot;solution&quot;, &quot;solution&quot;, &quot;solution&quot;, &quot;solution&quot;, &quot;solution&quot;, &quot;solution&quot;, &quot;solution&quot;, &quot;solution&quot;, &quot;solution&quot;, &quot;solution&quot;, &quot;solution&quot;, &quot;solve&quot;, &quot;solve&quot;, &quot;solve&quot;, &quot;solve&quot;, &quot;solve&quot;, &quot;solve&quot;, &quot;solve&quot;, &quot;solve&quot;, &quot;solve&quot;, &quot;solve&quot;, &quot;solve&quot;, &quot;somalia&quot;, &quot;somalia&quot;, &quot;somalia&quot;, &quot;somber&quot;, &quot;somber&quot;, &quot;somber&quot;, &quot;sorely&quot;, &quot;sorely&quot;, &quot;sorely&quot;, &quot;sorely&quot;, &quot;sorely&quot;, &quot;sorry&quot;, &quot;sorry&quot;, &quot;sorry&quot;, &quot;sorry&quot;, &quot;sorry&quot;, &quot;sorry&quot;, &quot;sorry&quot;, &quot;sorry&quot;, &quot;sorts&quot;, &quot;sorts&quot;, &quot;sorts&quot;, &quot;sorts&quot;, &quot;sorts&quot;, &quot;sorts&quot;, &quot;sounds&quot;, &quot;sounds&quot;, &quot;sounds&quot;, &quot;sounds&quot;, &quot;south&quot;, &quot;south&quot;, &quot;south&quot;, &quot;south&quot;, &quot;south&quot;, &quot;south&quot;, &quot;south&quot;, &quot;south&quot;, &quot;south&quot;, &quot;south&quot;, &quot;south&quot;, &quot;south&quot;, &quot;south&quot;, &quot;south&quot;, &quot;south&quot;, &quot;south&quot;, &quot;south&quot;, &quot;south&quot;, &quot;south&quot;, &quot;southeast&quot;, &quot;southeast&quot;, &quot;southeast&quot;, &quot;southeast&quot;, &quot;southeast&quot;, &quot;southeast&quot;, &quot;southeast&quot;, &quot;southeast&quot;, &quot;southeast&quot;, &quot;southeast&quot;, &quot;soviet&quot;, &quot;soviet&quot;, &quot;soviet&quot;, &quot;soviet&quot;, &quot;soviet&quot;, &quot;soviet&quot;, &quot;soviet&quot;, &quot;soviet&quot;, &quot;soviet&quot;, &quot;soviet&quot;, &quot;soviet&quot;, &quot;soviet&quot;, &quot;soviet&quot;, &quot;soviets&quot;, &quot;soviets&quot;, &quot;soviets&quot;, &quot;soviets&quot;, &quot;soviets&quot;, &quot;soviets&quot;, &quot;soviets&quot;, &quot;specifics&quot;, &quot;specifics&quot;, &quot;specifics&quot;, &quot;spectacle&quot;, &quot;spectacle&quot;, &quot;spectacle&quot;, &quot;spectacle&quot;, &quot;spectacle&quot;, &quot;spectacle&quot;, &quot;speculate&quot;, &quot;speculate&quot;, &quot;speculate&quot;, &quot;speech&quot;, &quot;speech&quot;, &quot;speech&quot;, &quot;speech&quot;, &quot;speech&quot;, &quot;speech&quot;, &quot;speech&quot;, &quot;speech&quot;, &quot;speech&quot;, &quot;speech&quot;, &quot;speech&quot;, &quot;speech&quot;, &quot;speech&quot;, &quot;speech&quot;, &quot;speech&quot;, &quot;speech&quot;, &quot;spell&quot;, &quot;spell&quot;, &quot;spell&quot;, &quot;spell&quot;, &quot;spell&quot;, &quot;spell&quot;, &quot;spell&quot;, &quot;spell&quot;, &quot;spell&quot;, &quot;spending&quot;, &quot;spending&quot;, &quot;spending&quot;, &quot;spending&quot;, &quot;spending&quot;, &quot;spending&quot;, &quot;spending&quot;, &quot;spending&quot;, &quot;spending&quot;, &quot;spending&quot;, &quot;spending&quot;, &quot;sphere&quot;, &quot;sphere&quot;, &quot;sphere&quot;, &quot;sphere&quot;, &quot;sphere&quot;, &quot;sphere&quot;, &quot;sphere&quot;, &quot;sphere&quot;, &quot;sphere&quot;, &quot;sphere&quot;, &quot;spheres&quot;, &quot;spheres&quot;, &quot;spheres&quot;, &quot;spheres&quot;, &quot;spheres&quot;, &quot;spirit&quot;, &quot;spirit&quot;, &quot;spirit&quot;, &quot;spirit&quot;, &quot;spirit&quot;, &quot;spirit&quot;, &quot;spirit&quot;, &quot;spirit&quot;, &quot;spirit&quot;, &quot;spirit&quot;, &quot;spirit&quot;, &quot;spirit&quot;, &quot;spirit&quot;, &quot;spirit&quot;, &quot;spirit&quot;, &quot;spirit&quot;, &quot;spirit&quot;, &quot;spirit&quot;, &quot;spirit&quot;, &quot;spiritual&quot;, &quot;spiritual&quot;, &quot;spiritual&quot;, &quot;spiritual&quot;, &quot;spiritual&quot;, &quot;spiritual&quot;, &quot;spiritual&quot;, &quot;spiritual&quot;, &quot;spiritual&quot;, &quot;spoils&quot;, &quot;spoils&quot;, &quot;spoils&quot;, &quot;spoils&quot;, &quot;spoliation&quot;, &quot;spoliation&quot;, &quot;spoliation&quot;, &quot;sports&quot;, &quot;sports&quot;, &quot;sports&quot;, &quot;sports&quot;, &quot;sports&quot;, &quot;squadrons&quot;, &quot;squadrons&quot;, &quot;squadrons&quot;, &quot;squadrons&quot;, &quot;squadrons&quot;, &quot;squadrons&quot;, &quot;squadrons&quot;, &quot;ss&quot;, &quot;ss&quot;, &quot;ss&quot;, &quot;st&quot;, &quot;st&quot;, &quot;st&quot;, &quot;st&quot;, &quot;st&quot;, &quot;st&quot;, &quot;st&quot;, &quot;st&quot;, &quot;st&quot;, &quot;st&quot;, &quot;st&quot;, &quot;st&quot;, &quot;st&quot;, &quot;st&quot;, &quot;st&quot;, &quot;st&quot;, &quot;st&quot;, &quot;st&quot;, &quot;stable&quot;, &quot;stable&quot;, &quot;stable&quot;, &quot;stable&quot;, &quot;stable&quot;, &quot;stable&quot;, &quot;stable&quot;, &quot;stable&quot;, &quot;stable&quot;, &quot;stable&quot;, &quot;stable&quot;, &quot;stable&quot;, &quot;stages&quot;, &quot;stages&quot;, &quot;stages&quot;, &quot;stages&quot;, &quot;stages&quot;, &quot;stages&quot;, &quot;stamp&quot;, &quot;stamp&quot;, &quot;stamp&quot;, &quot;stamp&quot;, &quot;stamp&quot;, &quot;stamp&quot;, &quot;stamp&quot;, &quot;stamp&quot;, &quot;stamped&quot;, &quot;stamped&quot;, &quot;stamped&quot;, &quot;stamped&quot;, &quot;stamped&quot;, &quot;stand&quot;, &quot;stand&quot;, &quot;stand&quot;, &quot;stand&quot;, &quot;stand&quot;, &quot;stand&quot;, &quot;stand&quot;, &quot;stand&quot;, &quot;stand&quot;, &quot;stand&quot;, &quot;stand&quot;, &quot;stand&quot;, &quot;stand&quot;, &quot;stand&quot;, &quot;stand&quot;, &quot;stand&quot;, &quot;stand&quot;, &quot;stand&quot;, &quot;stand&quot;, &quot;standpoint&quot;, &quot;standpoint&quot;, &quot;standpoint&quot;, &quot;standpoint&quot;, &quot;standpoint&quot;, &quot;standpoint&quot;, &quot;standpoint&quot;, &quot;standpoint&quot;, &quot;standpoint&quot;, &quot;stanton&quot;, &quot;stanton&quot;, &quot;stanton&quot;, &quot;started&quot;, &quot;started&quot;, &quot;started&quot;, &quot;started&quot;, &quot;started&quot;, &quot;started&quot;, &quot;started&quot;, &quot;started&quot;, &quot;started&quot;, &quot;started&quot;, &quot;started&quot;, &quot;started&quot;, &quot;started&quot;, &quot;started&quot;, &quot;started&quot;, &quot;starving&quot;, &quot;starving&quot;, &quot;starving&quot;, &quot;state&quot;, &quot;state&quot;, &quot;state&quot;, &quot;state&quot;, &quot;state&quot;, &quot;state&quot;, &quot;state&quot;, &quot;state&quot;, &quot;state&quot;, &quot;state&quot;, &quot;state&quot;, &quot;state&quot;, &quot;state&quot;, &quot;state&quot;, &quot;state&quot;, &quot;state&quot;, &quot;state&quot;, &quot;state&quot;, &quot;state&quot;, &quot;state&quot;, &quot;statement&quot;, &quot;statement&quot;, &quot;statement&quot;, &quot;statement&quot;, &quot;statement&quot;, &quot;statement&quot;, &quot;statement&quot;, &quot;statement&quot;, &quot;statement&quot;, &quot;statement&quot;, &quot;statement&quot;, &quot;statement&quot;, &quot;statement&quot;, &quot;statement&quot;, &quot;statement&quot;, &quot;statement&quot;, &quot;statement&quot;, &quot;states&quot;, &quot;states&quot;, &quot;states&quot;, &quot;states&quot;, &quot;states&quot;, &quot;states&quot;, &quot;states&quot;, &quot;states&quot;, &quot;states&quot;, &quot;states&quot;, &quot;states&quot;, &quot;states&quot;, &quot;states&quot;, &quot;states&quot;, &quot;states&quot;, &quot;states&quot;, &quot;states&quot;, &quot;states&quot;, &quot;states&quot;, &quot;states&quot;, &quot;stationed&quot;, &quot;stationed&quot;, &quot;stationed&quot;, &quot;stationed&quot;, &quot;stationed&quot;, &quot;stationed&quot;, &quot;statute&quot;, &quot;statute&quot;, &quot;statute&quot;, &quot;statute&quot;, &quot;statute&quot;, &quot;statute&quot;, &quot;statute&quot;, &quot;statute&quot;, &quot;statute&quot;, &quot;statute&quot;, &quot;statute&quot;, &quot;statute&quot;, &quot;statute&quot;, &quot;statute&quot;, &quot;statute&quot;, &quot;steamboats&quot;, &quot;steamboats&quot;, &quot;steamboats&quot;, &quot;step&quot;, &quot;step&quot;, &quot;step&quot;, &quot;step&quot;, &quot;step&quot;, &quot;step&quot;, &quot;step&quot;, &quot;step&quot;, &quot;step&quot;, &quot;step&quot;, &quot;step&quot;, &quot;step&quot;, &quot;step&quot;, &quot;step&quot;, &quot;step&quot;, &quot;step&quot;, &quot;step&quot;, &quot;step&quot;, &quot;stevens&quot;, &quot;stevens&quot;, &quot;stevens&quot;, &quot;stevens&quot;, &quot;stevens&quot;, &quot;stir&quot;, &quot;stir&quot;, &quot;stir&quot;, &quot;stir&quot;, &quot;stir&quot;, &quot;stirring&quot;, &quot;stirring&quot;, &quot;stirring&quot;, &quot;stirring&quot;, &quot;stones&quot;, &quot;stones&quot;, &quot;stones&quot;, &quot;stones&quot;, &quot;stones&quot;, &quot;stones&quot;, &quot;stones&quot;, &quot;stones&quot;, &quot;stood&quot;, &quot;stood&quot;, &quot;stood&quot;, &quot;stood&quot;, &quot;stood&quot;, &quot;stood&quot;, &quot;stood&quot;, &quot;stood&quot;, &quot;stood&quot;, &quot;stood&quot;, &quot;stood&quot;, &quot;stood&quot;, &quot;stood&quot;, &quot;stood&quot;, &quot;stood&quot;, &quot;story&quot;, &quot;story&quot;, &quot;story&quot;, &quot;story&quot;, &quot;story&quot;, &quot;story&quot;, &quot;story&quot;, &quot;story&quot;, &quot;story&quot;, &quot;story&quot;, &quot;story&quot;, &quot;story&quot;, &quot;story&quot;, &quot;story&quot;, &quot;strategic&quot;, &quot;strategic&quot;, &quot;strategic&quot;, &quot;strategic&quot;, &quot;strategic&quot;, &quot;strategic&quot;, &quot;strategic&quot;, &quot;strategic&quot;, &quot;strategic&quot;, &quot;strategic&quot;, &quot;strategic&quot;, &quot;strategic&quot;, &quot;street&quot;, &quot;street&quot;, &quot;street&quot;, &quot;street&quot;, &quot;street&quot;, &quot;street&quot;, &quot;street&quot;, &quot;street&quot;, &quot;street&quot;, &quot;street&quot;, &quot;street&quot;, &quot;strength&quot;, &quot;strength&quot;, &quot;strength&quot;, &quot;strength&quot;, &quot;strength&quot;, &quot;strength&quot;, &quot;strength&quot;, &quot;strength&quot;, &quot;strength&quot;, &quot;strength&quot;, &quot;strength&quot;, &quot;strength&quot;, &quot;strength&quot;, &quot;strength&quot;, &quot;strength&quot;, &quot;strength&quot;, &quot;strength&quot;, &quot;strength&quot;, &quot;strength&quot;, &quot;stretch&quot;, &quot;stretch&quot;, &quot;stretch&quot;, &quot;stretch&quot;, &quot;stretch&quot;, &quot;stretch&quot;, &quot;stretch&quot;, &quot;stretch&quot;, &quot;strike&quot;, &quot;strike&quot;, &quot;strike&quot;, &quot;strike&quot;, &quot;strike&quot;, &quot;strike&quot;, &quot;strike&quot;, &quot;strike&quot;, &quot;strike&quot;, &quot;strike&quot;, &quot;strike&quot;, &quot;strike&quot;, &quot;strike&quot;, &quot;stringency&quot;, &quot;stringency&quot;, &quot;stringency&quot;, &quot;stringency&quot;, &quot;stringency&quot;, &quot;strive&quot;, &quot;strive&quot;, &quot;strive&quot;, &quot;strive&quot;, &quot;strive&quot;, &quot;strive&quot;, &quot;strive&quot;, &quot;strive&quot;, &quot;strive&quot;, &quot;strive&quot;, &quot;strive&quot;, &quot;strongly&quot;, &quot;strongly&quot;, &quot;strongly&quot;, &quot;strongly&quot;, &quot;strongly&quot;, &quot;strongly&quot;, &quot;strongly&quot;, &quot;strongly&quot;, &quot;strongly&quot;, &quot;strongly&quot;, &quot;strongly&quot;, &quot;strongly&quot;, &quot;strongly&quot;, &quot;strongly&quot;, &quot;strongly&quot;, &quot;strongly&quot;, &quot;strongly&quot;, &quot;student&quot;, &quot;student&quot;, &quot;student&quot;, &quot;student&quot;, &quot;student&quot;, &quot;student&quot;, &quot;student&quot;, &quot;subdued&quot;, &quot;subdued&quot;, &quot;subdued&quot;, &quot;subdued&quot;, &quot;subdued&quot;, &quot;subject&quot;, &quot;subject&quot;, &quot;subject&quot;, &quot;subject&quot;, &quot;subject&quot;, &quot;subject&quot;, &quot;subject&quot;, &quot;subject&quot;, &quot;subject&quot;, &quot;subject&quot;, &quot;subject&quot;, &quot;subject&quot;, &quot;subject&quot;, &quot;subject&quot;, &quot;subject&quot;, &quot;subject&quot;, &quot;subject&quot;, &quot;subject&quot;, &quot;subject&quot;, &quot;submarine&quot;, &quot;submarine&quot;, &quot;submarine&quot;, &quot;submarine&quot;, &quot;submarine&quot;, &quot;submarine&quot;, &quot;submarine&quot;, &quot;submarines&quot;, &quot;submarines&quot;, &quot;submarines&quot;, &quot;submarines&quot;, &quot;submarines&quot;, &quot;submarines&quot;, &quot;submarines&quot;, &quot;submission&quot;, &quot;submission&quot;, &quot;submission&quot;, &quot;submission&quot;, &quot;submission&quot;, &quot;submission&quot;, &quot;submission&quot;, &quot;submission&quot;, &quot;submission&quot;, &quot;submission&quot;, &quot;submitting&quot;, &quot;submitting&quot;, &quot;submitting&quot;, &quot;submitting&quot;, &quot;submitting&quot;, &quot;submitting&quot;, &quot;submitting&quot;, &quot;submitting&quot;, &quot;submitting&quot;, &quot;subordination&quot;, &quot;subordination&quot;, &quot;subordination&quot;, &quot;subordination&quot;, &quot;subordination&quot;, &quot;subscriptions&quot;, &quot;subscriptions&quot;, &quot;subscriptions&quot;, &quot;subscriptions&quot;, &quot;subscriptions&quot;, &quot;subsidiary&quot;, &quot;subsidiary&quot;, &quot;subsidiary&quot;, &quot;subsidiary&quot;, &quot;subsidiary&quot;, &quot;subsidies&quot;, &quot;subsidies&quot;, &quot;subsidies&quot;, &quot;subsidies&quot;, &quot;substantive&quot;, &quot;substantive&quot;, &quot;substantive&quot;, &quot;substantive&quot;, &quot;substantive&quot;, &quot;substantive&quot;, &quot;substantive&quot;, &quot;substitute&quot;, &quot;substitute&quot;, &quot;substitute&quot;, &quot;substitute&quot;, &quot;substitute&quot;, &quot;substitute&quot;, &quot;substitute&quot;, &quot;substitute&quot;, &quot;substitute&quot;, &quot;substitute&quot;, &quot;substitute&quot;, &quot;substitute&quot;, &quot;substitute&quot;, &quot;substitute&quot;, &quot;subversive&quot;, &quot;subversive&quot;, &quot;subversive&quot;, &quot;subversive&quot;, &quot;subversive&quot;, &quot;subversive&quot;, &quot;subversive&quot;, &quot;succeeding&quot;, &quot;succeeding&quot;, &quot;succeeding&quot;, &quot;succeeding&quot;, &quot;succeeding&quot;, &quot;succeeding&quot;, &quot;succeeding&quot;, &quot;succeeding&quot;, &quot;succeeding&quot;, &quot;succeeding&quot;, &quot;succeeding&quot;, &quot;successes&quot;, &quot;successes&quot;, &quot;successes&quot;, &quot;successes&quot;, &quot;successes&quot;, &quot;successes&quot;, &quot;successes&quot;, &quot;sufficiency&quot;, &quot;sufficiency&quot;, &quot;sufficiency&quot;, &quot;sufficiency&quot;, &quot;sufficiency&quot;, &quot;sufficiency&quot;, &quot;sufficiently&quot;, &quot;sufficiently&quot;, &quot;sufficiently&quot;, &quot;sufficiently&quot;, &quot;sufficiently&quot;, &quot;sufficiently&quot;, &quot;sufficiently&quot;, &quot;sufficiently&quot;, &quot;sufficiently&quot;, &quot;sufficiently&quot;, &quot;sufficiently&quot;, &quot;sufficiently&quot;, &quot;sufficiently&quot;, &quot;suggest&quot;, &quot;suggest&quot;, &quot;suggest&quot;, &quot;suggest&quot;, &quot;suggest&quot;, &quot;suggest&quot;, &quot;suggest&quot;, &quot;suggest&quot;, &quot;suggest&quot;, &quot;suggest&quot;, &quot;suggest&quot;, &quot;suggest&quot;, &quot;suggest&quot;, &quot;suggest&quot;, &quot;suggest&quot;, &quot;suggest&quot;, &quot;suggest&quot;, &quot;suggest&quot;, &quot;suicide&quot;, &quot;suicide&quot;, &quot;suicide&quot;, &quot;suicide&quot;, &quot;suicide&quot;, &quot;suited&quot;, &quot;suited&quot;, &quot;suited&quot;, &quot;suited&quot;, &quot;suited&quot;, &quot;suited&quot;, &quot;suited&quot;, &quot;sum&quot;, &quot;sum&quot;, &quot;sum&quot;, &quot;sum&quot;, &quot;sum&quot;, &quot;sum&quot;, &quot;sum&quot;, &quot;sum&quot;, &quot;sum&quot;, &quot;sum&quot;, &quot;sum&quot;, &quot;sum&quot;, &quot;sum&quot;, &quot;sum&quot;, &quot;sum&quot;, &quot;sum&quot;, &quot;sumter&quot;, &quot;sumter&quot;, &quot;sunk&quot;, &quot;sunk&quot;, &quot;sunk&quot;, &quot;sunk&quot;, &quot;sunk&quot;, &quot;sunk&quot;, &quot;sunk&quot;, &quot;sunk&quot;, &quot;superintendents&quot;, &quot;superintendents&quot;, &quot;superintendents&quot;, &quot;superintendents&quot;, &quot;superintendents&quot;, &quot;superintendents&quot;, &quot;superintendents&quot;, &quot;superior&quot;, &quot;superior&quot;, &quot;superior&quot;, &quot;superior&quot;, &quot;superior&quot;, &quot;superior&quot;, &quot;superior&quot;, &quot;superior&quot;, &quot;superior&quot;, &quot;superior&quot;, &quot;superior&quot;, &quot;superior&quot;, &quot;superior&quot;, &quot;supersonic&quot;, &quot;supersonic&quot;, &quot;supervising&quot;, &quot;supervising&quot;, &quot;supervising&quot;, &quot;supervising&quot;, &quot;supervising&quot;, &quot;supervision&quot;, &quot;supervision&quot;, &quot;supervision&quot;, &quot;supervision&quot;, &quot;supervision&quot;, &quot;supervision&quot;, &quot;supervision&quot;, &quot;supervision&quot;, &quot;supervision&quot;, &quot;supervision&quot;, &quot;supervision&quot;, &quot;supervision&quot;, &quot;supervisors&quot;, &quot;supervisors&quot;, &quot;supervisors&quot;, &quot;supervisors&quot;, &quot;supervisors&quot;, &quot;supplement&quot;, &quot;supplement&quot;, &quot;supplement&quot;, &quot;supplement&quot;, &quot;supplement&quot;, &quot;supplement&quot;, &quot;supplement&quot;, &quot;supplement&quot;, &quot;supplement&quot;, &quot;supporters&quot;, &quot;supporters&quot;, &quot;supporters&quot;, &quot;supporters&quot;, &quot;supporters&quot;, &quot;supporters&quot;, &quot;supporters&quot;, &quot;supporters&quot;, &quot;supporters&quot;, &quot;supporters&quot;, &quot;supporting&quot;, &quot;supporting&quot;, &quot;supporting&quot;, &quot;supporting&quot;, &quot;supporting&quot;, &quot;supporting&quot;, &quot;supporting&quot;, &quot;supporting&quot;, &quot;supporting&quot;, &quot;supporting&quot;, &quot;supporting&quot;, &quot;supporting&quot;, &quot;supporting&quot;, &quot;supposing&quot;, &quot;supposing&quot;, &quot;supposing&quot;, &quot;supposing&quot;, &quot;supposing&quot;, &quot;suppression&quot;, &quot;suppression&quot;, &quot;suppression&quot;, &quot;suppression&quot;, &quot;suppression&quot;, &quot;suppression&quot;, &quot;suppression&quot;, &quot;suppression&quot;, &quot;suppression&quot;, &quot;suppression&quot;, &quot;suppression&quot;, &quot;surface&quot;, &quot;surface&quot;, &quot;surface&quot;, &quot;surface&quot;, &quot;surface&quot;, &quot;surface&quot;, &quot;surface&quot;, &quot;surrendering&quot;, &quot;surrendering&quot;, &quot;surrendering&quot;, &quot;surrendering&quot;, &quot;surrendering&quot;, &quot;survived&quot;, &quot;survived&quot;, &quot;survived&quot;, &quot;survived&quot;, &quot;survived&quot;, &quot;survived&quot;, &quot;survived&quot;, &quot;swear&quot;, &quot;swear&quot;, &quot;swear&quot;, &quot;sweet&quot;, &quot;sweet&quot;, &quot;sweet&quot;, &quot;sweet&quot;, &quot;sweet&quot;, &quot;swiftly&quot;, &quot;swiftly&quot;, &quot;swiftly&quot;, &quot;swiftly&quot;, &quot;swiftly&quot;, &quot;sword&quot;, &quot;sword&quot;, &quot;sword&quot;, &quot;sword&quot;, &quot;sword&quot;, &quot;symbols&quot;, &quot;symbols&quot;, &quot;symbols&quot;, &quot;sympathetic&quot;, &quot;sympathetic&quot;, &quot;sympathetic&quot;, &quot;sympathetic&quot;, &quot;sympathetic&quot;, &quot;sympathetic&quot;, &quot;sympathetic&quot;, &quot;sympathetic&quot;, &quot;syria&quot;, &quot;syria&quot;, &quot;syria&quot;, &quot;syria&quot;, &quot;syria&quot;, &quot;syria&quot;, &quot;taft&quot;, &quot;taft&quot;, &quot;taft&quot;, &quot;taft&quot;, &quot;taft&quot;, &quot;taft&quot;, &quot;taft&quot;, &quot;taft&quot;, &quot;taft&quot;, &quot;taiwan&quot;, &quot;taiwan&quot;, &quot;takes&quot;, &quot;takes&quot;, &quot;takes&quot;, &quot;takes&quot;, &quot;takes&quot;, &quot;takes&quot;, &quot;takes&quot;, &quot;takes&quot;, &quot;takes&quot;, &quot;takes&quot;, &quot;takes&quot;, &quot;takes&quot;, &quot;takes&quot;, &quot;takes&quot;, &quot;takes&quot;, &quot;takes&quot;, &quot;takes&quot;, &quot;takes&quot;, &quot;talked&quot;, &quot;talked&quot;, &quot;talked&quot;, &quot;talked&quot;, &quot;talked&quot;, &quot;talked&quot;, &quot;talked&quot;, &quot;talked&quot;, &quot;talking&quot;, &quot;talking&quot;, &quot;talking&quot;, &quot;talking&quot;, &quot;talking&quot;, &quot;talking&quot;, &quot;talking&quot;, &quot;talking&quot;, &quot;talking&quot;, &quot;tall&quot;, &quot;tank&quot;, &quot;tank&quot;, &quot;tank&quot;, &quot;tank&quot;, &quot;tank&quot;, &quot;tapes&quot;, &quot;target&quot;, &quot;target&quot;, &quot;target&quot;, &quot;target&quot;, &quot;target&quot;, &quot;target&quot;, &quot;target&quot;, &quot;tariff&quot;, &quot;tariff&quot;, &quot;tariff&quot;, &quot;tariff&quot;, &quot;tariff&quot;, &quot;tariff&quot;, &quot;tariff&quot;, &quot;tariff&quot;, &quot;tariff&quot;, &quot;tariff&quot;, &quot;tariff&quot;, &quot;tariff&quot;, &quot;tariff&quot;, &quot;tariff&quot;, &quot;tariff&quot;, &quot;tariff&quot;, &quot;tariff&quot;, &quot;tasks&quot;, &quot;tasks&quot;, &quot;tasks&quot;, &quot;tasks&quot;, &quot;tasks&quot;, &quot;tasks&quot;, &quot;tax&quot;, &quot;tax&quot;, &quot;tax&quot;, &quot;tax&quot;, &quot;tax&quot;, &quot;tax&quot;, &quot;tax&quot;, &quot;tax&quot;, &quot;tax&quot;, &quot;tax&quot;, &quot;tax&quot;, &quot;tax&quot;, &quot;tax&quot;, &quot;tax&quot;, &quot;tax&quot;, &quot;tax&quot;, &quot;tax&quot;, &quot;tax&quot;, &quot;tax&quot;, &quot;taxable&quot;, &quot;taxable&quot;, &quot;taxable&quot;, &quot;taxed&quot;, &quot;taxed&quot;, &quot;taxed&quot;, &quot;taxed&quot;, &quot;taxed&quot;, &quot;taxed&quot;, &quot;taxed&quot;, &quot;taxed&quot;, &quot;taxed&quot;, &quot;taxpayers&quot;, &quot;taxpayers&quot;, &quot;taxpayers&quot;, &quot;taxpayers&quot;, &quot;taxpayers&quot;, &quot;teachers&quot;, &quot;teachers&quot;, &quot;teachers&quot;, &quot;teachers&quot;, &quot;teachers&quot;, &quot;teachers&quot;, &quot;teachers&quot;, &quot;teachers&quot;, &quot;teachers&quot;, &quot;tear&quot;, &quot;tear&quot;, &quot;tear&quot;, &quot;tear&quot;, &quot;tear&quot;, &quot;tear&quot;, &quot;technicians&quot;, &quot;technicians&quot;, &quot;technicians&quot;, &quot;technicians&quot;, &quot;technology&quot;, &quot;technology&quot;, &quot;technology&quot;, &quot;technology&quot;, &quot;technology&quot;, &quot;technology&quot;, &quot;technology&quot;, &quot;technology&quot;, &quot;teenagers&quot;, &quot;teheran&quot;, &quot;teheran&quot;, &quot;tehuantepec&quot;, &quot;tehuantepec&quot;, &quot;tehuantepec&quot;, &quot;telegram&quot;, &quot;telegram&quot;, &quot;telegram&quot;, &quot;telegram&quot;, &quot;telegram&quot;, &quot;telegraphed&quot;, &quot;telegraphed&quot;, &quot;telegraphed&quot;, &quot;tender&quot;, &quot;tender&quot;, &quot;tender&quot;, &quot;tender&quot;, &quot;tender&quot;, &quot;tender&quot;, &quot;tender&quot;, &quot;tender&quot;, &quot;tenders&quot;, &quot;tending&quot;, &quot;tending&quot;, &quot;tending&quot;, &quot;tending&quot;, &quot;tending&quot;, &quot;tending&quot;, &quot;tending&quot;, &quot;tending&quot;, &quot;tens&quot;, &quot;tens&quot;, &quot;tens&quot;, &quot;tens&quot;, &quot;tens&quot;, &quot;tens&quot;, &quot;tens&quot;, &quot;tens&quot;, &quot;tens&quot;, &quot;tens&quot;, &quot;tensions&quot;, &quot;tensions&quot;, &quot;tensions&quot;, &quot;tensions&quot;, &quot;tensions&quot;, &quot;tensions&quot;, &quot;termed&quot;, &quot;termed&quot;, &quot;termed&quot;, &quot;termed&quot;, &quot;termed&quot;, &quot;termed&quot;, &quot;termed&quot;, &quot;terminate&quot;, &quot;terminate&quot;, &quot;terminate&quot;, &quot;terminate&quot;, &quot;terminate&quot;, &quot;terminate&quot;, &quot;terminate&quot;, &quot;terminate&quot;, &quot;termination&quot;, &quot;termination&quot;, &quot;termination&quot;, &quot;termination&quot;, &quot;termination&quot;, &quot;termination&quot;, &quot;termination&quot;, &quot;termination&quot;, &quot;termination&quot;, &quot;termination&quot;, &quot;terrific&quot;, &quot;terrific&quot;, &quot;terrific&quot;, &quot;terrific&quot;, &quot;territories&quot;, &quot;territories&quot;, &quot;territories&quot;, &quot;territories&quot;, &quot;territories&quot;, &quot;territories&quot;, &quot;territories&quot;, &quot;territories&quot;, &quot;territories&quot;, &quot;territories&quot;, &quot;territories&quot;, &quot;territories&quot;, &quot;territories&quot;, &quot;territories&quot;, &quot;territories&quot;, &quot;territories&quot;, &quot;territory&quot;, &quot;territory&quot;, &quot;territory&quot;, &quot;territory&quot;, &quot;territory&quot;, &quot;territory&quot;, &quot;territory&quot;, &quot;territory&quot;, &quot;territory&quot;, &quot;territory&quot;, &quot;territory&quot;, &quot;territory&quot;, &quot;territory&quot;, &quot;territory&quot;, &quot;territory&quot;, &quot;territory&quot;, &quot;territory&quot;, &quot;territory&quot;, &quot;terror&quot;, &quot;terror&quot;, &quot;terror&quot;, &quot;terror&quot;, &quot;terror&quot;, &quot;terror&quot;, &quot;terror&quot;, &quot;terror&quot;, &quot;terror&quot;, &quot;terror&quot;, &quot;terror&quot;, &quot;terror&quot;, &quot;terror&quot;, &quot;test&quot;, &quot;test&quot;, &quot;test&quot;, &quot;test&quot;, &quot;test&quot;, &quot;test&quot;, &quot;test&quot;, &quot;test&quot;, &quot;test&quot;, &quot;test&quot;, &quot;test&quot;, &quot;test&quot;, &quot;test&quot;, &quot;test&quot;, &quot;test&quot;, &quot;testimony&quot;, &quot;testimony&quot;, &quot;testimony&quot;, &quot;testimony&quot;, &quot;testimony&quot;, &quot;testimony&quot;, &quot;testimony&quot;, &quot;testimony&quot;, &quot;testimony&quot;, &quot;testimony&quot;, &quot;testimony&quot;, &quot;testimony&quot;, &quot;testimony&quot;, &quot;testimony&quot;, &quot;testimony&quot;, &quot;texas&quot;, &quot;texas&quot;, &quot;texas&quot;, &quot;texas&quot;, &quot;texas&quot;, &quot;texas&quot;, &quot;texas&quot;, &quot;texas&quot;, &quot;texas&quot;, &quot;texas&quot;, &quot;texas&quot;, &quot;texas&quot;, &quot;texas&quot;, &quot;texas&quot;, &quot;texas&quot;, &quot;texas&quot;, &quot;texas&quot;, &quot;th&quot;, &quot;th&quot;, &quot;th&quot;, &quot;th&quot;, &quot;th&quot;, &quot;th&quot;, &quot;th&quot;, &quot;th&quot;, &quot;th&quot;, &quot;th&quot;, &quot;th&quot;, &quot;th&quot;, &quot;th&quot;, &quot;th&quot;, &quot;th&quot;, &quot;th&quot;, &quot;th&quot;, &quot;th&quot;, &quot;th&quot;, &quot;thailand&quot;, &quot;thailand&quot;, &quot;thailand&quot;, &quot;thank&quot;, &quot;thank&quot;, &quot;thank&quot;, &quot;thank&quot;, &quot;thank&quot;, &quot;thank&quot;, &quot;thank&quot;, &quot;thank&quot;, &quot;thank&quot;, &quot;thank&quot;, &quot;thank&quot;, &quot;thank&quot;, &quot;thank&quot;, &quot;thank&quot;, &quot;thereof&quot;, &quot;thereof&quot;, &quot;thereof&quot;, &quot;thereof&quot;, &quot;thereof&quot;, &quot;thereof&quot;, &quot;thereof&quot;, &quot;thereof&quot;, &quot;thereof&quot;, &quot;thereof&quot;, &quot;thereof&quot;, &quot;thieu&quot;, &quot;think&quot;, &quot;think&quot;, &quot;think&quot;, &quot;think&quot;, &quot;think&quot;, &quot;think&quot;, &quot;think&quot;, &quot;think&quot;, &quot;think&quot;, &quot;think&quot;, &quot;think&quot;, &quot;think&quot;, &quot;think&quot;, &quot;think&quot;, &quot;think&quot;, &quot;think&quot;, &quot;think&quot;, &quot;think&quot;, &quot;think&quot;, &quot;thoroughgoing&quot;, &quot;thoroughgoing&quot;, &quot;thoroughgoing&quot;, &quot;thoughts&quot;, &quot;thoughts&quot;, &quot;thoughts&quot;, &quot;thoughts&quot;, &quot;thoughts&quot;, &quot;thoughts&quot;, &quot;thoughts&quot;, &quot;thoughts&quot;, &quot;threat&quot;, &quot;threat&quot;, &quot;threat&quot;, &quot;threat&quot;, &quot;threat&quot;, &quot;threat&quot;, &quot;threat&quot;, &quot;threat&quot;, &quot;threat&quot;, &quot;threat&quot;, &quot;threat&quot;, &quot;threat&quot;, &quot;threat&quot;, &quot;threat&quot;, &quot;threat&quot;, &quot;threat&quot;, &quot;threat&quot;, &quot;tides&quot;, &quot;tides&quot;, &quot;tides&quot;, &quot;tides&quot;, &quot;tides&quot;, &quot;tides&quot;, &quot;tie&quot;, &quot;tie&quot;, &quot;tie&quot;, &quot;tie&quot;, &quot;tie&quot;, &quot;tie&quot;, &quot;tie&quot;, &quot;tie&quot;, &quot;tied&quot;, &quot;tied&quot;, &quot;tied&quot;, &quot;tied&quot;, &quot;tied&quot;, &quot;tied&quot;, &quot;tied&quot;, &quot;tied&quot;, &quot;tile&quot;, &quot;tile&quot;, &quot;tile&quot;, &quot;time&quot;, &quot;time&quot;, &quot;time&quot;, &quot;time&quot;, &quot;time&quot;, &quot;time&quot;, &quot;time&quot;, &quot;time&quot;, &quot;time&quot;, &quot;time&quot;, &quot;time&quot;, &quot;time&quot;, &quot;time&quot;, &quot;time&quot;, &quot;time&quot;, &quot;time&quot;, &quot;time&quot;, &quot;time&quot;, &quot;time&quot;, &quot;time&quot;, &quot;timeless&quot;, &quot;tip&quot;, &quot;tip&quot;, &quot;tip&quot;, &quot;tip&quot;, &quot;tip&quot;, &quot;tip&quot;, &quot;today&quot;, &quot;today&quot;, &quot;today&quot;, &quot;today&quot;, &quot;today&quot;, &quot;today&quot;, &quot;today&quot;, &quot;today&quot;, &quot;today&quot;, &quot;today&quot;, &quot;today&quot;, &quot;today&quot;, &quot;today&quot;, &quot;today&quot;, &quot;today&quot;, &quot;today&quot;, &quot;today&quot;, &quot;today&quot;, &quot;today&quot;, &quot;today&quot;, &quot;tolerated&quot;, &quot;tolerated&quot;, &quot;tolerated&quot;, &quot;tolerated&quot;, &quot;tolerated&quot;, &quot;tolerated&quot;, &quot;tolerated&quot;, &quot;tolerated&quot;, &quot;tolerated&quot;, &quot;tolerated&quot;, &quot;ton&quot;, &quot;ton&quot;, &quot;ton&quot;, &quot;ton&quot;, &quot;ton&quot;, &quot;ton&quot;, &quot;tonight&quot;, &quot;tonight&quot;, &quot;tonight&quot;, &quot;tonight&quot;, &quot;tonight&quot;, &quot;tonight&quot;, &quot;tonight&quot;, &quot;tonight&quot;, &quot;tonight&quot;, &quot;tonight&quot;, &quot;tonight&quot;, &quot;tonight&quot;, &quot;tonight&quot;, &quot;tonight&quot;, &quot;tonight&quot;, &quot;tonight&quot;, &quot;tonight&quot;, &quot;took&quot;, &quot;took&quot;, &quot;took&quot;, &quot;took&quot;, &quot;took&quot;, &quot;took&quot;, &quot;took&quot;, &quot;took&quot;, &quot;took&quot;, &quot;took&quot;, &quot;took&quot;, &quot;took&quot;, &quot;took&quot;, &quot;took&quot;, &quot;took&quot;, &quot;took&quot;, &quot;took&quot;, &quot;took&quot;, &quot;took&quot;, &quot;topeka&quot;, &quot;topeka&quot;, &quot;topic&quot;, &quot;topic&quot;, &quot;topic&quot;, &quot;topic&quot;, &quot;topic&quot;, &quot;topic&quot;, &quot;trader&quot;, &quot;trader&quot;, &quot;trader&quot;, &quot;trader&quot;, &quot;trades&quot;, &quot;trades&quot;, &quot;trades&quot;, &quot;trades&quot;, &quot;traditional&quot;, &quot;traditional&quot;, &quot;traditional&quot;, &quot;traditional&quot;, &quot;traditional&quot;, &quot;traditional&quot;, &quot;traditional&quot;, &quot;traditional&quot;, &quot;traditional&quot;, &quot;traditional&quot;, &quot;traditional&quot;, &quot;traditions&quot;, &quot;traditions&quot;, &quot;traditions&quot;, &quot;traditions&quot;, &quot;traditions&quot;, &quot;traditions&quot;, &quot;traditions&quot;, &quot;traditions&quot;, &quot;traditions&quot;, &quot;traditions&quot;, &quot;traditions&quot;, &quot;tranquil&quot;, &quot;tranquil&quot;, &quot;tranquil&quot;, &quot;tranquil&quot;, &quot;transcripts&quot;, &quot;transcripts&quot;, &quot;transfers&quot;, &quot;transfers&quot;, &quot;transfers&quot;, &quot;transfers&quot;, &quot;transfers&quot;, &quot;transit&quot;, &quot;transit&quot;, &quot;transit&quot;, &quot;transit&quot;, &quot;transit&quot;, &quot;transit&quot;, &quot;transit&quot;, &quot;transit&quot;, &quot;translation&quot;, &quot;translation&quot;, &quot;translation&quot;, &quot;translation&quot;, &quot;translation&quot;, &quot;translation&quot;, &quot;translation&quot;, &quot;transmitting&quot;, &quot;transmitting&quot;, &quot;transmitting&quot;, &quot;transmitting&quot;, &quot;transmitting&quot;, &quot;traveling&quot;, &quot;traveling&quot;, &quot;traveling&quot;, &quot;traveling&quot;, &quot;traveling&quot;, &quot;traveling&quot;, &quot;traveling&quot;, &quot;traveling&quot;, &quot;traveling&quot;, &quot;treason&quot;, &quot;treason&quot;, &quot;treason&quot;, &quot;treason&quot;, &quot;treason&quot;, &quot;treason&quot;, &quot;treason&quot;, &quot;treasury&quot;, &quot;treasury&quot;, &quot;treasury&quot;, &quot;treasury&quot;, &quot;treasury&quot;, &quot;treasury&quot;, &quot;treasury&quot;, &quot;treasury&quot;, &quot;treasury&quot;, &quot;treasury&quot;, &quot;treasury&quot;, &quot;treasury&quot;, &quot;treasury&quot;, &quot;treasury&quot;, &quot;treasury&quot;, &quot;treasury&quot;, &quot;treasury&quot;, &quot;treasury&quot;, &quot;treating&quot;, &quot;treating&quot;, &quot;treating&quot;, &quot;treating&quot;, &quot;treating&quot;, &quot;treating&quot;, &quot;treating&quot;, &quot;treating&quot;, &quot;treating&quot;, &quot;treating&quot;, &quot;treaty&quot;, &quot;treaty&quot;, &quot;treaty&quot;, &quot;treaty&quot;, &quot;treaty&quot;, &quot;treaty&quot;, &quot;treaty&quot;, &quot;treaty&quot;, &quot;treaty&quot;, &quot;treaty&quot;, &quot;treaty&quot;, &quot;treaty&quot;, &quot;treaty&quot;, &quot;treaty&quot;, &quot;treaty&quot;, &quot;treaty&quot;, &quot;treaty&quot;, &quot;treaty&quot;, &quot;treaty&quot;, &quot;tree&quot;, &quot;tree&quot;, &quot;tree&quot;, &quot;tree&quot;, &quot;tree&quot;, &quot;tree&quot;, &quot;tree&quot;, &quot;trespassers&quot;, &quot;trespassers&quot;, &quot;trespassers&quot;, &quot;trewhitt&quot;, &quot;trewhitt&quot;, &quot;tribe&quot;, &quot;tribe&quot;, &quot;tribe&quot;, &quot;tribe&quot;, &quot;tribe&quot;, &quot;tribes&quot;, &quot;tribes&quot;, &quot;tribes&quot;, &quot;tribes&quot;, &quot;tribes&quot;, &quot;tribes&quot;, &quot;tribes&quot;, &quot;tribes&quot;, &quot;tribes&quot;, &quot;tribes&quot;, &quot;tribute&quot;, &quot;tribute&quot;, &quot;tribute&quot;, &quot;tribute&quot;, &quot;tribute&quot;, &quot;tribute&quot;, &quot;tribute&quot;, &quot;tribute&quot;, &quot;tribute&quot;, &quot;tribute&quot;, &quot;trillion&quot;, &quot;triple&quot;, &quot;triple&quot;, &quot;triple&quot;, &quot;triple&quot;, &quot;triumphant&quot;, &quot;triumphant&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;troops&quot;, &quot;truce&quot;, &quot;truce&quot;, &quot;truce&quot;, &quot;truce&quot;, &quot;truce&quot;, &quot;truce&quot;, &quot;truck&quot;, &quot;truck&quot;, &quot;truck&quot;, &quot;truck&quot;, &quot;tuesday&quot;, &quot;tuesday&quot;, &quot;tuesday&quot;, &quot;tuesday&quot;, &quot;tuesday&quot;, &quot;tuesday&quot;, &quot;tuesday&quot;, &quot;tuesday&quot;, &quot;tuesday&quot;, &quot;tuition&quot;, &quot;tulane&quot;, &quot;turmoil&quot;, &quot;turmoil&quot;, &quot;turmoil&quot;, &quot;turmoil&quot;, &quot;turmoil&quot;, &quot;turmoil&quot;, &quot;turmoil&quot;, &quot;turreted&quot;, &quot;tyranny&quot;, &quot;tyranny&quot;, &quot;tyranny&quot;, &quot;tyranny&quot;, &quot;tyranny&quot;, &quot;tyranny&quot;, &quot;tyranny&quot;, &quot;tyranny&quot;, &quot;tyranny&quot;, &quot;tyranny&quot;, &quot;tyranny&quot;, &quot;uh&quot;, &quot;uh&quot;, &quot;uh&quot;, &quot;unable&quot;, &quot;unable&quot;, &quot;unable&quot;, &quot;unable&quot;, &quot;unable&quot;, &quot;unable&quot;, &quot;unable&quot;, &quot;unable&quot;, &quot;unable&quot;, &quot;unable&quot;, &quot;unable&quot;, &quot;unable&quot;, &quot;unable&quot;, &quot;unable&quot;, &quot;unable&quot;, &quot;unable&quot;, &quot;unanimous&quot;, &quot;unanimous&quot;, &quot;unanimous&quot;, &quot;unanimous&quot;, &quot;unanimous&quot;, &quot;unanimous&quot;, &quot;unanimous&quot;, &quot;unanimous&quot;, &quot;unanimous&quot;, &quot;unanimous&quot;, &quot;unanimous&quot;, &quot;unanimous&quot;, &quot;unavailing&quot;, &quot;unavailing&quot;, &quot;unavailing&quot;, &quot;unceasing&quot;, &quot;unceasing&quot;, &quot;unceasing&quot;, &quot;unchanged&quot;, &quot;unchanged&quot;, &quot;unchanged&quot;, &quot;unchanged&quot;, &quot;unchanged&quot;, &quot;unchanged&quot;, &quot;unchanged&quot;, &quot;unchanged&quot;, &quot;uncontrollable&quot;, &quot;uncontrollable&quot;, &quot;uncontrollable&quot;, &quot;uncontrollable&quot;, &quot;uncontrollable&quot;, &quot;underestimate&quot;, &quot;underestimate&quot;, &quot;underestimate&quot;, &quot;underestimate&quot;, &quot;undergone&quot;, &quot;undergone&quot;, &quot;undergone&quot;, &quot;undergone&quot;, &quot;undermined&quot;, &quot;undermined&quot;, &quot;undermined&quot;, &quot;undermined&quot;, &quot;undermined&quot;, &quot;undermined&quot;, &quot;undermined&quot;, &quot;undersigned&quot;, &quot;undersigned&quot;, &quot;undersigned&quot;, &quot;undersigned&quot;, &quot;undertakings&quot;, &quot;undertakings&quot;, &quot;undertakings&quot;, &quot;undertakings&quot;, &quot;undertakings&quot;, &quot;undertakings&quot;, &quot;undesirable&quot;, &quot;undesirable&quot;, &quot;undesirable&quot;, &quot;undesirable&quot;, &quot;undisputed&quot;, &quot;undisputed&quot;, &quot;undisputed&quot;, &quot;undisputed&quot;, &quot;undisputed&quot;, &quot;undisputed&quot;, &quot;undisputed&quot;, &quot;undisputed&quot;, &quot;undue&quot;, &quot;undue&quot;, &quot;undue&quot;, &quot;undue&quot;, &quot;undue&quot;, &quot;undue&quot;, &quot;undue&quot;, &quot;undue&quot;, &quot;undue&quot;, &quot;undue&quot;, &quot;undue&quot;, &quot;undue&quot;, &quot;uneasiness&quot;, &quot;unemployed&quot;, &quot;unemployed&quot;, &quot;unemployed&quot;, &quot;unemployed&quot;, &quot;unemployed&quot;, &quot;unemployed&quot;, &quot;unemployed&quot;, &quot;unemployed&quot;, &quot;unemployed&quot;, &quot;unemployed&quot;, &quot;unemployed&quot;, &quot;unemployed&quot;, &quot;unemployment&quot;, &quot;unemployment&quot;, &quot;unemployment&quot;, &quot;unemployment&quot;, &quot;unemployment&quot;, &quot;unemployment&quot;, &quot;unemployment&quot;, &quot;unemployment&quot;, &quot;unemployment&quot;, &quot;unemployment&quot;, &quot;unfavorable&quot;, &quot;unfavorable&quot;, &quot;unfavorable&quot;, &quot;unfortunate&quot;, &quot;unfortunate&quot;, &quot;unfortunate&quot;, &quot;unfortunate&quot;, &quot;unfortunate&quot;, &quot;unfortunate&quot;, &quot;unfortunate&quot;, &quot;unfortunate&quot;, &quot;unfortunate&quot;, &quot;unfortunate&quot;, &quot;unfortunate&quot;, &quot;unfortunate&quot;, &quot;unfortunate&quot;, &quot;unhealthy&quot;, &quot;unification&quot;, &quot;unification&quot;, &quot;unification&quot;, &quot;unification&quot;, &quot;unification&quot;, &quot;unification&quot;, &quot;unification&quot;, &quot;unified&quot;, &quot;unified&quot;, &quot;unified&quot;, &quot;unified&quot;, &quot;unified&quot;, &quot;unified&quot;, &quot;unified&quot;, &quot;uninsured&quot;, &quot;union&quot;, &quot;union&quot;, &quot;union&quot;, &quot;union&quot;, &quot;union&quot;, &quot;union&quot;, &quot;union&quot;, &quot;union&quot;, &quot;union&quot;, &quot;union&quot;, &quot;union&quot;, &quot;union&quot;, &quot;union&quot;, &quot;union&quot;, &quot;union&quot;, &quot;union&quot;, &quot;union&quot;, &quot;union&quot;, &quot;union&quot;, &quot;united&quot;, &quot;united&quot;, &quot;united&quot;, &quot;united&quot;, &quot;united&quot;, &quot;united&quot;, &quot;united&quot;, &quot;united&quot;, &quot;united&quot;, &quot;united&quot;, &quot;united&quot;, &quot;united&quot;, &quot;united&quot;, &quot;united&quot;, &quot;united&quot;, &quot;united&quot;, &quot;united&quot;, &quot;united&quot;, &quot;united&quot;, &quot;united&quot;, &quot;university&quot;, &quot;university&quot;, &quot;university&quot;, &quot;university&quot;, &quot;university&quot;, &quot;university&quot;, &quot;university&quot;, &quot;university&quot;, &quot;university&quot;, &quot;university&quot;, &quot;university&quot;, &quot;unlawful&quot;, &quot;unlawful&quot;, &quot;unlawful&quot;, &quot;unlawful&quot;, &quot;unlawful&quot;, &quot;unlawful&quot;, &quot;unlawful&quot;, &quot;unlawful&quot;, &quot;unlawful&quot;, &quot;unlawful&quot;, &quot;unlawful&quot;, &quot;unlawful&quot;, &quot;unparalleled&quot;, &quot;unparalleled&quot;, &quot;unparalleled&quot;, &quot;unparalleled&quot;, &quot;unparalleled&quot;, &quot;unparalleled&quot;, &quot;unparalleled&quot;, &quot;unparalleled&quot;, &quot;unparalleled&quot;, &quot;unparalleled&quot;, &quot;unparalleled&quot;, &quot;unshaken&quot;, &quot;unshaken&quot;, &quot;unshaken&quot;, &quot;unworthy&quot;, &quot;unworthy&quot;, &quot;unworthy&quot;, &quot;unworthy&quot;, &quot;unworthy&quot;, &quot;unworthy&quot;, &quot;unworthy&quot;, &quot;unworthy&quot;, &quot;urged&quot;, &quot;urged&quot;, &quot;urged&quot;, &quot;urged&quot;, &quot;urged&quot;, &quot;urged&quot;, &quot;urged&quot;, &quot;urged&quot;, &quot;urged&quot;, &quot;urged&quot;, &quot;urged&quot;, &quot;urged&quot;, &quot;urged&quot;, &quot;urged&quot;, &quot;usa&quot;, &quot;usually&quot;, &quot;usually&quot;, &quot;usually&quot;, &quot;usually&quot;, &quot;usually&quot;, &quot;usually&quot;, &quot;usually&quot;, &quot;usually&quot;, &quot;usually&quot;, &quot;usually&quot;, &quot;utah&quot;, &quot;utah&quot;, &quot;utah&quot;, &quot;utah&quot;, &quot;utah&quot;, &quot;utah&quot;, &quot;utah&quot;, &quot;utilities&quot;, &quot;utilities&quot;, &quot;utilities&quot;, &quot;utilize&quot;, &quot;utilize&quot;, &quot;utilize&quot;, &quot;utilize&quot;, &quot;vacancy&quot;, &quot;vacancy&quot;, &quot;vacancy&quot;, &quot;vacancy&quot;, &quot;vacancy&quot;, &quot;vacancy&quot;, &quot;vain&quot;, &quot;vain&quot;, &quot;vain&quot;, &quot;vain&quot;, &quot;vain&quot;, &quot;vain&quot;, &quot;vain&quot;, &quot;vain&quot;, &quot;vain&quot;, &quot;vain&quot;, &quot;vain&quot;, &quot;valeriani&quot;, &quot;valley&quot;, &quot;valley&quot;, &quot;valley&quot;, &quot;valley&quot;, &quot;valley&quot;, &quot;valley&quot;, &quot;valley&quot;, &quot;valley&quot;, &quot;valley&quot;, &quot;valley&quot;, &quot;valparaiso&quot;, &quot;valparaiso&quot;, &quot;value&quot;, &quot;value&quot;, &quot;value&quot;, &quot;value&quot;, &quot;value&quot;, &quot;value&quot;, &quot;value&quot;, &quot;value&quot;, &quot;value&quot;, &quot;value&quot;, &quot;value&quot;, &quot;value&quot;, &quot;value&quot;, &quot;value&quot;, &quot;value&quot;, &quot;value&quot;, &quot;value&quot;, &quot;value&quot;, &quot;vance&quot;, &quot;vance&quot;, &quot;vance&quot;, &quot;vanderbilt&quot;, &quot;vanderbilt&quot;, &quot;vanish&quot;, &quot;vanish&quot;, &quot;vanish&quot;, &quot;vanish&quot;, &quot;vanish&quot;, &quot;vanish&quot;, &quot;varied&quot;, &quot;varied&quot;, &quot;varied&quot;, &quot;varied&quot;, &quot;varied&quot;, &quot;varied&quot;, &quot;varied&quot;, &quot;varied&quot;, &quot;ve&quot;, &quot;ve&quot;, &quot;ve&quot;, &quot;ve&quot;, &quot;ve&quot;, &quot;ve&quot;, &quot;ve&quot;, &quot;ve&quot;, &quot;ve&quot;, &quot;ve&quot;, &quot;ve&quot;, &quot;ve&quot;, &quot;ve&quot;, &quot;ve&quot;, &quot;ve&quot;, &quot;ve&quot;, &quot;ve&quot;, &quot;ve&quot;, &quot;venezuela&quot;, &quot;venezuela&quot;, &quot;venezuela&quot;, &quot;vera&quot;, &quot;vera&quot;, &quot;verification&quot;, &quot;verification&quot;, &quot;verification&quot;, &quot;verification&quot;, &quot;verification&quot;, &quot;verification&quot;, &quot;verification&quot;, &quot;vessels&quot;, &quot;vessels&quot;, &quot;vessels&quot;, &quot;vessels&quot;, &quot;vessels&quot;, &quot;vessels&quot;, &quot;vessels&quot;, &quot;vessels&quot;, &quot;vessels&quot;, &quot;vessels&quot;, &quot;vessels&quot;, &quot;vessels&quot;, &quot;vessels&quot;, &quot;vessels&quot;, &quot;vested&quot;, &quot;vested&quot;, &quot;vested&quot;, &quot;vested&quot;, &quot;vested&quot;, &quot;vested&quot;, &quot;vested&quot;, &quot;vested&quot;, &quot;vested&quot;, &quot;vested&quot;, &quot;vested&quot;, &quot;vested&quot;, &quot;vestige&quot;, &quot;vestige&quot;, &quot;veterans&quot;, &quot;veterans&quot;, &quot;veterans&quot;, &quot;veterans&quot;, &quot;veterans&quot;, &quot;veterans&quot;, &quot;veterans&quot;, &quot;veterans&quot;, &quot;veterans&quot;, &quot;veterans&quot;, &quot;vetoed&quot;, &quot;vetoed&quot;, &quot;vetoed&quot;, &quot;vetoed&quot;, &quot;vetoed&quot;, &quot;vetoed&quot;, &quot;vice&quot;, &quot;vice&quot;, &quot;vice&quot;, &quot;vice&quot;, &quot;vice&quot;, &quot;vice&quot;, &quot;vice&quot;, &quot;vice&quot;, &quot;vice&quot;, &quot;vice&quot;, &quot;vice&quot;, &quot;vice&quot;, &quot;vice&quot;, &quot;vice&quot;, &quot;vice&quot;, &quot;vice&quot;, &quot;vice&quot;, &quot;victim&quot;, &quot;victim&quot;, &quot;victim&quot;, &quot;victim&quot;, &quot;victim&quot;, &quot;victim&quot;, &quot;victim&quot;, &quot;victims&quot;, &quot;victims&quot;, &quot;victims&quot;, &quot;victims&quot;, &quot;victims&quot;, &quot;victims&quot;, &quot;victims&quot;, &quot;victims&quot;, &quot;victims&quot;, &quot;victims&quot;, &quot;victims&quot;, &quot;victory&quot;, &quot;victory&quot;, &quot;victory&quot;, &quot;victory&quot;, &quot;victory&quot;, &quot;victory&quot;, &quot;victory&quot;, &quot;victory&quot;, &quot;victory&quot;, &quot;victory&quot;, &quot;victory&quot;, &quot;victory&quot;, &quot;victory&quot;, &quot;viet&quot;, &quot;viet&quot;, &quot;viet&quot;, &quot;viet&quot;, &quot;viet&quot;, &quot;viet&quot;, &quot;vietcong&quot;, &quot;vietnam&quot;, &quot;vietnam&quot;, &quot;vietnam&quot;, &quot;vietnam&quot;, &quot;vietnam&quot;, &quot;vietnam&quot;, &quot;vietnam&quot;, &quot;vietnam&quot;, &quot;vietnam&quot;, &quot;vietnamese&quot;, &quot;vietnamese&quot;, &quot;vietnamese&quot;, &quot;vietnamese&quot;, &quot;vigilance&quot;, &quot;vigilance&quot;, &quot;vigilance&quot;, &quot;vigilance&quot;, &quot;vigilance&quot;, &quot;vigilance&quot;, &quot;vigilance&quot;, &quot;vigilance&quot;, &quot;vigilance&quot;, &quot;vigilance&quot;, &quot;vigilance&quot;, &quot;vigilant&quot;, &quot;vigilant&quot;, &quot;vigilant&quot;, &quot;vigilant&quot;, &quot;vigilant&quot;, &quot;vigilant&quot;, &quot;vigilant&quot;, &quot;vigilant&quot;, &quot;vigilant&quot;, &quot;vigilant&quot;, &quot;violence&quot;, &quot;violence&quot;, &quot;violence&quot;, &quot;violence&quot;, &quot;violence&quot;, &quot;violence&quot;, &quot;violence&quot;, &quot;violence&quot;, &quot;violence&quot;, &quot;violence&quot;, &quot;violence&quot;, &quot;violence&quot;, &quot;violence&quot;, &quot;violence&quot;, &quot;violence&quot;, &quot;violence&quot;, &quot;violence&quot;, &quot;violence&quot;, &quot;virtue&quot;, &quot;virtue&quot;, &quot;virtue&quot;, &quot;virtue&quot;, &quot;virtue&quot;, &quot;virtue&quot;, &quot;virtue&quot;, &quot;virtue&quot;, &quot;virtue&quot;, &quot;virtue&quot;, &quot;virtue&quot;, &quot;virtue&quot;, &quot;visiting&quot;, &quot;visiting&quot;, &quot;visiting&quot;, &quot;visiting&quot;, &quot;visiting&quot;, &quot;visiting&quot;, &quot;viz&quot;, &quot;viz&quot;, &quot;viz&quot;, &quot;viz&quot;, &quot;vocational&quot;, &quot;vocational&quot;, &quot;vocational&quot;, &quot;vocational&quot;, &quot;voice&quot;, &quot;voice&quot;, &quot;voice&quot;, &quot;voice&quot;, &quot;voice&quot;, &quot;voice&quot;, &quot;voice&quot;, &quot;voice&quot;, &quot;voice&quot;, &quot;voice&quot;, &quot;voice&quot;, &quot;voice&quot;, &quot;voice&quot;, &quot;voice&quot;, &quot;voice&quot;, &quot;voice&quot;, &quot;voluntary&quot;, &quot;voluntary&quot;, &quot;voluntary&quot;, &quot;voluntary&quot;, &quot;voluntary&quot;, &quot;voluntary&quot;, &quot;voluntary&quot;, &quot;voluntary&quot;, &quot;voluntary&quot;, &quot;voluntary&quot;, &quot;voluntary&quot;, &quot;voluntary&quot;, &quot;voluntary&quot;, &quot;voluntary&quot;, &quot;voluntary&quot;, &quot;votes&quot;, &quot;votes&quot;, &quot;votes&quot;, &quot;votes&quot;, &quot;votes&quot;, &quot;votes&quot;, &quot;votes&quot;, &quot;votes&quot;, &quot;votes&quot;, &quot;votes&quot;, &quot;votes&quot;, &quot;votes&quot;, &quot;votes&quot;, &quot;wabash&quot;, &quot;wabash&quot;, &quot;wage&quot;, &quot;wage&quot;, &quot;wage&quot;, &quot;wage&quot;, &quot;wage&quot;, &quot;wage&quot;, &quot;wage&quot;, &quot;wage&quot;, &quot;wage&quot;, &quot;wage&quot;, &quot;wage&quot;, &quot;wage&quot;, &quot;wage&quot;, &quot;wages&quot;, &quot;wages&quot;, &quot;wages&quot;, &quot;wages&quot;, &quot;wages&quot;, &quot;wages&quot;, &quot;wages&quot;, &quot;wages&quot;, &quot;wages&quot;, &quot;wages&quot;, &quot;wages&quot;, &quot;wages&quot;, &quot;wageworkers&quot;, &quot;wait&quot;, &quot;wait&quot;, &quot;wait&quot;, &quot;wait&quot;, &quot;wait&quot;, &quot;wait&quot;, &quot;wait&quot;, &quot;wait&quot;, &quot;wait&quot;, &quot;wait&quot;, &quot;wait&quot;, &quot;wait&quot;, &quot;wait&quot;, &quot;wait&quot;, &quot;wait&quot;, &quot;wait&quot;, &quot;waits&quot;, &quot;waits&quot;, &quot;waits&quot;, &quot;walker&quot;, &quot;walker&quot;, &quot;walker&quot;, &quot;wallace&quot;, &quot;wallace&quot;, &quot;walters&quot;, &quot;want&quot;, &quot;want&quot;, &quot;want&quot;, &quot;want&quot;, &quot;want&quot;, &quot;want&quot;, &quot;want&quot;, &quot;want&quot;, &quot;want&quot;, &quot;want&quot;, &quot;want&quot;, &quot;want&quot;, &quot;want&quot;, &quot;want&quot;, &quot;want&quot;, &quot;want&quot;, &quot;want&quot;, &quot;want&quot;, &quot;want&quot;, &quot;war&quot;, &quot;war&quot;, &quot;war&quot;, &quot;war&quot;, &quot;war&quot;, &quot;war&quot;, &quot;war&quot;, &quot;war&quot;, &quot;war&quot;, &quot;war&quot;, &quot;war&quot;, &quot;war&quot;, &quot;war&quot;, &quot;war&quot;, &quot;war&quot;, &quot;war&quot;, &quot;war&quot;, &quot;war&quot;, &quot;war&quot;, &quot;war&quot;, &quot;warfare&quot;, &quot;warfare&quot;, &quot;warfare&quot;, &quot;warfare&quot;, &quot;warfare&quot;, &quot;warfare&quot;, &quot;warfare&quot;, &quot;warfare&quot;, &quot;warfare&quot;, &quot;warfare&quot;, &quot;warfare&quot;, &quot;warheads&quot;, &quot;warheads&quot;, &quot;warheads&quot;, &quot;warsaw&quot;, &quot;warsaw&quot;, &quot;warsaw&quot;, &quot;washington&quot;, &quot;washington&quot;, &quot;washington&quot;, &quot;washington&quot;, &quot;washington&quot;, &quot;washington&quot;, &quot;washington&quot;, &quot;washington&quot;, &quot;washington&quot;, &quot;washington&quot;, &quot;washington&quot;, &quot;washington&quot;, &quot;washington&quot;, &quot;washington&quot;, &quot;washington&quot;, &quot;washington&quot;, &quot;washington&quot;, &quot;washington&quot;, &quot;washington&quot;, &quot;wastes&quot;, &quot;wastes&quot;, &quot;wastes&quot;, &quot;wastes&quot;, &quot;wastes&quot;, &quot;watergate&quot;, &quot;watergate&quot;, &quot;watergate&quot;, &quot;waters&quot;, &quot;waters&quot;, &quot;waters&quot;, &quot;waters&quot;, &quot;waters&quot;, &quot;waters&quot;, &quot;waters&quot;, &quot;waters&quot;, &quot;waters&quot;, &quot;waters&quot;, &quot;waters&quot;, &quot;way&quot;, &quot;way&quot;, &quot;way&quot;, &quot;way&quot;, &quot;way&quot;, &quot;way&quot;, &quot;way&quot;, &quot;way&quot;, &quot;way&quot;, &quot;way&quot;, &quot;way&quot;, &quot;way&quot;, &quot;way&quot;, &quot;way&quot;, &quot;way&quot;, &quot;way&quot;, &quot;way&quot;, &quot;way&quot;, &quot;way&quot;, &quot;way&quot;, &quot;weal&quot;, &quot;weal&quot;, &quot;weal&quot;, &quot;weal&quot;, &quot;wealthiest&quot;, &quot;wealthiest&quot;, &quot;wealthiest&quot;, &quot;weapon&quot;, &quot;weapon&quot;, &quot;weapon&quot;, &quot;weapon&quot;, &quot;weapon&quot;, &quot;weapon&quot;, &quot;weapon&quot;, &quot;weapon&quot;, &quot;weapon&quot;, &quot;weapon&quot;, &quot;weapon&quot;, &quot;weapons&quot;, &quot;weapons&quot;, &quot;weapons&quot;, &quot;weapons&quot;, &quot;weapons&quot;, &quot;weapons&quot;, &quot;weapons&quot;, &quot;weapons&quot;, &quot;weapons&quot;, &quot;weapons&quot;, &quot;weapons&quot;, &quot;weapons&quot;, &quot;weapons&quot;, &quot;weapons&quot;, &quot;weapons&quot;, &quot;weapons&quot;, &quot;weapons&quot;, &quot;wednesday&quot;, &quot;wednesday&quot;, &quot;wednesday&quot;, &quot;wednesday&quot;, &quot;wednesday&quot;, &quot;wednesday&quot;, &quot;wednesday&quot;, &quot;wednesday&quot;, &quot;west&quot;, &quot;west&quot;, &quot;west&quot;, &quot;west&quot;, &quot;west&quot;, &quot;west&quot;, &quot;west&quot;, &quot;west&quot;, &quot;west&quot;, &quot;west&quot;, &quot;west&quot;, &quot;west&quot;, &quot;west&quot;, &quot;west&quot;, &quot;west&quot;, &quot;west&quot;, &quot;west&quot;, &quot;whale&quot;, &quot;whale&quot;, &quot;whereof&quot;, &quot;whereof&quot;, &quot;whereof&quot;, &quot;whereof&quot;, &quot;whilst&quot;, &quot;whilst&quot;, &quot;whilst&quot;, &quot;whilst&quot;, &quot;whilst&quot;, &quot;whilst&quot;, &quot;white&quot;, &quot;white&quot;, &quot;white&quot;, &quot;white&quot;, &quot;white&quot;, &quot;white&quot;, &quot;white&quot;, &quot;white&quot;, &quot;white&quot;, &quot;white&quot;, &quot;white&quot;, &quot;white&quot;, &quot;white&quot;, &quot;white&quot;, &quot;white&quot;, &quot;white&quot;, &quot;white&quot;, &quot;white&quot;, &quot;white&quot;, &quot;whites&quot;, &quot;whites&quot;, &quot;whites&quot;, &quot;whites&quot;, &quot;whites&quot;, &quot;whites&quot;, &quot;whites&quot;, &quot;whites&quot;, &quot;whites&quot;, &quot;whites&quot;, &quot;whites&quot;, &quot;wide&quot;, &quot;wide&quot;, &quot;wide&quot;, &quot;wide&quot;, &quot;wide&quot;, &quot;wide&quot;, &quot;wide&quot;, &quot;wide&quot;, &quot;wide&quot;, &quot;wide&quot;, &quot;wide&quot;, &quot;wide&quot;, &quot;wide&quot;, &quot;wide&quot;, &quot;wide&quot;, &quot;wieghart&quot;, &quot;wilmot&quot;, &quot;window&quot;, &quot;window&quot;, &quot;window&quot;, &quot;window&quot;, &quot;window&quot;, &quot;wines&quot;, &quot;wines&quot;, &quot;wines&quot;, &quot;wines&quot;, &quot;wines&quot;, &quot;wings&quot;, &quot;wings&quot;, &quot;wings&quot;, &quot;wings&quot;, &quot;wings&quot;, &quot;wings&quot;, &quot;winter&quot;, &quot;winter&quot;, &quot;winter&quot;, &quot;winter&quot;, &quot;winter&quot;, &quot;winter&quot;, &quot;winter&quot;, &quot;winter&quot;, &quot;winter&quot;, &quot;winter&quot;, &quot;wire&quot;, &quot;wire&quot;, &quot;wire&quot;, &quot;wire&quot;, &quot;wire&quot;, &quot;wire&quot;, &quot;wire&quot;, &quot;wise&quot;, &quot;wise&quot;, &quot;wise&quot;, &quot;wise&quot;, &quot;wise&quot;, &quot;wise&quot;, &quot;wise&quot;, &quot;wise&quot;, &quot;wise&quot;, &quot;wise&quot;, &quot;wise&quot;, &quot;wise&quot;, &quot;wise&quot;, &quot;wise&quot;, &quot;wise&quot;, &quot;wise&quot;, &quot;wise&quot;, &quot;wish&quot;, &quot;wish&quot;, &quot;wish&quot;, &quot;wish&quot;, &quot;wish&quot;, &quot;wish&quot;, &quot;wish&quot;, &quot;wish&quot;, &quot;wish&quot;, &quot;wish&quot;, &quot;wish&quot;, &quot;wish&quot;, &quot;wish&quot;, &quot;wish&quot;, &quot;wish&quot;, &quot;wish&quot;, &quot;wish&quot;, &quot;wish&quot;, &quot;withhold&quot;, &quot;withhold&quot;, &quot;withhold&quot;, &quot;withhold&quot;, &quot;withhold&quot;, &quot;withhold&quot;, &quot;withhold&quot;, &quot;withhold&quot;, &quot;withhold&quot;, &quot;withhold&quot;, &quot;withhold&quot;, &quot;withstanding&quot;, &quot;withstanding&quot;, &quot;witnessed&quot;, &quot;witnessed&quot;, &quot;witnessed&quot;, &quot;witnessed&quot;, &quot;witnessed&quot;, &quot;witnessed&quot;, &quot;witnessed&quot;, &quot;witnessed&quot;, &quot;witnessed&quot;, &quot;witnessed&quot;, &quot;witnessed&quot;, &quot;witnessed&quot;, &quot;witnesses&quot;, &quot;witnesses&quot;, &quot;witnesses&quot;, &quot;witnesses&quot;, &quot;witnesses&quot;, &quot;witnesses&quot;, &quot;witnesses&quot;, &quot;witnesses&quot;, &quot;witnesses&quot;, &quot;witnesses&quot;, &quot;witnesses&quot;, &quot;witnesses&quot;, &quot;witnesses&quot;, &quot;women&quot;, &quot;women&quot;, &quot;women&quot;, &quot;women&quot;, &quot;women&quot;, &quot;women&quot;, &quot;women&quot;, &quot;women&quot;, &quot;women&quot;, &quot;women&quot;, &quot;women&quot;, &quot;women&quot;, &quot;women&quot;, &quot;women&quot;, &quot;women&quot;, &quot;women&quot;, &quot;wonderful&quot;, &quot;wonderful&quot;, &quot;wonderful&quot;, &quot;wonderful&quot;, &quot;wonderful&quot;, &quot;wonderful&quot;, &quot;wonderful&quot;, &quot;wonderful&quot;, &quot;wonderful&quot;, &quot;wonderful&quot;, &quot;wonderful&quot;, &quot;wonderful&quot;, &quot;wonderful&quot;, &quot;wondering&quot;, &quot;wondering&quot;, &quot;wondering&quot;, &quot;wood&quot;, &quot;wood&quot;, &quot;wood&quot;, &quot;wood&quot;, &quot;wood&quot;, &quot;wood&quot;, &quot;wood&quot;, &quot;wood&quot;, &quot;wood&quot;, &quot;woodrow&quot;, &quot;woodrow&quot;, &quot;woodrow&quot;, &quot;woodrow&quot;, &quot;woodrow&quot;, &quot;woodrow&quot;, &quot;woodrow&quot;, &quot;wool&quot;, &quot;wool&quot;, &quot;wool&quot;, &quot;wool&quot;, &quot;wool&quot;, &quot;wool&quot;, &quot;woolen&quot;, &quot;woolen&quot;, &quot;woolen&quot;, &quot;work&quot;, &quot;work&quot;, &quot;work&quot;, &quot;work&quot;, &quot;work&quot;, &quot;work&quot;, &quot;work&quot;, &quot;work&quot;, &quot;work&quot;, &quot;work&quot;, &quot;work&quot;, &quot;work&quot;, &quot;work&quot;, &quot;work&quot;, &quot;work&quot;, &quot;work&quot;, &quot;work&quot;, &quot;work&quot;, &quot;work&quot;, &quot;worked&quot;, &quot;worked&quot;, &quot;worked&quot;, &quot;worked&quot;, &quot;worked&quot;, &quot;worked&quot;, &quot;worked&quot;, &quot;worked&quot;, &quot;worked&quot;, &quot;worked&quot;, &quot;worked&quot;, &quot;worked&quot;, &quot;worked&quot;, &quot;worked&quot;, &quot;workingman&quot;, &quot;workingman&quot;, &quot;workingman&quot;, &quot;workingman&quot;, &quot;workingman&quot;, &quot;workingman&quot;, &quot;world&quot;, &quot;world&quot;, &quot;world&quot;, &quot;world&quot;, &quot;world&quot;, &quot;world&quot;, &quot;world&quot;, &quot;world&quot;, &quot;world&quot;, &quot;world&quot;, &quot;world&quot;, &quot;world&quot;, &quot;world&quot;, &quot;world&quot;, &quot;world&quot;, &quot;world&quot;, &quot;world&quot;, &quot;world&quot;, &quot;world&quot;, &quot;world&quot;, &quot;wright&quot;, &quot;wright&quot;, &quot;wright&quot;, &quot;wright&quot;, &quot;wright&quot;, &quot;writes&quot;, &quot;writes&quot;, &quot;writes&quot;, &quot;writes&quot;, &quot;writes&quot;, &quot;writes&quot;, &quot;writes&quot;, &quot;writings&quot;, &quot;writings&quot;, &quot;writings&quot;, &quot;writings&quot;, &quot;wrongdoer&quot;, &quot;wrongdoer&quot;, &quot;wrongdoing&quot;, &quot;wrongdoing&quot;, &quot;wrongdoing&quot;, &quot;wrongdoing&quot;, &quot;wrongdoing&quot;, &quot;wrongdoing&quot;, &quot;yale&quot;, &quot;yale&quot;, &quot;yale&quot;, &quot;yale&quot;, &quot;yale&quot;, &quot;yalta&quot;, &quot;yalta&quot;, &quot;yard&quot;, &quot;yard&quot;, &quot;yard&quot;, &quot;yard&quot;, &quot;yard&quot;, &quot;yard&quot;, &quot;year&quot;, &quot;year&quot;, &quot;year&quot;, &quot;year&quot;, &quot;year&quot;, &quot;year&quot;, &quot;year&quot;, &quot;year&quot;, &quot;year&quot;, &quot;year&quot;, &quot;year&quot;, &quot;year&quot;, &quot;year&quot;, &quot;year&quot;, &quot;year&quot;, &quot;year&quot;, &quot;year&quot;, &quot;year&quot;, &quot;year&quot;, &quot;year&quot;, &quot;years&quot;, &quot;years&quot;, &quot;years&quot;, &quot;years&quot;, &quot;years&quot;, &quot;years&quot;, &quot;years&quot;, &quot;years&quot;, &quot;years&quot;, &quot;years&quot;, &quot;years&quot;, &quot;years&quot;, &quot;years&quot;, &quot;years&quot;, &quot;years&quot;, &quot;years&quot;, &quot;years&quot;, &quot;years&quot;, &quot;years&quot;, &quot;years&quot;, &quot;yellow&quot;, &quot;yellow&quot;, &quot;yellow&quot;, &quot;yellow&quot;, &quot;yellow&quot;, &quot;yellow&quot;, &quot;yellow&quot;, &quot;yields&quot;, &quot;yields&quot;, &quot;yields&quot;, &quot;yields&quot;, &quot;yields&quot;, &quot;yields&quot;, &quot;yields&quot;, &quot;yugoslavia&quot;, &quot;yugoslavia&quot;, &quot;yugoslavia&quot;, &quot;yugoslavia&quot;, &quot;yugoslavia&quot;, &quot;yugoslavia&quot;, &quot;yugoslavia&quot;, &quot;zealous&quot;, &quot;zealous&quot;, &quot;zealous&quot;, &quot;zealous&quot;, &quot;zealous&quot;, &quot;zealous&quot;]}, &quot;mdsDat&quot;: {&quot;y&quot;: [0.03948682739269771, 0.017732771118925378, 0.01277397910750004, 0.012884825208980417, 0.13843890857275098, -0.024856325851682872, 0.097116757713888044, -0.039025166169648365, -0.020181790345806985, -0.054006454189078221, -0.034531723720377827, -0.082141652097053736, 0.015650044151566497, 0.14221460826343132, -0.06715540582696268, -0.057908500379720826, -0.044590516697513606, -0.0096586979959018045, -0.042860622392507361, 0.00061813413651433022], &quot;cluster&quot;: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1], &quot;Freq&quot;: [18.390733540891961, 16.614129024949914, 15.658395115825124, 8.2185399748981194, 6.3703691844004293, 6.1578716654471455, 5.5407804540679253, 5.0089419337672556, 4.8976645666198282, 3.1738435059890513, 2.9952454042817154, 2.9277972565604906, 0.9971048548204775, 0.67219149288520053, 0.54981568582375417, 0.51950887915647859, 0.51326890760485144, 0.46143720492524359, 0.30179811696568415, 0.030563230119356716], &quot;topics&quot;: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20], &quot;x&quot;: [0.10556320057166771, 0.11851007409517778, -0.14571426843403548, -0.024953151911432506, -0.00012117987572008839, -0.12893521684854858, 0.044030232526444155, -0.11612016298169454, -0.060401474647118723, 0.077003488716636662, 0.17824514103305289, 0.18722625451786568, -0.075359755475247397, 0.0057152255368716496, 0.064808795673731892, -0.10530063331229055, -0.10083701059568334, 0.034554611142587177, -0.066361847872417154, 0.0084476781401527212]}, &quot;R&quot;: 30, &quot;lambda.step&quot;: 0.01, &quot;tinfo&quot;: {&quot;Category&quot;: [&quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Default&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic1&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic2&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic3&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic4&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic5&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic6&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic7&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic8&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic9&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic10&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic11&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic12&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic13&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic14&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic15&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic16&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic17&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic18&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic19&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;, &quot;Topic20&quot;], &quot;Term&quot;: [&quot;states&quot;, &quot;government&quot;, &quot;united&quot;, &quot;president&quot;, &quot;people&quot;, &quot;mr&quot;, &quot;world&quot;, &quot;congress&quot;, &quot;peace&quot;, &quot;state&quot;, &quot;american&quot;, &quot;country&quot;, &quot;law&quot;, &quot;america&quot;, &quot;think&quot;, &quot;time&quot;, &quot;shall&quot;, &quot;men&quot;, &quot;constitution&quot;, &quot;general&quot;, &quot;nation&quot;, &quot;great&quot;, &quot;new&quot;, &quot;freedom&quot;, &quot;federal&quot;, &quot;war&quot;, &quot;ve&quot;, &quot;know&quot;, &quot;today&quot;, &quot;public&quot;, &quot;seigniorage&quot;, &quot;burlingame&quot;, &quot;ounces&quot;, &quot;kongo&quot;, &quot;lien&quot;, &quot;exhibitors&quot;, &quot;belligerency&quot;, &quot;oriental&quot;, &quot;missionaries&quot;, &quot;severalty&quot;, &quot;turreted&quot;, &quot;tenders&quot;, &quot;samoan&quot;, &quot;entries&quot;, &quot;patents&quot;, &quot;hayti&quot;, &quot;coined&quot;, &quot;chickasaws&quot;, &quot;uneasiness&quot;, &quot;claimant&quot;, &quot;bullion&quot;, &quot;amazon&quot;, &quot;polygamy&quot;, &quot;extradition&quot;, &quot;coinage&quot;, &quot;protectorate&quot;, &quot;complications&quot;, &quot;exhibitions&quot;, &quot;arrears&quot;, &quot;contraction&quot;, &quot;silver&quot;, &quot;naturalized&quot;, &quot;pensioners&quot;, &quot;expatriation&quot;, &quot;circulation&quot;, &quot;redemption&quot;, &quot;coin&quot;, &quot;pension&quot;, &quot;consular&quot;, &quot;pensions&quot;, &quot;exhibition&quot;, &quot;tender&quot;, &quot;gold&quot;, &quot;notes&quot;, &quot;chinese&quot;, &quot;patent&quot;, &quot;june&quot;, &quot;bonds&quot;, &quot;currency&quot;, &quot;venezuela&quot;, &quot;postal&quot;, &quot;fiscal&quot;, &quot;claims&quot;, &quot;report&quot;, &quot;receipts&quot;, &quot;value&quot;, &quot;attention&quot;, &quot;government&quot;, &quot;indian&quot;, &quot;department&quot;, &quot;cent&quot;, &quot;states&quot;, &quot;congress&quot;, &quot;year&quot;, &quot;service&quot;, &quot;consideration&quot;, &quot;treaty&quot;, &quot;condition&quot;, &quot;subject&quot;, &quot;united&quot;, &quot;general&quot;, &quot;treasury&quot;, &quot;legislation&quot;, &quot;public&quot;, &quot;present&quot;, &quot;law&quot;, &quot;almighty&quot;, &quot;enjoin&quot;, &quot;charles&quot;, &quot;fictitious&quot;, &quot;fund&quot;, &quot;peoples&quot;, &quot;regions&quot;, &quot;dissolve&quot;, &quot;derived&quot;, &quot;normalization&quot;, &quot;considers&quot;, &quot;africans&quot;, &quot;owing&quot;, &quot;unable&quot;, &quot;differs&quot;, &quot;reynolds&quot;, &quot;pay&quot;, &quot;esteem&quot;, &quot;james&quot;, &quot;ounce&quot;, &quot;tall&quot;, &quot;suggest&quot;, &quot;unshaken&quot;, &quot;concerted&quot;, &quot;showing&quot;, &quot;vigilant&quot;, &quot;scale&quot;, &quot;drop&quot;, &quot;increases&quot;, &quot;forms&quot;, &quot;secretary&quot;, &quot;country&quot;, &quot;act&quot;, &quot;foreign&quot;, &quot;citizens&quot;, &quot;great&quot;, &quot;time&quot;, &quot;shall&quot;, &quot;state&quot;, &quot;people&quot;, &quot;american&quot;, &quot;necessary&quot;, &quot;war&quot;, &quot;clinton&quot;, &quot;erected&quot;, &quot;experiences&quot;, &quot;factors&quot;, &quot;partnerships&quot;, &quot;estates&quot;, &quot;rendering&quot;, &quot;strike&quot;, &quot;jurors&quot;, &quot;halted&quot;, &quot;rates&quot;, &quot;lieutenants&quot;, &quot;reduced&quot;, &quot;submission&quot;, &quot;continuance&quot;, &quot;stationed&quot;, &quot;judicial&quot;, &quot;took&quot;, &quot;manufacturing&quot;, &quot;swiftly&quot;, &quot;cattle&quot;, &quot;undertakings&quot;, &quot;detained&quot;, &quot;ends&quot;, &quot;past&quot;, &quot;undermined&quot;, &quot;ardor&quot;, &quot;hoped&quot;, &quot;sumter&quot;, &quot;new&quot;, &quot;nueces&quot;, &quot;paredes&quot;, &quot;intersection&quot;, &quot;herrera&quot;, &quot;ghent&quot;, &quot;vera&quot;, &quot;cruz&quot;, &quot;pensacola&quot;, &quot;withstanding&quot;, &quot;navigating&quot;, &quot;wabash&quot;, &quot;digested&quot;, &quot;frigates&quot;, &quot;croix&quot;, &quot;alacrity&quot;, &quot;conformably&quot;, &quot;husbandman&quot;, &quot;buoys&quot;, &quot;highlands&quot;, &quot;captures&quot;, &quot;norte&quot;, &quot;whale&quot;, &quot;postages&quot;, &quot;blockades&quot;, &quot;chili&quot;, &quot;frigate&quot;, &quot;piers&quot;, &quot;bosom&quot;, &quot;shewn&quot;, &quot;confederated&quot;, &quot;savages&quot;, &quot;exertions&quot;, &quot;augmentation&quot;, &quot;mexico&quot;, &quot;barbary&quot;, &quot;mexican&quot;, &quot;texas&quot;, &quot;oregon&quot;, &quot;objects&quot;, &quot;commencement&quot;, &quot;embarrassments&quot;, &quot;whilst&quot;, &quot;tribes&quot;, &quot;navigation&quot;, &quot;intercourse&quot;, &quot;redress&quot;, &quot;indemnity&quot;, &quot;salutary&quot;, &quot;british&quot;, &quot;constituents&quot;, &quot;amicable&quot;, &quot;communicated&quot;, &quot;revenue&quot;, &quot;lake&quot;, &quot;minister&quot;, &quot;france&quot;, &quot;ports&quot;, &quot;treasury&quot;, &quot;portion&quot;, &quot;object&quot;, &quot;public&quot;, &quot;duties&quot;, &quot;treaty&quot;, &quot;commerce&quot;, &quot;states&quot;, &quot;vessels&quot;, &quot;subject&quot;, &quot;united&quot;, &quot;citizens&quot;, &quot;session&quot;, &quot;government&quot;, &quot;present&quot;, &quot;extent&quot;, &quot;th&quot;, &quot;congress&quot;, &quot;country&quot;, &quot;solar&quot;, &quot;acknowledged&quot;, &quot;hostages&quot;, &quot;enacts&quot;, &quot;scott&quot;, &quot;kellogg&quot;, &quot;discovered&quot;, &quot;literal&quot;, &quot;destroyed&quot;, &quot;marking&quot;, &quot;boycott&quot;, &quot;quo&quot;, &quot;slaveholding&quot;, &quot;natives&quot;, &quot;expires&quot;, &quot;winter&quot;, &quot;sadness&quot;, &quot;merit&quot;, &quot;lloyd&quot;, &quot;exalted&quot;, &quot;polls&quot;, &quot;overt&quot;, &quot;petersburg&quot;, &quot;dictatorships&quot;, &quot;ideological&quot;, &quot;hussein&quot;, &quot;lexington&quot;, &quot;selma&quot;, &quot;assemblage&quot;, &quot;great&quot;, &quot;war&quot;, &quot;interests&quot;, &quot;power&quot;, &quot;state&quot;, &quot;general&quot;, &quot;foreign&quot;, &quot;duty&quot;, &quot;necessary&quot;, &quot;time&quot;, &quot;effect&quot;, &quot;nations&quot;, &quot;shall&quot;, &quot;powers&quot;, &quot;year&quot;, &quot;act&quot;, &quot;people&quot;, &quot;consciousness&quot;, &quot;treason&quot;, &quot;dams&quot;, &quot;enhance&quot;, &quot;roots&quot;, &quot;assure&quot;, &quot;deck&quot;, &quot;conquering&quot;, &quot;bunker&quot;, &quot;delegation&quot;, &quot;lawful&quot;, &quot;bigotry&quot;, &quot;weal&quot;, &quot;preparations&quot;, &quot;spirit&quot;, &quot;conduct&quot;, &quot;consists&quot;, &quot;billion&quot;, &quot;pulled&quot;, &quot;increasingly&quot;, &quot;intelligence&quot;, &quot;democracy&quot;, &quot;malaria&quot;, &quot;milosevic&quot;, &quot;accusation&quot;, &quot;ton&quot;, &quot;story&quot;, &quot;cultivate&quot;, &quot;patents&quot;, &quot;differing&quot;, &quot;new&quot;, &quot;peace&quot;, &quot;tulane&quot;, &quot;addiction&quot;, &quot;hiv&quot;, &quot;anne&quot;, &quot;kid&quot;, &quot;uninsured&quot;, &quot;chip&quot;, &quot;wieghart&quot;, &quot;tall&quot;, &quot;dc&quot;, &quot;bicentennial&quot;, &quot;timeless&quot;, &quot;innovative&quot;, &quot;paychecks&quot;, &quot;empowerment&quot;, &quot;jerry&quot;, &quot;em&quot;, &quot;basics&quot;, &quot;sawyer&quot;, &quot;indexing&quot;, &quot;qaida&quot;, &quot;jack&quot;, &quot;brady&quot;, &quot;usa&quot;, &quot;infrastructure&quot;, &quot;cocaine&quot;, &quot;jennings&quot;, &quot;teenagers&quot;, &quot;prescription&quot;, &quot;perot&quot;, &quot;lehrer&quot;, &quot;kids&quot;, &quot;affordable&quot;, &quot;medicaid&quot;, &quot;dukakis&quot;, &quot;qaeda&quot;, &quot;walters&quot;, &quot;medicare&quot;, &quot;iraqis&quot;, &quot;trillion&quot;, &quot;mccain&quot;, &quot;environmental&quot;, &quot;math&quot;, &quot;lobbyists&quot;, &quot;internet&quot;, &quot;tuition&quot;, &quot;hillary&quot;, &quot;mashek&quot;, &quot;auto&quot;, &quot;paperwork&quot;, &quot;row&quot;, &quot;drug&quot;, &quot;clinton&quot;, &quot;dole&quot;, &quot;jobs&quot;, &quot;drugs&quot;, &quot;ms&quot;, &quot;biggest&quot;, &quot;seniors&quot;, &quot;cuts&quot;, &quot;spending&quot;, &quot;ll&quot;, &quot;ve&quot;, &quot;businesses&quot;, &quot;iraqi&quot;, &quot;inflation&quot;, &quot;bush&quot;, &quot;iraq&quot;, &quot;parents&quot;, &quot;coverage&quot;, &quot;laughter&quot;, &quot;child&quot;, &quot;tonight&quot;, &quot;health&quot;, &quot;budget&quot;, &quot;got&quot;, &quot;programs&quot;, &quot;children&quot;, &quot;america&quot;, &quot;reagan&quot;, &quot;americans&quot;, &quot;cut&quot;, &quot;percent&quot;, &quot;thank&quot;, &quot;families&quot;, &quot;tax&quot;, &quot;help&quot;, &quot;let&quot;, &quot;know&quot;, &quot;billion&quot;, &quot;people&quot;, &quot;want&quot;, &quot;years&quot;, &quot;family&quot;, &quot;job&quot;, &quot;care&quot;, &quot;economy&quot;, &quot;new&quot;, &quot;prince&quot;, &quot;contingency&quot;, &quot;embodiment&quot;, &quot;permit&quot;, &quot;foregoing&quot;, &quot;argentina&quot;, &quot;proclamations&quot;, &quot;dreadful&quot;, &quot;confirm&quot;, &quot;concepts&quot;, &quot;precipitate&quot;, &quot;furnishes&quot;, &quot;heed&quot;, &quot;varied&quot;, &quot;kalb&quot;, &quot;deficiencies&quot;, &quot;founders&quot;, &quot;happened&quot;, &quot;invited&quot;, &quot;hunting&quot;, &quot;iron&quot;, &quot;giver&quot;, &quot;pertinent&quot;, &quot;litigation&quot;, &quot;securing&quot;, &quot;folly&quot;, &quot;tip&quot;, &quot;cloth&quot;, &quot;subsidies&quot;, &quot;intricate&quot;, &quot;work&quot;, &quot;american&quot;, &quot;world&quot;, &quot;year&quot;, &quot;president&quot;, &quot;today&quot;, &quot;nation&quot;, &quot;time&quot;, &quot;going&quot;, &quot;need&quot;, &quot;government&quot;, &quot;country&quot;, &quot;congress&quot;, &quot;think&quot;, &quot;future&quot;, &quot;way&quot;, &quot;radically&quot;, &quot;reaches&quot;, &quot;damage&quot;, &quot;grief&quot;, &quot;mobilized&quot;, &quot;reality&quot;, &quot;yard&quot;, &quot;hearty&quot;, &quot;baseless&quot;, &quot;safer&quot;, &quot;pirates&quot;, &quot;represent&quot;, &quot;indefinitely&quot;, &quot;pregnancy&quot;, &quot;century&quot;, &quot;dominated&quot;, &quot;expires&quot;, &quot;congratulating&quot;, &quot;aggravate&quot;, &quot;intimidation&quot;, &quot;offshore&quot;, &quot;deepening&quot;, &quot;testimony&quot;, &quot;terminate&quot;, &quot;exhaust&quot;, &quot;gangs&quot;, &quot;disturbances&quot;, &quot;marks&quot;, &quot;representatives&quot;, &quot;recognized&quot;, &quot;great&quot;, &quot;good&quot;, &quot;crimea&quot;, &quot;huerta&quot;, &quot;ofour&quot;, &quot;autocracy&quot;, &quot;finland&quot;, &quot;shouldbe&quot;, &quot;yalta&quot;, &quot;comprehension&quot;, &quot;rejoicing&quot;, &quot;teheran&quot;, &quot;triumphant&quot;, &quot;centered&quot;, &quot;liberalism&quot;, &quot;waits&quot;, &quot;poles&quot;, &quot;fellowship&quot;, &quot;consecrate&quot;, &quot;ofthe&quot;, &quot;stir&quot;, &quot;americanism&quot;, &quot;serviceable&quot;, &quot;intrigue&quot;, &quot;calmly&quot;, &quot;pious&quot;, &quot;nazi&quot;, &quot;inthe&quot;, &quot;programme&quot;, &quot;eminence&quot;, &quot;vestige&quot;, &quot;insistent&quot;, &quot;conception&quot;, &quot;rome&quot;, &quot;immortal&quot;, &quot;axis&quot;, &quot;tasks&quot;, &quot;thoughts&quot;, &quot;peoples&quot;, &quot;spiritual&quot;, &quot;conscience&quot;, &quot;righteous&quot;, &quot;processes&quot;, &quot;mankind&quot;, &quot;countrymen&quot;, &quot;liberty&quot;, &quot;life&quot;, &quot;civilization&quot;, &quot;men&quot;, &quot;world&quot;, &quot;germany&quot;, &quot;peace&quot;, &quot;man&quot;, &quot;nation&quot;, &quot;great&quot;, &quot;ideals&quot;, &quot;nations&quot;, &quot;war&quot;, &quot;people&quot;, &quot;free&quot;, &quot;shall&quot;, &quot;wish&quot;, &quot;humanity&quot;, &quot;spirit&quot;, &quot;political&quot;, &quot;human&quot;, &quot;principles&quot;, &quot;united&quot;, &quot;owed&quot;, &quot;needs&quot;, &quot;revolutions&quot;, &quot;precarious&quot;, &quot;relates&quot;, &quot;doubts&quot;, &quot;rolls&quot;, &quot;territory&quot;, &quot;pursuance&quot;, &quot;bell&quot;, &quot;occasions&quot;, &quot;privateers&quot;, &quot;hesitate&quot;, &quot;sending&quot;, &quot;recalling&quot;, &quot;secondary&quot;, &quot;literature&quot;, &quot;incidentally&quot;, &quot;harriman&quot;, &quot;expansions&quot;, &quot;fox&quot;, &quot;appreciating&quot;, &quot;wise&quot;, &quot;isolationism&quot;, &quot;maybe&quot;, &quot;insufficient&quot;, &quot;allow&quot;, &quot;witnessed&quot;, &quot;liberation&quot;, &quot;freedom&quot;, &quot;government&quot;, &quot;american&quot;, &quot;common&quot;, &quot;party&quot;, &quot;country&quot;, &quot;come&quot;, &quot;power&quot;, &quot;national&quot;, &quot;new&quot;, &quot;day&quot;, &quot;rights&quot;, &quot;states&quot;, &quot;time&quot;, &quot;america&quot;, &quot;right&quot;, &quot;stand&quot;, &quot;intersection&quot;, &quot;budget&quot;, &quot;awaited&quot;, &quot;tie&quot;, &quot;visiting&quot;, &quot;urged&quot;, &quot;hatreds&quot;, &quot;nineteenth&quot;, &quot;culture&quot;, &quot;real&quot;, &quot;fired&quot;, &quot;answered&quot;, &quot;match&quot;, &quot;nationalities&quot;, &quot;remarks&quot;, &quot;homage&quot;, &quot;masters&quot;, &quot;weapon&quot;, &quot;hasty&quot;, &quot;interruptions&quot;, &quot;sorely&quot;, &quot;purports&quot;, &quot;voluntary&quot;, &quot;illusions&quot;, &quot;cherokees&quot;, &quot;sits&quot;, &quot;dearest&quot;, &quot;ownership&quot;, &quot;public&quot;, &quot;deferral&quot;, &quot;acreage&quot;, &quot;recuperation&quot;, &quot;consolidations&quot;, &quot;cooperatives&quot;, &quot;culebra&quot;, &quot;depressions&quot;, &quot;deflation&quot;, &quot;tile&quot;, &quot;overproduction&quot;, &quot;marketing&quot;, &quot;shoals&quot;, &quot;degeneration&quot;, &quot;licensing&quot;, &quot;expedited&quot;, &quot;reservoir&quot;, &quot;seasonal&quot;, &quot;meal&quot;, &quot;taxable&quot;, &quot;vocational&quot;, &quot;dividend&quot;, &quot;electrical&quot;, &quot;livestock&quot;, &quot;depreciation&quot;, &quot;utilities&quot;, &quot;muscle&quot;, &quot;inspected&quot;, &quot;rehabilitation&quot;, &quot;panics&quot;, &quot;aviation&quot;, &quot;commodities&quot;, &quot;veterans&quot;, &quot;farm&quot;, &quot;flood&quot;, &quot;depression&quot;, &quot;wages&quot;, &quot;purchasing&quot;, &quot;recovery&quot;, &quot;agencies&quot;, &quot;employment&quot;, &quot;unemployed&quot;, &quot;prices&quot;, &quot;relief&quot;, &quot;normal&quot;, &quot;credit&quot;, &quot;projects&quot;, &quot;agriculture&quot;, &quot;industry&quot;, &quot;investment&quot;, &quot;reorganization&quot;, &quot;federal&quot;, &quot;tax&quot;, &quot;income&quot;, &quot;unemployment&quot;, &quot;distress&quot;, &quot;farmer&quot;, &quot;business&quot;, &quot;economic&quot;, &quot;agricultural&quot;, &quot;reserve&quot;, &quot;sits&quot;, &quot;outlines&quot;, &quot;benefited&quot;, &quot;complied&quot;, &quot;wednesday&quot;, &quot;irredeemable&quot;, &quot;freeing&quot;, &quot;advent&quot;, &quot;grief&quot;, &quot;subscriptions&quot;, &quot;rebel&quot;, &quot;morgan&quot;, &quot;stages&quot;, &quot;apologies&quot;, &quot;guardianship&quot;, &quot;considers&quot;, &quot;recollected&quot;, &quot;monopoly&quot;, &quot;compelled&quot;, &quot;exports&quot;, &quot;beneficially&quot;, &quot;foes&quot;, &quot;endorsed&quot;, &quot;deliberation&quot;, &quot;bonded&quot;, &quot;seeks&quot;, &quot;approach&quot;, &quot;san&quot;, &quot;rising&quot;, &quot;designed&quot;, &quot;reduction&quot;, &quot;production&quot;, &quot;government&quot;, &quot;work&quot;, &quot;national&quot;, &quot;congress&quot;, &quot;increase&quot;, &quot;public&quot;, &quot;problem&quot;, &quot;construction&quot;, &quot;year&quot;, &quot;increased&quot;, &quot;country&quot;, &quot;people&quot;, &quot;large&quot;, &quot;labor&quot;, &quot;present&quot;, &quot;time&quot;, &quot;american&quot;, &quot;great&quot;, &quot;new&quot;, &quot;action&quot;, &quot;years&quot;, &quot;states&quot;, &quot;world&quot;, &quot;legislation&quot;, &quot;feared&quot;, &quot;animated&quot;, &quot;satisfactorily&quot;, &quot;indulged&quot;, &quot;situated&quot;, &quot;handful&quot;, &quot;undergone&quot;, &quot;cancel&quot;, &quot;accomplished&quot;, &quot;potential&quot;, &quot;expedite&quot;, &quot;consuming&quot;, &quot;disinterested&quot;, &quot;mingled&quot;, &quot;barrel&quot;, &quot;yard&quot;, &quot;nominee&quot;, &quot;change&quot;, &quot;approved&quot;, &quot;chemicals&quot;, &quot;extensive&quot;, &quot;technicians&quot;, &quot;sanitary&quot;, &quot;supporting&quot;, &quot;ineffective&quot;, &quot;breeding&quot;, &quot;indispensably&quot;, &quot;patience&quot;, &quot;unworthy&quot;, &quot;output&quot;, &quot;necessary&quot;, &quot;valeriani&quot;, &quot;fallout&quot;, &quot;frankel&quot;, &quot;taiwan&quot;, &quot;containment&quot;, &quot;normalization&quot;, &quot;brezhnev&quot;, &quot;ss&quot;, &quot;detente&quot;, &quot;trewhitt&quot;, &quot;sdi&quot;, &quot;kremlin&quot;, &quot;colonialism&quot;, &quot;satellites&quot;, &quot;multilateral&quot;, &quot;tensions&quot;, &quot;ballistic&quot;, &quot;warsaw&quot;, &quot;missiles&quot;, &quot;somber&quot;, &quot;easing&quot;, &quot;airlift&quot;, &quot;emergence&quot;, &quot;verification&quot;, &quot;angola&quot;, &quot;deployment&quot;, &quot;moscow&quot;, &quot;symbols&quot;, &quot;iceland&quot;, &quot;explosions&quot;, &quot;soviets&quot;, &quot;soviet&quot;, &quot;berlin&quot;, &quot;nuclear&quot;, &quot;warheads&quot;, &quot;deter&quot;, &quot;alliance&quot;, &quot;geneva&quot;, &quot;strategic&quot;, &quot;disarmament&quot;, &quot;weapons&quot;, &quot;communist&quot;, &quot;regional&quot;, &quot;nato&quot;, &quot;arms&quot;, &quot;threat&quot;, &quot;khrushchev&quot;, &quot;nations&quot;, &quot;world&quot;, &quot;europe&quot;, &quot;allies&quot;, &quot;aggression&quot;, &quot;freedom&quot;, &quot;peace&quot;, &quot;defense&quot;, &quot;peaceful&quot;, &quot;east&quot;, &quot;appropriated&quot;, &quot;pretensions&quot;, &quot;stringency&quot;, &quot;triple&quot;, &quot;convey&quot;, &quot;fleets&quot;, &quot;tehuantepec&quot;, &quot;ottoman&quot;, &quot;midway&quot;, &quot;horrors&quot;, &quot;subsidiary&quot;, &quot;suited&quot;, &quot;quantities&quot;, &quot;farthest&quot;, &quot;affecting&quot;, &quot;sighted&quot;, &quot;sufficiently&quot;, &quot;arbitrament&quot;, &quot;resulted&quot;, &quot;appointees&quot;, &quot;election&quot;, &quot;children&quot;, &quot;compassion&quot;, &quot;fuel&quot;, &quot;presumption&quot;, &quot;accomplishing&quot;, &quot;noticed&quot;, &quot;reflection&quot;, &quot;conciliation&quot;, &quot;planting&quot;, &quot;union&quot;, &quot;today&quot;, &quot;united&quot;, &quot;security&quot;, &quot;new&quot;, &quot;free&quot;, &quot;military&quot;, &quot;strength&quot;, &quot;countries&quot;, &quot;states&quot;, &quot;war&quot;, &quot;economic&quot;, &quot;people&quot;, &quot;nation&quot;, &quot;years&quot;, &quot;let&quot;, &quot;forces&quot;, &quot;policy&quot;, &quot;american&quot;, &quot;time&quot;, &quot;america&quot;, &quot;crew&quot;, &quot;supplement&quot;, &quot;concurring&quot;, &quot;graham&quot;, &quot;performs&quot;, &quot;bus&quot;, &quot;builded&quot;, &quot;assemblies&quot;, &quot;lighted&quot;, &quot;authorized&quot;, &quot;ignorant&quot;, &quot;joint&quot;, &quot;allowed&quot;, &quot;dissolve&quot;, &quot;impropriety&quot;, &quot;waters&quot;, &quot;governors&quot;, &quot;letting&quot;, &quot;dealers&quot;, &quot;dependence&quot;, &quot;burden&quot;, &quot;members&quot;, &quot;proudly&quot;, &quot;faith&quot;, &quot;launching&quot;, &quot;gotten&quot;, &quot;agricultural&quot;, &quot;target&quot;, &quot;squadrons&quot;, &quot;country&quot;, &quot;wageworkers&quot;, &quot;shipper&quot;, &quot;wrongdoer&quot;, &quot;unhealthy&quot;, &quot;thoroughgoing&quot;, &quot;shippers&quot;, &quot;maneuvers&quot;, &quot;anarchist&quot;, &quot;hague&quot;, &quot;agitator&quot;, &quot;interstate&quot;, &quot;filipinos&quot;, &quot;soils&quot;, &quot;rebates&quot;, &quot;forestry&quot;, &quot;accidents&quot;, &quot;forest&quot;, &quot;filipino&quot;, &quot;creatures&quot;, &quot;arid&quot;, &quot;grazing&quot;, &quot;wrongdoing&quot;, &quot;antitrust&quot;, &quot;locks&quot;, &quot;herd&quot;, &quot;undesirable&quot;, &quot;publicity&quot;, &quot;standpoint&quot;, &quot;seniority&quot;, &quot;injunctions&quot;, &quot;carriers&quot;, &quot;corporations&quot;, &quot;philippine&quot;, &quot;forests&quot;, &quot;regards&quot;, &quot;combination&quot;, &quot;canal&quot;, &quot;railroads&quot;, &quot;alaska&quot;, &quot;philippines&quot;, &quot;industrial&quot;, &quot;business&quot;, &quot;conditions&quot;, &quot;law&quot;, &quot;supervision&quot;, &quot;combinations&quot;, &quot;commission&quot;, &quot;labor&quot;, &quot;work&quot;, &quot;commerce&quot;, &quot;employees&quot;, &quot;intending&quot;, &quot;sweet&quot;, &quot;reflection&quot;, &quot;treating&quot;, &quot;undue&quot;, &quot;repeatedly&quot;, &quot;deserves&quot;, &quot;strive&quot;, &quot;solicitude&quot;, &quot;dominions&quot;, &quot;governs&quot;, &quot;defending&quot;, &quot;guy&quot;, &quot;ripe&quot;, &quot;assertion&quot;, &quot;glass&quot;, &quot;revision&quot;, &quot;admonished&quot;, &quot;mcgee&quot;, &quot;palpable&quot;, &quot;reasonably&quot;, &quot;quicker&quot;, &quot;flow&quot;, &quot;authorizing&quot;, &quot;superintendents&quot;, &quot;drives&quot;, &quot;attitude&quot;, &quot;amicable&quot;, &quot;dispatched&quot;, &quot;court&quot;, &quot;statute&quot;, &quot;men&quot;, &quot;railroad&quot;, &quot;islands&quot;, &quot;man&quot;, &quot;possible&quot;, &quot;navy&quot;, &quot;courts&quot;, &quot;great&quot;, &quot;certain&quot;, &quot;far&quot;, &quot;control&quot;, &quot;government&quot;, &quot;army&quot;, &quot;public&quot;, &quot;good&quot;, &quot;national&quot;, &quot;service&quot;, &quot;legislation&quot;, &quot;power&quot;, &quot;congress&quot;, &quot;country&quot;, &quot;american&quot;, &quot;present&quot;, &quot;people&quot;, &quot;states&quot;, &quot;nation&quot;, &quot;time&quot;, &quot;replaced&quot;, &quot;recent&quot;, &quot;invested&quot;, &quot;lend&quot;, &quot;fewer&quot;, &quot;houston&quot;, &quot;revenge&quot;, &quot;satisfying&quot;, &quot;frontiers&quot;, &quot;compliance&quot;, &quot;retaliatory&quot;, &quot;approaches&quot;, &quot;index&quot;, &quot;impracticable&quot;, &quot;polls&quot;, &quot;miner&quot;, &quot;wonderful&quot;, &quot;pirates&quot;, &quot;fix&quot;, &quot;college&quot;, &quot;invests&quot;, &quot;abolished&quot;, &quot;humane&quot;, &quot;appeared&quot;, &quot;mexicans&quot;, &quot;wide&quot;, &quot;resolved&quot;, &quot;surface&quot;, &quot;asset&quot;, &quot;mediterranean&quot;, &quot;united&quot;, &quot;minh&quot;, &quot;chi&quot;, &quot;vietcong&quot;, &quot;thieu&quot;, &quot;kondracke&quot;, &quot;kalb&quot;, &quot;geyer&quot;, &quot;sanctuaries&quot;, &quot;milosevic&quot;, &quot;vietnam&quot;, &quot;hanoi&quot;, &quot;sicily&quot;, &quot;bunker&quot;, &quot;vietnamese&quot;, &quot;bombing&quot;, &quot;newman&quot;, &quot;kosovo&quot;, &quot;qadhafi&quot;, &quot;somalia&quot;, &quot;airliner&quot;, &quot;scherer&quot;, &quot;infiltration&quot;, &quot;serbia&quot;, &quot;escalate&quot;, &quot;ho&quot;, &quot;asians&quot;, &quot;balkans&quot;, &quot;oas&quot;, &quot;miner&quot;, &quot;thailand&quot;, &quot;civilians&quot;, &quot;casualties&quot;, &quot;southeast&quot;, &quot;planes&quot;, &quot;fighting&quot;, &quot;polish&quot;, &quot;south&quot;, &quot;dominican&quot;, &quot;north&quot;, &quot;forces&quot;, &quot;asia&quot;, &quot;civilian&quot;, &quot;attacks&quot;, &quot;combat&quot;, &quot;war&quot;, &quot;enemy&quot;, &quot;victory&quot;, &quot;peace&quot;, &quot;aggression&quot;, &quot;japanese&quot;, &quot;troops&quot;, &quot;stretch&quot;, &quot;ratification&quot;, &quot;developments&quot;, &quot;appeasement&quot;, &quot;survived&quot;, &quot;invisible&quot;, &quot;spectacle&quot;, &quot;window&quot;, &quot;anomalous&quot;, &quot;impelled&quot;, &quot;tear&quot;, &quot;retain&quot;, &quot;merit&quot;, &quot;experiments&quot;, &quot;eve&quot;, &quot;province&quot;, &quot;impressed&quot;, &quot;prosecutor&quot;, &quot;pretty&quot;, &quot;notify&quot;, &quot;persuade&quot;, &quot;devices&quot;, &quot;distressing&quot;, &quot;proudest&quot;, &quot;tens&quot;, &quot;ought&quot;, &quot;accountability&quot;, &quot;woodrow&quot;, &quot;aeronautics&quot;, &quot;american&quot;, &quot;tonight&quot;, &quot;air&quot;, &quot;americans&quot;, &quot;men&quot;, &quot;people&quot;, &quot;know&quot;, &quot;allies&quot;, &quot;world&quot;, &quot;today&quot;, &quot;want&quot;, &quot;military&quot;, &quot;end&quot;, &quot;america&quot;, &quot;president&quot;, &quot;united&quot;, &quot;nation&quot;, &quot;time&quot;, &quot;nations&quot;, &quot;states&quot;, &quot;think&quot;, &quot;country&quot;, &quot;government&quot;, &quot;years&quot;, &quot;cold&quot;, &quot;flight&quot;, &quot;meager&quot;, &quot;collecting&quot;, &quot;demoralizing&quot;, &quot;subordination&quot;, &quot;teachers&quot;, &quot;passes&quot;, &quot;petersburg&quot;, &quot;flourish&quot;, &quot;located&quot;, &quot;prolongation&quot;, &quot;opposition&quot;, &quot;remnants&quot;, &quot;czechoslovakia&quot;, &quot;restlessness&quot;, &quot;caroline&quot;, &quot;pay&quot;, &quot;broadest&quot;, &quot;oppose&quot;, &quot;perils&quot;, &quot;consideration&quot;, &quot;guaranteed&quot;, &quot;hail&quot;, &quot;incompetent&quot;, &quot;estimates&quot;, &quot;conform&quot;, &quot;rule&quot;, &quot;concurring&quot;, &quot;new&quot;, &quot;great&quot;, &quot;drummond&quot;, &quot;shadel&quot;, &quot;coverup&quot;, &quot;haldeman&quot;, &quot;quemoy&quot;, &quot;pescadores&quot;, &quot;matsu&quot;, &quot;mcgee&quot;, &quot;tapes&quot;, &quot;fulbright&quot;, &quot;uh&quot;, &quot;ehrlichman&quot;, &quot;transcripts&quot;, &quot;wallace&quot;, &quot;edwards&quot;, &quot;mcnamara&quot;, &quot;formosa&quot;, &quot;bundy&quot;, &quot;correspondents&quot;, &quot;nixon&quot;, &quot;watergate&quot;, &quot;prosecutor&quot;, &quot;viet&quot;, &quot;primaries&quot;, &quot;nam&quot;, &quot;howe&quot;, &quot;morgan&quot;, &quot;speculate&quot;, &quot;kosygin&quot;, &quot;supersonic&quot;, &quot;sir&quot;, &quot;kennedy&quot;, &quot;conversation&quot;, &quot;mr&quot;, &quot;senator&quot;, &quot;think&quot;, &quot;president&quot;, &quot;comment&quot;, &quot;eisenhower&quot;, &quot;going&quot;, &quot;prestige&quot;, &quot;committee&quot;, &quot;vice&quot;, &quot;concerned&quot;, &quot;statement&quot;, &quot;question&quot;, &quot;believe&quot;, &quot;shift&quot;, &quot;setbacks&quot;, &quot;dreamed&quot;, &quot;remedy&quot;, &quot;conserve&quot;, &quot;dead&quot;, &quot;genius&quot;, &quot;relations&quot;, &quot;bondage&quot;, &quot;responsive&quot;, &quot;reach&quot;, &quot;live&quot;, &quot;sorry&quot;, &quot;confided&quot;, &quot;grow&quot;, &quot;create&quot;, &quot;miserable&quot;, &quot;adjutant&quot;, &quot;residing&quot;, &quot;outward&quot;, &quot;spoils&quot;, &quot;underestimate&quot;, &quot;surrendering&quot;, &quot;communications&quot;, &quot;concurring&quot;, &quot;enable&quot;, &quot;ronald&quot;, &quot;paid&quot;, &quot;indulged&quot;, &quot;administration&quot;, &quot;candidates&quot;, &quot;candidate&quot;, &quot;said&quot;, &quot;press&quot;, &quot;position&quot;, &quot;secretary&quot;, &quot;want&quot;, &quot;general&quot;, &quot;people&quot;, &quot;matter&quot;, &quot;time&quot;, &quot;house&quot;, &quot;program&quot;, &quot;senate&quot;, &quot;united&quot;, &quot;country&quot;, &quot;states&quot;, &quot;government&quot;, &quot;congress&quot;, &quot;air&quot;, &quot;helped&quot;, &quot;exhort&quot;, &quot;scope&quot;, &quot;formally&quot;, &quot;proves&quot;, &quot;harness&quot;, &quot;decreases&quot;, &quot;response&quot;, &quot;expired&quot;, &quot;lewis&quot;, &quot;fixing&quot;, &quot;monitor&quot;, &quot;magic&quot;, &quot;taxed&quot;, &quot;tree&quot;, &quot;critical&quot;, &quot;angeles&quot;, &quot;selling&quot;, &quot;postponed&quot;, &quot;terrific&quot;, &quot;arrived&quot;, &quot;roles&quot;, &quot;daughters&quot;, &quot;chesapeake&quot;, &quot;adhering&quot;, &quot;sword&quot;, &quot;imposes&quot;, &quot;termed&quot;, &quot;stamp&quot;, &quot;good&quot;, &quot;know&quot;, &quot;year&quot;, &quot;dred&quot;, &quot;wilmot&quot;, &quot;topeka&quot;, &quot;lecompton&quot;, &quot;seceded&quot;, &quot;sumter&quot;, &quot;nebraska&quot;, &quot;republicanism&quot;, &quot;clay&quot;, &quot;slavery&quot;, &quot;secede&quot;, &quot;slaves&quot;, &quot;disunion&quot;, &quot;compromises&quot;, &quot;missouri&quot;, &quot;hung&quot;, &quot;slave&quot;, &quot;douglas&quot;, &quot;fugitive&quot;, &quot;governs&quot;, &quot;kansas&quot;, &quot;walker&quot;, &quot;napoleon&quot;, &quot;forbade&quot;, &quot;rhode&quot;, &quot;compromise&quot;, &quot;negroes&quot;, &quot;secession&quot;, &quot;dissatisfied&quot;, &quot;repudiated&quot;, &quot;ordinance&quot;, &quot;utah&quot;, &quot;fort&quot;, &quot;framed&quot;, &quot;agitation&quot;, &quot;argument&quot;, &quot;emancipation&quot;, &quot;constitution&quot;, &quot;union&quot;, &quot;repeal&quot;, &quot;principle&quot;, &quot;illinois&quot;, &quot;evidently&quot;, &quot;bracket&quot;, &quot;offend&quot;, &quot;delegate&quot;, &quot;duties&quot;, &quot;erected&quot;, &quot;depend&quot;, &quot;unified&quot;, &quot;wait&quot;, &quot;pass&quot;, &quot;regulations&quot;, &quot;bomber&quot;, &quot;reduces&quot;, &quot;dangerous&quot;, &quot;judiciously&quot;, &quot;tending&quot;, &quot;policeman&quot;, &quot;reopened&quot;, &quot;consulate&quot;, &quot;failure&quot;, &quot;student&quot;, &quot;disabled&quot;, &quot;foundation&quot;, &quot;rumor&quot;, &quot;supervising&quot;, &quot;uncontrollable&quot;, &quot;tulane&quot;, &quot;schedules&quot;, &quot;bulgaria&quot;, &quot;abortion&quot;, &quot;territory&quot;, &quot;question&quot;, &quot;state&quot;, &quot;territories&quot;, &quot;north&quot;, &quot;judge&quot;, &quot;right&quot;, &quot;south&quot;, &quot;free&quot;, &quot;people&quot;, &quot;states&quot;, &quot;man&quot;, &quot;government&quot;, &quot;shall&quot;, &quot;men&quot;, &quot;law&quot;, &quot;congress&quot;, &quot;country&quot;, &quot;great&quot;, &quot;new&quot;, &quot;power&quot;, &quot;federal&quot;, &quot;instead&quot;, &quot;sharing&quot;, &quot;perform&quot;, &quot;employees&quot;, &quot;emerged&quot;, &quot;food&quot;, &quot;reestablishment&quot;, &quot;deeds&quot;, &quot;impelled&quot;, &quot;fraught&quot;, &quot;sister&quot;, &quot;st&quot;, &quot;idealism&quot;, &quot;democrat&quot;, &quot;consolidations&quot;, &quot;sum&quot;, &quot;par&quot;, &quot;parks&quot;, &quot;diplomatically&quot;, &quot;wealthiest&quot;, &quot;withhold&quot;, &quot;years&quot;, &quot;commercial&quot;, &quot;permitting&quot;, &quot;heroism&quot;, &quot;measured&quot;, &quot;northwest&quot;, &quot;fit&quot;, &quot;justified&quot;, &quot;spell&quot;, &quot;sec&quot;, &quot;accusation&quot;, &quot;impeachment&quot;, &quot;supervisors&quot;, &quot;stanton&quot;, &quot;lawmaking&quot;, &quot;journals&quot;, &quot;impeachable&quot;, &quot;preamble&quot;, &quot;vacancy&quot;, &quot;palpably&quot;, &quot;censure&quot;, &quot;electoral&quot;, &quot;swear&quot;, &quot;originated&quot;, &quot;coordinate&quot;, &quot;inference&quot;, &quot;annihilated&quot;, &quot;viz&quot;, &quot;servitude&quot;, &quot;comitatus&quot;, &quot;deprivation&quot;, &quot;journal&quot;, &quot;ordained&quot;, &quot;devolve&quot;, &quot;grievance&quot;, &quot;votes&quot;, &quot;subversive&quot;, &quot;derogation&quot;, &quot;seats&quot;, &quot;framers&quot;, &quot;elections&quot;, &quot;legislatures&quot;, &quot;objections&quot;, &quot;resolution&quot;, &quot;assent&quot;, &quot;constitution&quot;, &quot;senators&quot;, &quot;deputy&quot;, &quot;magistrate&quot;, &quot;judicial&quot;, &quot;election&quot;, &quot;bank&quot;, &quot;senate&quot;, &quot;removal&quot;, &quot;executive&quot;, &quot;legislative&quot;, &quot;representatives&quot;, &quot;section&quot;, &quot;house&quot;, &quot;power&quot;, &quot;president&quot;, &quot;constitutional&quot;, &quot;captured&quot;, &quot;ruin&quot;, &quot;retirement&quot;, &quot;amicably&quot;, &quot;unchanged&quot;, &quot;manpower&quot;, &quot;turmoil&quot;, &quot;gets&quot;, &quot;device&quot;, &quot;truce&quot;, &quot;fundamentally&quot;, &quot;allow&quot;, &quot;stable&quot;, &quot;damage&quot;, &quot;baltic&quot;, &quot;constituted&quot;, &quot;reciprocated&quot;, &quot;naked&quot;, &quot;meaningful&quot;, &quot;yields&quot;, &quot;sanctioned&quot;, &quot;fraternal&quot;, &quot;tyranny&quot;, &quot;ss&quot;, &quot;reiterated&quot;, &quot;dissension&quot;, &quot;impressive&quot;, &quot;traveling&quot;, &quot;basics&quot;, &quot;jungles&quot;, &quot;office&quot;, &quot;states&quot;, &quot;state&quot;, &quot;shall&quot;, &quot;congress&quot;, &quot;law&quot;, &quot;laws&quot;, &quot;authority&quot;, &quot;duty&quot;, &quot;government&quot;, &quot;united&quot;, &quot;public&quot;, &quot;act&quot;, &quot;right&quot;, &quot;people&quot;, &quot;department&quot;, &quot;powers&quot;, &quot;general&quot;, &quot;herrera&quot;, &quot;pulled&quot;, &quot;pursued&quot;, &quot;taxpayers&quot;, &quot;leaders&quot;, &quot;ride&quot;, &quot;peter&quot;, &quot;unavailing&quot;, &quot;tank&quot;, &quot;centralized&quot;, &quot;fathers&quot;, &quot;floods&quot;, &quot;figure&quot;, &quot;abraham&quot;, &quot;agents&quot;, &quot;mild&quot;, &quot;complained&quot;, &quot;stirring&quot;, &quot;prophesy&quot;, &quot;manly&quot;, &quot;transmitting&quot;, &quot;affect&quot;, &quot;sensibly&quot;, &quot;deadline&quot;, &quot;gracious&quot;, &quot;inaugurated&quot;, &quot;inadmissible&quot;, &quot;denounced&quot;, &quot;coastwise&quot;, &quot;copyist&quot;, &quot;penmanship&quot;, &quot;orthography&quot;, &quot;andwhereas&quot;, &quot;hereunto&quot;, &quot;affixed&quot;, &quot;eligibles&quot;, &quot;copying&quot;, &quot;certify&quot;, &quot;privateer&quot;, &quot;exhort&quot;, &quot;aforesaid&quot;, &quot;whereof&quot;, &quot;disperse&quot;, &quot;hereinafter&quot;, &quot;examiners&quot;, &quot;sheriff&quot;, &quot;abodes&quot;, &quot;knowingly&quot;, &quot;burr&quot;, &quot;certification&quot;, &quot;kellogg&quot;, &quot;classified&quot;, &quot;excepted&quot;, &quot;clerk&quot;, &quot;register&quot;, &quot;requisition&quot;, &quot;disqualified&quot;, &quot;inspector&quot;, &quot;certified&quot;, &quot;rebel&quot;, &quot;applicant&quot;, &quot;carolina&quot;, &quot;seal&quot;, &quot;proclamation&quot;, &quot;freedmen&quot;, &quot;registration&quot;, &quot;examination&quot;, &quot;departmental&quot;, &quot;fitness&quot;, &quot;persons&quot;, &quot;thereof&quot;, &quot;person&quot;, &quot;oath&quot;, &quot;shall&quot;, &quot;marshal&quot;, &quot;states&quot;, &quot;rebellion&quot;, &quot;united&quot;, &quot;officer&quot;, &quot;state&quot;, &quot;laws&quot;, &quot;said&quot;, &quot;insurrection&quot;, &quot;reluctance&quot;, &quot;brave&quot;, &quot;manufacturers&quot;, &quot;examined&quot;, &quot;keeping&quot;, &quot;nazi&quot;, &quot;recently&quot;, &quot;wageworkers&quot;, &quot;floating&quot;, &quot;islamic&quot;, &quot;insistent&quot;, &quot;provocation&quot;, &quot;harsh&quot;, &quot;politics&quot;, &quot;valley&quot;, &quot;diplomatic&quot;, &quot;rescue&quot;, &quot;matsu&quot;, &quot;heroes&quot;, &quot;engineering&quot;, &quot;play&quot;, &quot;comity&quot;, &quot;price&quot;, &quot;marching&quot;, &quot;eastern&quot;, &quot;leader&quot;, &quot;philanthropic&quot;, &quot;passionate&quot;, &quot;war&quot;, &quot;quoting&quot;, &quot;unlawful&quot;, &quot;act&quot;, &quot;civil&quot;, &quot;authority&quot;, &quot;military&quot;, &quot;jurisdiction&quot;, &quot;acts&quot;, &quot;th&quot;, &quot;day&quot;, &quot;president&quot;, &quot;service&quot;, &quot;officers&quot;, &quot;constitution&quot;, &quot;law&quot;, &quot;office&quot;, &quot;duties&quot;, &quot;government&quot;, &quot;congress&quot;, &quot;general&quot;, &quot;place&quot;, &quot;time&quot;, &quot;lehrer&quot;, &quot;colonialism&quot;, &quot;candidly&quot;, &quot;nazis&quot;, &quot;leasing&quot;, &quot;inventors&quot;, &quot;experience&quot;, &quot;occasional&quot;, &quot;company&quot;, &quot;chile&quot;, &quot;test&quot;, &quot;writings&quot;, &quot;extinguishment&quot;, &quot;excellent&quot;, &quot;second&quot;, &quot;preparing&quot;, &quot;machinery&quot;, &quot;contraband&quot;, &quot;chosen&quot;, &quot;hunter&quot;, &quot;germany&quot;, &quot;nationality&quot;, &quot;pernicious&quot;, &quot;barrier&quot;, &quot;advisable&quot;, &quot;canal&quot;, &quot;superior&quot;, &quot;scott&quot;, &quot;unfavorable&quot;, &quot;seek&quot;, &quot;ballyporeen&quot;, &quot;frost&quot;, &quot;vanderbilt&quot;, &quot;skin&quot;, &quot;irish&quot;, &quot;affirmative&quot;, &quot;luther&quot;, &quot;grandfather&quot;, &quot;rican&quot;, &quot;negro&quot;, &quot;bus&quot;, &quot;drought&quot;, &quot;hotels&quot;, &quot;educated&quot;, &quot;roots&quot;, &quot;clothes&quot;, &quot;selma&quot;, &quot;robert&quot;, &quot;martin&quot;, &quot;segregation&quot;, &quot;sports&quot;, &quot;collins&quot;, &quot;university&quot;, &quot;indomitable&quot;, &quot;educators&quot;, &quot;color&quot;, &quot;ruled&quot;, &quot;racism&quot;, &quot;whites&quot;, &quot;roof&quot;, &quot;negroes&quot;, &quot;beloved&quot;, &quot;cherokees&quot;, &quot;porto&quot;, &quot;minorities&quot;, &quot;king&quot;, &quot;white&quot;, &quot;women&quot;, &quot;discrimination&quot;, &quot;inhabitant&quot;, &quot;burdened&quot;, &quot;preserved&quot;, &quot;released&quot;, &quot;brigade&quot;, &quot;economies&quot;, &quot;freedoms&quot;, &quot;feeling&quot;, &quot;ravaged&quot;, &quot;hayti&quot;, &quot;degrading&quot;, &quot;admirals&quot;, &quot;encroach&quot;, &quot;stir&quot;, &quot;businessmen&quot;, &quot;murders&quot;, &quot;creativity&quot;, &quot;carries&quot;, &quot;considerations&quot;, &quot;pat&quot;, &quot;giant&quot;, &quot;foundations&quot;, &quot;wage&quot;, &quot;disposing&quot;, &quot;consciously&quot;, &quot;enshrined&quot;, &quot;agreeing&quot;, &quot;vetoed&quot;, &quot;supporters&quot;, &quot;neighbors&quot;, &quot;father&quot;, &quot;men&quot;, &quot;americans&quot;, &quot;today&quot;, &quot;society&quot;, &quot;man&quot;, &quot;rights&quot;, &quot;nation&quot;, &quot;american&quot;, &quot;opportunity&quot;, &quot;law&quot;, &quot;people&quot;, &quot;right&quot;, &quot;freedom&quot;, &quot;country&quot;, &quot;great&quot;, &quot;action&quot;, &quot;years&quot;, &quot;equal&quot;, &quot;work&quot;, &quot;want&quot;, &quot;government&quot;, &quot;time&quot;, &quot;life&quot;, &quot;children&quot;, &quot;state&quot;, &quot;canadians&quot;, &quot;sphere&quot;, &quot;traditions&quot;, &quot;drawing&quot;, &quot;architecture&quot;, &quot;british&quot;, &quot;risks&quot;, &quot;commonsense&quot;, &quot;endurance&quot;, &quot;lively&quot;, &quot;dwell&quot;, &quot;gather&quot;, &quot;electric&quot;, &quot;comparison&quot;, &quot;solicitation&quot;, &quot;oklahoma&quot;, &quot;dictator&quot;, &quot;outlays&quot;, &quot;abiding&quot;, &quot;setting&quot;, &quot;forth&quot;, &quot;dime&quot;, &quot;ofour&quot;, &quot;vested&quot;, &quot;legitimately&quot;, &quot;performance&quot;, &quot;sufficiency&quot;, &quot;terror&quot;, &quot;reposed&quot;, &quot;settlement&quot;, &quot;states&quot;, &quot;good&quot;, &quot;citizens&quot;, &quot;america&quot;, &quot;dingley&quot;, &quot;payne&quot;, &quot;cloth&quot;, &quot;hartley&quot;, &quot;woolen&quot;, &quot;wool&quot;, &quot;pulp&quot;, &quot;silk&quot;, &quot;schedule&quot;, &quot;decreases&quot;, &quot;downward&quot;, &quot;hemp&quot;, &quot;taft&quot;, &quot;barrels&quot;, &quot;wines&quot;, &quot;print&quot;, &quot;consumption&quot;, &quot;reopened&quot;, &quot;schedules&quot;, &quot;chemicals&quot;, &quot;decreased&quot;, &quot;workingman&quot;, &quot;lumber&quot;, &quot;dutiable&quot;, &quot;petroleum&quot;, &quot;items&quot;, &quot;luxuries&quot;, &quot;unchanged&quot;, &quot;hides&quot;, &quot;wood&quot;, &quot;tariff&quot;, &quot;platform&quot;, &quot;oil&quot;, &quot;revision&quot;, &quot;articles&quot;, &quot;manufactures&quot;, &quot;energy&quot;, &quot;outstanding&quot;, &quot;sealing&quot;, &quot;italy&quot;, &quot;started&quot;, &quot;republicans&quot;, &quot;legislation&quot;, &quot;debates&quot;, &quot;protect&quot;, &quot;defined&quot;, &quot;tides&quot;, &quot;injuriously&quot;, &quot;pain&quot;, &quot;sumter&quot;, &quot;dispatched&quot;, &quot;specifics&quot;, &quot;carriers&quot;, &quot;dividend&quot;, &quot;blessing&quot;, &quot;grant&quot;, &quot;bodied&quot;, &quot;stirring&quot;, &quot;possessed&quot;, &quot;impede&quot;, &quot;rivalries&quot;, &quot;engagements&quot;, &quot;menace&quot;, &quot;assigned&quot;, &quot;spoliation&quot;, &quot;benevolent&quot;, &quot;endanger&quot;, &quot;production&quot;, &quot;coal&quot;, &quot;manufacturers&quot;, &quot;party&quot;, &quot;prices&quot;, &quot;rates&quot;, &quot;republican&quot;, &quot;increased&quot;, &quot;banks&quot;, &quot;country&quot;, &quot;congress&quot;, &quot;cost&quot;, &quot;imported&quot;, &quot;duty&quot;, &quot;foreign&quot;, &quot;law&quot;, &quot;increase&quot;, &quot;people&quot;, &quot;labor&quot;, &quot;duties&quot;, &quot;husbandman&quot;, &quot;negligence&quot;, &quot;obedient&quot;, &quot;reporting&quot;, &quot;sioux&quot;, &quot;stand&quot;, &quot;nullify&quot;, &quot;connected&quot;, &quot;designs&quot;, &quot;demonstrated&quot;, &quot;regulated&quot;, &quot;work&quot;, &quot;experience&quot;, &quot;muster&quot;, &quot;successes&quot;, &quot;educators&quot;, &quot;matches&quot;, &quot;instruments&quot;, &quot;settler&quot;, &quot;preparations&quot;, &quot;friendly&quot;, &quot;annapolis&quot;, &quot;extent&quot;, &quot;claiming&quot;, &quot;doubts&quot;, &quot;incidentally&quot;, &quot;reality&quot;, &quot;abuse&quot;, &quot;government&quot;, &quot;states&quot;, &quot;time&quot;, &quot;united&quot;, &quot;malmros&quot;, &quot;loomis&quot;, &quot;beaupre&quot;, &quot;ehrman&quot;, &quot;nashville&quot;, &quot;hay&quot;, &quot;colon&quot;, &quot;hubbard&quot;, &quot;telegram&quot;, &quot;colombian&quot;, &quot;translation&quot;, &quot;bogota&quot;, &quot;telegraphed&quot;, &quot;boyd&quot;, &quot;excellency&quot;, &quot;murderers&quot;, &quot;gunboat&quot;, &quot;panama&quot;, &quot;raiders&quot;, &quot;murderous&quot;, &quot;isthmus&quot;, &quot;noriega&quot;, &quot;discharges&quot;, &quot;noncommissioned&quot;, &quot;colombia&quot;, &quot;panamanian&quot;, &quot;shots&quot;, &quot;isthmian&quot;, &quot;regiment&quot;, &quot;november&quot;, &quot;colored&quot;, &quot;transit&quot;, &quot;shot&quot;, &quot;consul&quot;, &quot;ease&quot;, &quot;forbade&quot;, &quot;repressive&quot;, &quot;momentous&quot;, &quot;nationwide&quot;, &quot;expects&quot;, &quot;erie&quot;, &quot;emphasized&quot;, &quot;severely&quot;, &quot;yellow&quot;, &quot;grave&quot;, &quot;angola&quot;, &quot;perpetrated&quot;, &quot;concentrate&quot;, &quot;supposing&quot;, &quot;intends&quot;, &quot;ruinous&quot;, &quot;usually&quot;, &quot;responsible&quot;, &quot;submitting&quot;, &quot;disposing&quot;, &quot;supervising&quot;, &quot;marx&quot;, &quot;shirk&quot;, &quot;liberties&quot;, &quot;complaints&quot;, &quot;collectively&quot;, &quot;adventurers&quot;, &quot;severed&quot;, &quot;count&quot;, &quot;washington&quot;, &quot;mr&quot;, &quot;troops&quot;, &quot;sent&quot;, &quot;men&quot;, &quot;received&quot;, &quot;department&quot;, &quot;government&quot;, &quot;united&quot;, &quot;states&quot;, &quot;state&quot;, &quot;secretary&quot;, &quot;revolution&quot;, &quot;navy&quot;, &quot;republic&quot;, &quot;general&quot;, &quot;conventions&quot;, &quot;zealous&quot;, &quot;blockades&quot;, &quot;goes&quot;, &quot;attributable&quot;, &quot;substitute&quot;, &quot;subdued&quot;, &quot;vigilance&quot;, &quot;engaged&quot;, &quot;lively&quot;, &quot;bankrupt&quot;, &quot;metal&quot;, &quot;devolves&quot;, &quot;progressing&quot;, &quot;stood&quot;, &quot;evident&quot;, &quot;examinations&quot;, &quot;andwhereas&quot;, &quot;founded&quot;, &quot;blocked&quot;, &quot;single&quot;, &quot;approached&quot;, &quot;appealing&quot;, &quot;bargain&quot;, &quot;omitted&quot;, &quot;mature&quot;, &quot;referring&quot;, &quot;raises&quot;, &quot;overrun&quot;, &quot;minister&quot;, &quot;people&quot;, &quot;president&quot;, &quot;officers&quot;, &quot;force&quot;, &quot;gaza&quot;, &quot;lebanese&quot;, &quot;beirut&quot;, &quot;lebanon&quot;, &quot;multinational&quot;, &quot;palestinians&quot;, &quot;grenada&quot;, &quot;truck&quot;, &quot;palestinian&quot;, &quot;airport&quot;, &quot;israeli&quot;, &quot;syria&quot;, &quot;klan&quot;, &quot;atrocity&quot;, &quot;israel&quot;, &quot;legitimacy&quot;, &quot;jordan&quot;, &quot;suicide&quot;, &quot;plo&quot;, &quot;bishop&quot;, &quot;israelis&quot;, &quot;defendant&quot;, &quot;coincidence&quot;, &quot;sinai&quot;, &quot;commandant&quot;, &quot;marines&quot;, &quot;david&quot;, &quot;shultz&quot;, &quot;shuttle&quot;, &quot;camp&quot;, &quot;victims&quot;, &quot;arab&quot;, &quot;egypt&quot;, &quot;victim&quot;, &quot;middle&quot;, &quot;east&quot;, &quot;outward&quot;, &quot;naught&quot;, &quot;street&quot;, &quot;accumulating&quot;, &quot;questioning&quot;, &quot;ratify&quot;, &quot;authorizes&quot;, &quot;injury&quot;, &quot;regard&quot;, &quot;compatible&quot;, &quot;traditional&quot;, &quot;harmonize&quot;, &quot;ceased&quot;, &quot;relieved&quot;, &quot;gradually&quot;, &quot;dutch&quot;, &quot;flag&quot;, &quot;capacities&quot;, &quot;license&quot;, &quot;constituting&quot;, &quot;women&quot;, &quot;sanitation&quot;, &quot;prison&quot;, &quot;tuesday&quot;, &quot;ratifications&quot;, &quot;acted&quot;, &quot;deepest&quot;, &quot;stamped&quot;, &quot;assaults&quot;, &quot;dominate&quot;, &quot;marine&quot;, &quot;peace&quot;, &quot;region&quot;, &quot;forces&quot;, &quot;security&quot;, &quot;rights&quot;, &quot;men&quot;, &quot;ve&quot;, &quot;people&quot;, &quot;force&quot;, &quot;government&quot;, &quot;states&quot;, &quot;world&quot;, &quot;country&quot;, &quot;time&quot;, &quot;military&quot;, &quot;caught&quot;, &quot;alternate&quot;, &quot;tribute&quot;, &quot;machinery&quot;, &quot;witnessed&quot;, &quot;crippling&quot;, &quot;utilize&quot;, &quot;explorations&quot;, &quot;develops&quot;, &quot;embarrass&quot;, &quot;fame&quot;, &quot;exploitation&quot;, &quot;limits&quot;, &quot;succeeding&quot;, &quot;hungry&quot;, &quot;dictator&quot;, &quot;baghdad&quot;, &quot;vain&quot;, &quot;invaded&quot;, &quot;tied&quot;, &quot;firms&quot;, &quot;undersigned&quot;, &quot;neill&quot;, &quot;unceasing&quot;, &quot;today&quot;, &quot;defensible&quot;, &quot;granted&quot;, &quot;change&quot;, &quot;annual&quot;, &quot;launching&quot;, &quot;united&quot;, &quot;know&quot;, &quot;help&quot;, &quot;egan&quot;, &quot;lithuania&quot;, &quot;chilean&quot;, &quot;valparaiso&quot;, &quot;schley&quot;, &quot;yale&quot;, &quot;mechanism&quot;, &quot;implementing&quot;, &quot;bilateral&quot;, &quot;helsinki&quot;, &quot;gorbachev&quot;, &quot;implemented&quot;, &quot;yugoslavia&quot;, &quot;piled&quot;, &quot;unification&quot;, &quot;baltic&quot;, &quot;dialog&quot;, &quot;vanish&quot;, &quot;mechanisms&quot;, &quot;spheres&quot;, &quot;baker&quot;, &quot;integration&quot;, &quot;baltimore&quot;, &quot;defensible&quot;, &quot;stones&quot;, &quot;deterrence&quot;, &quot;israeli&quot;, &quot;sailors&quot;, &quot;substantive&quot;, &quot;resolving&quot;, &quot;noted&quot;, &quot;dynamic&quot;, &quot;obviously&quot;, &quot;process&quot;, &quot;issues&quot;, &quot;cooperation&quot;, &quot;bush&quot;, &quot;solve&quot;, &quot;embassies&quot;, &quot;zealous&quot;, &quot;averted&quot;, &quot;nicaraguan&quot;, &quot;inference&quot;, &quot;commend&quot;, &quot;constrained&quot;, &quot;isthmus&quot;, &quot;job&quot;, &quot;extensively&quot;, &quot;expeditious&quot;, &quot;leaving&quot;, &quot;assistant&quot;, &quot;wastes&quot;, &quot;starving&quot;, &quot;box&quot;, &quot;gore&quot;, &quot;grenada&quot;, &quot;inauguration&quot;, &quot;wright&quot;, &quot;hunt&quot;, &quot;adverting&quot;, &quot;annals&quot;, &quot;capital&quot;, &quot;finest&quot;, &quot;paralysis&quot;, &quot;abuse&quot;, &quot;eastern&quot;, &quot;chronic&quot;, &quot;police&quot;, &quot;talked&quot;, &quot;president&quot;, &quot;discussed&quot;, &quot;soviet&quot;, &quot;think&quot;, &quot;nuclear&quot;, &quot;europe&quot;, &quot;mr&quot;, &quot;international&quot;, &quot;important&quot;, &quot;israel&quot;, &quot;countries&quot;, &quot;time&quot;, &quot;union&quot;, &quot;ve&quot;, &quot;today&quot;, &quot;fact&quot;, &quot;economic&quot;, &quot;states&quot;, &quot;question&quot;, &quot;said&quot;, &quot;want&quot;, &quot;united&quot;, &quot;world&quot;, &quot;new&quot;, &quot;owed&quot;, &quot;kellogg&quot;, &quot;interruptions&quot;, &quot;exhibited&quot;, &quot;gas&quot;, &quot;superintendents&quot;, &quot;trespassers&quot;, &quot;sinai&quot;, &quot;outlook&quot;, &quot;says&quot;, &quot;convinced&quot;, &quot;inflict&quot;, &quot;indemnity&quot;, &quot;imagined&quot;, &quot;writes&quot;, &quot;colorado&quot;, &quot;prompted&quot;, &quot;attention&quot;, &quot;mile&quot;, &quot;tribe&quot;, &quot;virtue&quot;, &quot;relates&quot;, &quot;violence&quot;, &quot;disbursement&quot;, &quot;raise&quot;, &quot;worked&quot;, &quot;documents&quot;, &quot;settling&quot;, &quot;takes&quot;, &quot;step&quot;, &quot;great&quot;, &quot;peace&quot;, &quot;queen&quot;, &quot;justices&quot;, &quot;honolulu&quot;, &quot;neutrals&quot;, &quot;submarine&quot;, &quot;destroyer&quot;, &quot;provisional&quot;, &quot;combatants&quot;, &quot;imperial&quot;, &quot;sunk&quot;, &quot;hawaiian&quot;, &quot;german&quot;, &quot;dissenting&quot;, &quot;overt&quot;, &quot;indiscriminate&quot;, &quot;recalled&quot;, &quot;reparations&quot;, &quot;palace&quot;, &quot;submarines&quot;, &quot;annexation&quot;, &quot;packing&quot;, &quot;monarchy&quot;, &quot;raiders&quot;, &quot;stevens&quot;, &quot;expanse&quot;, &quot;carl&quot;, &quot;passenger&quot;, &quot;bench&quot;, &quot;hawaii&quot;, &quot;postponing&quot;, &quot;debtor&quot;, &quot;seventy&quot;, &quot;protest&quot;, &quot;salvador&quot;, &quot;warfare&quot;, &quot;neutral&quot;, &quot;seas&quot;, &quot;commanders&quot;, &quot;government&quot;, &quot;mandatory&quot;, &quot;abolition&quot;, &quot;performs&quot;, &quot;revival&quot;, &quot;fide&quot;, &quot;memory&quot;, &quot;american&quot;, &quot;incentive&quot;, &quot;resume&quot;, &quot;meet&quot;, &quot;restrictive&quot;, &quot;demanded&quot;, &quot;arsenals&quot;, &quot;pains&quot;, &quot;topic&quot;, &quot;renewed&quot;, &quot;beset&quot;, &quot;allies&quot;, &quot;trades&quot;, &quot;ignoring&quot;, &quot;disregarded&quot;, &quot;refrained&quot;, &quot;friction&quot;, &quot;artificial&quot;, &quot;christian&quot;, &quot;begins&quot;, &quot;intricate&quot;, &quot;innumerable&quot;, &quot;acute&quot;, &quot;clarify&quot;, &quot;attacked&quot;, &quot;ships&quot;, &quot;court&quot;, &quot;vessels&quot;, &quot;united&quot;, &quot;states&quot;, &quot;action&quot;, &quot;people&quot;, &quot;minister&quot;, &quot;committee&quot;, &quot;fact&quot;, &quot;law&quot;, &quot;congress&quot;, &quot;rights&quot;, &quot;forces&quot;, &quot;present&quot;, &quot;purpose&quot;, &quot;habitual&quot;, &quot;maintains&quot;, &quot;helped&quot;, &quot;witnesses&quot;, &quot;consulting&quot;, &quot;conceded&quot;, &quot;conceal&quot;, &quot;houses&quot;, &quot;helpless&quot;, &quot;cancer&quot;, &quot;overseas&quot;, &quot;lands&quot;, &quot;diplomatically&quot;, &quot;manpower&quot;, &quot;report&quot;, &quot;flames&quot;, &quot;accustomed&quot;, &quot;mainstream&quot;, &quot;pan&quot;, &quot;mainly&quot;, &quot;charging&quot;, &quot;exactions&quot;, &quot;safeguards&quot;, &quot;eventually&quot;, &quot;ladies&quot;, &quot;principles&quot;, &quot;unparalleled&quot;, &quot;convict&quot;, &quot;depends&quot;, &quot;internationally&quot;, &quot;war&quot;, &quot;time&quot;, &quot;policy&quot;, &quot;justice&quot;, &quot;course&quot;, &quot;commerce&quot;, &quot;rwanda&quot;, &quot;ghana&quot;, &quot;genocide&quot;, &quot;beaches&quot;, &quot;protestant&quot;, &quot;africans&quot;, &quot;kuwait&quot;, &quot;corporal&quot;, &quot;infants&quot;, &quot;handicapped&quot;, &quot;motivated&quot;, &quot;clergy&quot;, &quot;saddam&quot;, &quot;normandy&quot;, &quot;girls&quot;, &quot;parental&quot;, &quot;churches&quot;, &quot;perished&quot;, &quot;intentioned&quot;, &quot;shells&quot;, &quot;sorts&quot;, &quot;wings&quot;, &quot;observers&quot;, &quot;impulses&quot;, &quot;politician&quot;, &quot;relies&quot;, &quot;foothold&quot;, &quot;sounds&quot;, &quot;praying&quot;, &quot;hussein&quot;, &quot;church&quot;, &quot;freeze&quot;, &quot;africa&quot;, &quot;religious&quot;, &quot;god&quot;, &quot;voice&quot;, &quot;freedom&quot;, &quot;expressing&quot;, &quot;steamboats&quot;, &quot;include&quot;, &quot;cognizance&quot;, &quot;blown&quot;, &quot;subsidiary&quot;, &quot;attempt&quot;, &quot;bids&quot;, &quot;slip&quot;, &quot;packing&quot;, &quot;suppression&quot;, &quot;fled&quot;, &quot;mustered&quot;, &quot;individually&quot;, &quot;mints&quot;, &quot;imports&quot;, &quot;effectual&quot;, &quot;republics&quot;, &quot;postmasters&quot;, &quot;pupils&quot;, &quot;fatal&quot;, &quot;lebanese&quot;, &quot;viet&quot;, &quot;tides&quot;, &quot;lease&quot;, &quot;coal&quot;, &quot;seven&quot;, &quot;ve&quot;, &quot;portions&quot;, &quot;pescadores&quot;, &quot;abortion&quot;, &quot;liberty&quot;, &quot;america&quot;, &quot;democracy&quot;, &quot;life&quot;, &quot;human&quot;, &quot;world&quot;, &quot;law&quot;, &quot;day&quot;, &quot;moral&quot;, &quot;rule&quot;, &quot;justice&quot;, &quot;nation&quot;, &quot;free&quot;, &quot;today&quot;, &quot;time&quot;, &quot;know&quot;, &quot;man&quot;, &quot;rights&quot;, &quot;americans&quot;, &quot;nations&quot;, &quot;people&quot;, &quot;command&quot;, &quot;credentials&quot;, &quot;technology&quot;, &quot;appliances&quot;, &quot;chain&quot;, &quot;sympathetic&quot;, &quot;conformity&quot;, &quot;airport&quot;, &quot;parallel&quot;, &quot;arranging&quot;, &quot;overestimated&quot;, &quot;collisions&quot;, &quot;shippers&quot;, &quot;merits&quot;, &quot;resorting&quot;, &quot;campaigns&quot;, &quot;liabilities&quot;, &quot;clayton&quot;, &quot;inescapable&quot;, &quot;leagues&quot;, &quot;sectional&quot;, &quot;frustrations&quot;, &quot;nancy&quot;, &quot;integrity&quot;, &quot;powerful&quot;, &quot;chamber&quot;, &quot;avoiding&quot;, &quot;strongly&quot;, &quot;applause&quot;, &quot;political&quot;, &quot;said&quot;, &quot;states&quot;, &quot;government&quot;, &quot;united&quot;, &quot;vance&quot;, &quot;detroit&quot;, &quot;michigan&quot;, &quot;provisionally&quot;, &quot;ravaged&quot;, &quot;pillage&quot;, &quot;wire&quot;, &quot;shocked&quot;, &quot;airlift&quot;, &quot;mayor&quot;, &quot;slogan&quot;, &quot;deplore&quot;, &quot;condemn&quot;, &quot;repairing&quot;, &quot;banner&quot;, &quot;deaths&quot;, &quot;lawlessness&quot;, &quot;tolerated&quot;, &quot;augment&quot;, &quot;riots&quot;, &quot;undisputed&quot;, &quot;initiate&quot;, &quot;continual&quot;, &quot;advised&quot;, &quot;deployment&quot;, &quot;clark&quot;, &quot;pursuant&quot;, &quot;mcnamara&quot;, &quot;intervening&quot;, &quot;scheduled&quot;, &quot;unanimous&quot;, &quot;governor&quot;, &quot;disorder&quot;, &quot;troops&quot;, &quot;seen&quot;, &quot;talking&quot;, &quot;exceptional&quot;, &quot;wondering&quot;, &quot;jeopardize&quot;, &quot;solution&quot;, &quot;precedent&quot;, &quot;juries&quot;, &quot;minor&quot;, &quot;trader&quot;, &quot;manchuria&quot;, &quot;reverence&quot;, &quot;attempted&quot;, &quot;cutting&quot;, &quot;transfers&quot;, &quot;examined&quot;, &quot;farther&quot;, &quot;courageously&quot;, &quot;affirmative&quot;, &quot;comprehend&quot;, &quot;basin&quot;, &quot;implementing&quot;, &quot;shek&quot;, &quot;silver&quot;, &quot;repeat&quot;, &quot;installation&quot;, &quot;hampshire&quot;, &quot;speech&quot;, &quot;greater&quot;, &quot;reasonably&quot;, &quot;morning&quot;, &quot;officials&quot;, &quot;base&quot;, &quot;situation&quot;, &quot;federal&quot;, &quot;local&quot;, &quot;damage&quot;, &quot;hours&quot;, &quot;approximately&quot;, &quot;general&quot;, &quot;order&quot;, &quot;mr&quot;, &quot;people&quot;, &quot;air&quot;, &quot;immediately&quot;, &quot;states&quot;, &quot;state&quot;, &quot;law&quot;, &quot;american&quot;, &quot;congress&quot;, &quot;country&quot;, &quot;government&quot;, &quot;secretary&quot;, &quot;president&quot;, &quot;prestige&quot;, &quot;producing&quot;, &quot;commodities&quot;, &quot;remedy&quot;, &quot;futile&quot;, &quot;forthwith&quot;, &quot;paperwork&quot;, &quot;invoke&quot;, &quot;termination&quot;, &quot;debtor&quot;, &quot;inherit&quot;, &quot;west&quot;, &quot;disadvantages&quot;, &quot;needed&quot;, &quot;obscure&quot;, &quot;introduce&quot;, &quot;disaster&quot;, &quot;arising&quot;, &quot;fortifications&quot;, &quot;declined&quot;, &quot;deficiencies&quot;, &quot;unfortunate&quot;, &quot;salvation&quot;, &quot;animosities&quot;, &quot;student&quot;, &quot;outlined&quot;, &quot;tranquil&quot;, &quot;brought&quot;, &quot;repaired&quot;, &quot;jungle&quot;, &quot;time&quot;, &quot;national&quot;, &quot;public&quot;, &quot;united&quot;, &quot;force&quot;], &quot;loglift&quot;: [30.0, 29.0, 28.0, 27.0, 26.0, 25.0, 24.0, 23.0, 22.0, 21.0, 20.0, 19.0, 18.0, 17.0, 16.0, 15.0, 14.0, 13.0, 12.0, 11.0, 10.0, 9.0, 8.0, 7.0, 6.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.6017999999999999, 1.5987, 1.5954999999999999, 1.5935999999999999, 1.5935999999999999, 1.5933999999999999, 1.5922000000000001, 1.5907, 1.5906, 1.5893999999999999, 1.5883, 1.5855999999999999, 1.585, 1.5751999999999999, 1.5741000000000001, 1.573, 1.5729, 1.5683, 1.5682, 1.5659000000000001, 1.5628, 1.5604, 1.5597000000000001, 1.5592999999999999, 1.5591999999999999, 1.556, 1.5327, 1.5287999999999999, 1.5273000000000001, 1.5237000000000001, 1.5096000000000001, 1.5018, 1.4966999999999999, 1.5108999999999999, 1.3849, 1.4282999999999999, 1.3926000000000001, 1.3785000000000001, 1.3953, 1.3828, 1.474, 1.4091, 1.2211000000000001, 1.2311000000000001, 1.2076, 1.4469000000000001, 1.1274, 1.1677999999999999, 1.1160000000000001, 1.3688, 1.2109000000000001, 1.0302, 1.0311999999999999, 0.89570000000000005, 1.0911999999999999, 0.94350000000000001, 0.83279999999999998, 0.39929999999999999, 0.99360000000000004, 0.72999999999999998, 0.98060000000000003, 0.31459999999999999, 0.38900000000000001, 0.48280000000000001, 0.6321, 0.77739999999999998, 0.66379999999999995, 0.80610000000000004, 0.63060000000000005, 0.2089, 0.48139999999999999, 0.69530000000000003, 0.66810000000000003, 0.29160000000000003, 0.4214, 0.32700000000000001, -1.1555, 0.49159999999999998, 0.060999999999999999, 1.2729999999999999, 0.86229999999999996, -1.2564, 0.42220000000000002, 0.024899999999999999, 0.0263, -3.7492000000000001, -0.1726, -3.3228, 0.88449999999999995, 0.37069999999999997, -1.2578, -4.3346, -0.037199999999999997, 0.21709999999999999, -1.0769, 0.85099999999999998, -3.7317, 0.7167, 0.16470000000000001, -1.9104000000000001, 0.80800000000000005, -0.23330000000000001, -0.20349999999999999, -1.4622999999999999, -0.80769999999999997, -0.13009999999999999, 0.54590000000000005, 0.0038999999999999998, 0.30399999999999999, 0.39829999999999999, 0.33079999999999998, -0.0099000000000000008, -0.10970000000000001, 0.023300000000000001, 0.0023999999999999998, -0.48930000000000001, -0.30249999999999999, 0.2616, -0.37530000000000002, -3.2770999999999999, -0.058700000000000002, -0.4289, -0.84489999999999998, -4.4181999999999997, 1.1092, 0.3619, -2.7848000000000002, 1.1140000000000001, -2.9337, -0.66010000000000002, 0.64500000000000002, 0.23100000000000001, 0.65180000000000005, 0.92710000000000004, 0.38650000000000001, 0.23350000000000001, -0.71860000000000002, 0.40350000000000003, -4.4329999999999998, 0.90190000000000003, -0.66100000000000003, 0.75560000000000005, 0.074200000000000002, 0.080699999999999994, -2.9119000000000002, -1.3328, 0.77259999999999995, -0.88700000000000001, -0.41370000000000001, 1.8613, 1.8613, 1.8593999999999999, 1.8593999999999999, 1.8301000000000001, 1.8112999999999999, 1.8096000000000001, 1.8055000000000001, 1.8048999999999999, 1.8035000000000001, 1.7995000000000001, 1.7964, 1.7938000000000001, 1.7903, 1.7861, 1.7842, 1.7794000000000001, 1.7777000000000001, 1.7649999999999999, 1.7628999999999999, 1.7555000000000001, 1.7482, 1.7385999999999999, 1.7381, 1.7363999999999999, 1.7347999999999999, 1.7334000000000001, 1.7305999999999999, 1.7263999999999999, 1.7148000000000001, 1.7087000000000001, 1.6658999999999999, 1.6820999999999999, 1.4756, 1.6973, 1.4729000000000001, 1.4081999999999999, 1.5334000000000001, 1.3992, 1.5226999999999999, 1.5456000000000001, 1.4948999999999999, 1.3927, 1.3982000000000001, 1.3089, 1.4681, 1.4587000000000001, 1.5346, 1.1859999999999999, 1.5099, 1.4764999999999999, 1.3595999999999999, 1.0765, 1.4584999999999999, 1.1367, 1.2090000000000001, 1.2141999999999999, 0.96540000000000004, 1.1511, 1.1039000000000001, 0.68610000000000004, 0.9546, 0.86260000000000003, 0.92689999999999995, 0.44059999999999999, 1.0568, 0.75249999999999995, 0.36759999999999998, 0.6694, 0.9073, 0.185, 0.58099999999999996, 1.0236000000000001, 0.77229999999999999, 0.2283, 0.2334, -4.2154999999999996, 1.2441, -4.7544000000000004, -3.2505999999999999, 0.66759999999999997, -2.6503000000000001, 0.050299999999999997, -1.635, -0.082699999999999996, 0.47260000000000002, -3.9983, -3.7746, 0.66739999999999999, -0.48249999999999998, 0.2238, -0.75070000000000003, -3.4089, 0.14249999999999999, -3.3921000000000001, 0.2601, -2.3658000000000001, -3.1730999999999998, 1.4890000000000001, -3.9573999999999998, -3.7130999999999998, -4.6211000000000002, 0.27600000000000002, -4.3905000000000003, -0.51790000000000003, 0.25069999999999998, 0.2576, 0.67930000000000001, 0.30570000000000003, 0.2298, 0.33189999999999997, 0.47170000000000001, 0.56100000000000005, 0.41999999999999998, -0.104, 0.79420000000000002, 0.1676, -0.055399999999999998, 0.64000000000000001, -0.16220000000000001, 0.15590000000000001, -0.78610000000000002, -0.038100000000000002, 0.34189999999999998, -3.2589999999999999, -0.4677, -4.633, -0.70820000000000005, -4.3554000000000004, -0.64649999999999996, -3.7391999999999999, -2.1244000000000001, 0.1431, -2.8645, 0.64639999999999997, 0.77590000000000003, 0.32029999999999997, 0.34499999999999997, 0.37490000000000001, -5.7091000000000003, -4.0538999999999996, -4.2624000000000004, 0.53520000000000001, -5.0842000000000001, -3.4363999999999999, -3.6284000000000001, -3.5127000000000002, -0.060400000000000002, -3.0122, 1.4915, -2.0474000000000001, -0.41349999999999998, -0.2969, -0.188, 1.7763, 1.7745, 1.7745, 1.7744, 1.7744, 1.7743, 1.7743, 1.7742, 1.7741, 1.7739, 1.7739, 1.7739, 1.7738, 1.7738, 1.7734000000000001, 1.7734000000000001, 1.7734000000000001, 1.7733000000000001, 1.7732000000000001, 1.7730999999999999, 1.7729999999999999, 1.7728999999999999, 1.7726999999999999, 1.7726, 1.7726, 1.7725, 1.7725, 1.7724, 1.7723, 1.7723, 1.7713000000000001, 1.7688999999999999, 1.7709999999999999, 1.7704, 1.7689999999999999, 1.7715000000000001, 1.7682, 1.7556, 1.7718, 1.7708999999999999, 1.7722, 1.7684, 1.7703, 1.7719, 1.7721, 1.772, 1.7713000000000001, 1.7721, 1.7708999999999999, 1.7706, 1.7698, 1.7479, 1.7487999999999999, 1.7416, 1.6928000000000001, 1.7161999999999999, 1.7430000000000001, 1.7363, 1.7508999999999999, 1.6906000000000001, 1.6366000000000001, 1.6268, 1.5582, 1.659, 1.6882999999999999, 1.5862000000000001, 1.6332, 1.607, 1.619, 1.6788000000000001, 1.6206, 1.542, 1.4286000000000001, 1.4414, 1.4505999999999999, 1.5035000000000001, 1.4634, 1.3676999999999999, 1.1968000000000001, 1.5847, 1.2785, 1.4311, 1.3599000000000001, 1.3794, 1.4076, 1.2151000000000001, 1.1877, 1.1282000000000001, 1.0461, 1.3084, 0.59450000000000003, 1.0616000000000001, 0.81030000000000002, 1.3509, 1.3927, 1.1560999999999999, 1.1544000000000001, 0.6411, -0.78739999999999999, -4.6121999999999996, -0.48499999999999999, -0.39400000000000002, -3.9550999999999998, -3.5106000000000002, -4.3735999999999997, -3.3715999999999999, -0.48509999999999998, -0.1242, -3.8578000000000001, -5.0780000000000003, -0.063799999999999996, -2.0175000000000001, -1.5115000000000001, -4.3349000000000002, 1.0058, 0.82689999999999997, -0.83789999999999998, 0.0066, -1.2027000000000001, -3.3460000000000001, -1.2452000000000001, 0.2036, -2.2391999999999999, -3.1404000000000001, 0.79849999999999999, -0.57969999999999999, 1.0508, -3.1831, 0.74470000000000003, 0.51300000000000001, 0.44490000000000002, 0.41739999999999999, 0.27639999999999998, 0.86639999999999995, 0.46539999999999998, 0.25609999999999999, 0.96030000000000004, 0.86050000000000004, -0.38290000000000002, -0.0109, -0.12540000000000001, 0.47020000000000001, 0.71319999999999995, 0.6431, -0.3407, 0.44990000000000002, -0.31340000000000001, 0.59409999999999996, -0.062, 0.72430000000000005, -2.1278000000000001, -3.2804000000000002, -0.94640000000000002, 1.2592000000000001, -3.6183000000000001, -0.15920000000000001, -0.44140000000000001, 1.7722, 1.2179, -0.63280000000000003, -0.00029999999999999997, 0.79369999999999996, -2.6476999999999999, -1.3238000000000001, 0.30780000000000002, 0.74909999999999999, -2.3725000000000001, -2.4420000000000002, -0.5524, 1.6400999999999999, -4.7587999999999999, -0.055800000000000002, -1.5657000000000001, -1.4719, -0.27810000000000001, 0.3468, 2.4661, 2.4653, 2.4634, 2.4601000000000002, 2.4527999999999999, 2.4161999999999999, 2.4102999999999999, 2.3858000000000001, 2.3607999999999998, 2.3273000000000001, 2.3149999999999999, 2.2858000000000001, 2.2707999999999999, 2.2275, 2.1901000000000002, 2.1701999999999999, 2.1646000000000001, 2.1646000000000001, 2.1505000000000001, 2.1493000000000002, 2.1467000000000001, 2.1457999999999999, 2.141, 2.1334, 2.1318999999999999, 2.1269999999999998, 2.1238000000000001, 2.1234000000000002, 2.1198000000000001, 2.1152000000000002, 2.0752999999999999, 2.0796999999999999, 2.1063000000000001, 2.0387, 1.9882, 1.9316, 1.6465000000000001, 1.8451, 1.7196, 2.024, 1.7922, 1.5955999999999999, 1.6725000000000001, 1.3894, 1.1651, 1.5209999999999999, 1.0202, 0.85489999999999999, 1.4978, 0.80800000000000005, 1.0466, 0.8115, 0.69340000000000002, 1.6226, 0.76380000000000003, 0.61750000000000005, 0.33850000000000002, 0.78410000000000002, 0.57010000000000005, 1.2999000000000001, 1.4198999999999999, 0.96360000000000001, 0.88080000000000003, 1.0148999999999999, 1.0145, -0.54290000000000005, -0.3952, 0.217, 0.1079, 0.41789999999999999, -1.9322999999999999, 0.28599999999999998, -3.4921000000000002, -1.0529999999999999, -3.0556000000000001, 0.45540000000000003, -0.4073, -1.4331, 0.77829999999999999, -0.84850000000000003, -0.78039999999999998, -0.86299999999999999, 1.4913000000000001, -0.30520000000000003, -0.39250000000000002, -1.5152000000000001, -2.8460000000000001, 0.68020000000000003, 0.061100000000000002, -1.9302999999999999, -0.46189999999999998, -0.87970000000000004, -0.76700000000000002, 1.0106999999999999, 0.9718, 0.75860000000000005, 0.058999999999999997, 0.31230000000000002, 0.91720000000000002, 0.92390000000000005, 0.10199999999999999, 0.67159999999999997, 0.29499999999999998, 0.27960000000000002, -0.0045999999999999999, 0.4506, 0.47520000000000001, -0.74180000000000001, -0.27510000000000001, 0.050099999999999999, 0.23780000000000001, 0.42280000000000001, -3.363, -3.7595999999999998, 1.4229000000000001, -1.466, -3.0972, -0.62190000000000001, 0.87690000000000001, 1.0903, 0.26490000000000002, 0.25929999999999997, -0.15909999999999999, -0.060299999999999999, -2.8119999999999998, 1.2056, -1.3628, 0.88900000000000001, 1.5960000000000001, 0.038899999999999997, 1.0620000000000001, -1.4321999999999999, 1.3321000000000001, 0.20430000000000001, -0.77270000000000005, -0.25690000000000002, -3.7244000000000002, 1.2586999999999999, 0.59019999999999995, 0.12609999999999999, -0.28420000000000001, 2.7751999999999999, 2.7401, 2.6957, 2.6918000000000002, 2.6631999999999998, 2.6562000000000001, 2.6393, 2.6153, 2.5954000000000002, 2.5813000000000001, 2.5545, 2.5457000000000001, 2.5204, 2.4956, 2.4853000000000001, 2.4708000000000001, 2.4598, 2.4582000000000002, 2.4558, 2.4548000000000001, 2.4523000000000001, 2.4285000000000001, 2.4104999999999999, 2.3795999999999999, 2.3740000000000001, 2.3734999999999999, 2.3725999999999998, 2.3551000000000002, 2.3422000000000001, 2.3277000000000001, 2.3129, 2.2789000000000001, 2.1385999999999998, 2.2884000000000002, 2.1545999999999998, 2.0907, 2.2290000000000001, 2.0657999999999999, 2.0354000000000001, 1.9031, 2.1187, 1.8794999999999999, 1.849, 2.0928, 1.8017000000000001, 2.0276999999999998, 1.8036000000000001, 1.6792, 1.8282, 2.0394000000000001, 1.3268, 1.4012, 1.6668000000000001, 1.7706999999999999, 2.0019999999999998, 1.8781000000000001, 1.2062999999999999, 1.278, 1.6904999999999999, 1.7931999999999999, -2.7105999999999999, -2.4582999999999999, 1.22, -2.7012999999999998, 0.039100000000000003, -2.6947000000000001, -2.4826000000000001, 0.2298, -3.2029999999999998, 0.3831, -3.3041, -2.6448999999999998, -1.6028, -2.3454999999999999, -2.6554000000000002, -0.3533, -2.7018, -0.78000000000000003, 0.64859999999999995, 0.86350000000000005, -2.8599999999999999, -3.1097000000000001, -3.2334000000000001, -3.3172999999999999, 0.094299999999999995, 0.17599999999999999, -0.62680000000000002, -1.9807999999999999, 0.53480000000000005, 0.32540000000000002, 1.4539, 1.4464999999999999, 0.24049999999999999, 0.79149999999999998, 0.75919999999999999, 0.25409999999999999, 0.91249999999999998, 0.39629999999999999, 1.3311999999999999, 1.3331999999999999, 0.34100000000000003, 1.1376999999999999, 0.1163, -0.24010000000000001, 0.87429999999999997, 1.03, 0.40139999999999998, -0.065299999999999997, -0.0155, -0.13070000000000001, -0.0688, 0.63219999999999998, 0.028299999999999999, -0.89749999999999996, -0.25740000000000002, 0.76649999999999996, -2.4502000000000002, -3.1111, 0.14580000000000001, -3.2961999999999998, 0.085800000000000001, -2.5141, -3.1842000000000001, -2.8784999999999998, 0.1434, -0.58530000000000004, 2.0857999999999999, 1.4701, -0.47589999999999999, -2.4500999999999999, 1.2226999999999999, -0.41589999999999999, -3.0817999999999999, -0.38469999999999999, -0.13159999999999999, 0.40050000000000002, 0.19259999999999999, -2.6349, 1.2161999999999999, -0.27229999999999999, -0.57050000000000001, 1.72, -2.2881, 0.18990000000000001, -0.22109999999999999, 1.857, 0.37619999999999998, 2.8389000000000002, 2.8315999999999999, 2.7797999999999998, 2.7768999999999999, 2.7503000000000002, 2.7446000000000002, 2.7075, 2.6957, 2.6947000000000001, 2.6812999999999998, 2.6539000000000001, 2.6185999999999998, 2.6110000000000002, 2.6046999999999998, 2.6025999999999998, 2.5527000000000002, 2.5495000000000001, 2.5432000000000001, 2.5223, 2.5177, 2.5160999999999998, 2.5112999999999999, 2.5101, 2.5053000000000001, 2.5013999999999998, 2.4977999999999998, 2.4973999999999998, 2.4925999999999999, 2.4830999999999999, 2.4765000000000001, 2.4750000000000001, 2.4186000000000001, 2.4436, 2.3079999999999998, 2.4542000000000002, 2.4125000000000001, 2.3207, 2.3422999999999998, 2.2624, 2.3292000000000002, 2.0893000000000002, 2.1646000000000001, 2.3578000000000001, 2.2202999999999999, 1.9009, 2.0434999999999999, 2.3227000000000002, 1.5247999999999999, 1.3692, 1.6620999999999999, 1.8307, 1.8231999999999999, 1.3351999999999999, 1.0628, 1.4571000000000001, 1.6830000000000001, 1.5739000000000001, -0.0047999999999999996, -0.1605, -2.8279000000000001, 0.70860000000000001, 1.5299, -3.1903000000000001, -3.1631999999999998, -3.1581999999999999, -2.1608999999999998, 0.53000000000000003, -2.8803000000000001, 0.093100000000000002, -0.18129999999999999, -2.6019999999999999, -0.9607, -2.9394, -0.99609999999999999, -2.6861999999999999, -1.4994000000000001, -2.8039999999999998, -0.96640000000000004, -0.6492, -0.2225, -0.61970000000000003, -2.8921000000000001, -1.635, 0.31969999999999998, -0.83179999999999998, -1.466, 0.104, 1.0570999999999999, 1.1585000000000001, 0.50629999999999997, 1.1557999999999999, 0.69769999999999999, 0.95109999999999995, 0.98839999999999995, 1.3409, 1.0407, -0.096100000000000005, 0.312, 1.0241, -0.21049999999999999, 0.37669999999999998, 0.2838, 0.76919999999999999, 1.1126, 0.69720000000000004, 0.016400000000000001, -0.1052, 0.191, -0.98919999999999997, -0.4824, -2.5680000000000001, -2.4849999999999999, -2.9308000000000001, -2.6585000000000001, -2.5960999999999999, 1.1005, -2.9388000000000001, -2.9918999999999998, -0.32700000000000001, 0.5837, -0.46850000000000003, -2.6492, -2.5446, -1.0370999999999999, -2.5293999999999999, 0.107, -2.7597999999999998, -0.057200000000000001, 0.65439999999999998, 0.36059999999999998, -2.9807999999999999, 0.1134, -0.75780000000000003, -3.1979000000000002, -1.6243000000000001, 0.77229999999999999, 0.32800000000000001, -0.39279999999999998, 2.9449999999999998, 2.927, 2.9026000000000001, 2.9020000000000001, 2.8224999999999998, 2.8056000000000001, 2.7921, 2.7866, 2.7827000000000002, 2.7740999999999998, 2.7707000000000002, 2.7395, 2.7143000000000002, 2.6774, 2.6615000000000002, 2.6541999999999999, 2.6476000000000002, 2.6459000000000001, 2.6457999999999999, 2.5870000000000002, 2.5823999999999998, 2.5783, 2.5766, 2.5590999999999999, 2.5522, 2.5495000000000001, 2.5449000000000002, 2.5432000000000001, 2.5278999999999998, 2.5219999999999998, 2.4826000000000001, 2.3778999999999999, 2.4272999999999998, 2.3628, 2.3603999999999998, 2.2244000000000002, 1.9862, 2.1179999999999999, 2.2237, 2.141, 1.8355999999999999, 1.4478, 1.5692999999999999, 1.1411, 1.9919, 2.0577999999999999, 1.3297000000000001, 1.3319000000000001, 0.97319999999999995, 1.2371000000000001, 1.8273999999999999, -1.9271, -2.4319999999999999, -4.3177000000000003, 1.8019000000000001, 0.42199999999999999, 0.97640000000000005, 0.73419999999999996, 1.0772999999999999, -3.6846000000000001, -3.8365999999999998, -2.7959000000000001, -2.8972000000000002, -2.5619000000000001, -2.4398, -0.45800000000000002, -2.1076999999999999, 0.64980000000000004, -2.8246000000000002, -3.4043000000000001, -0.59179999999999999, 0.55559999999999998, -2.3487, -0.48970000000000002, -2.1657999999999999, 1.6003000000000001, -2.4683999999999999, 1.2004999999999999, -3.4497, -3.0331000000000001, 1.3776999999999999, 1.8394999999999999, 0.85219999999999996, 1.8674999999999999, 1.4765999999999999, 0.9456, 1.0283, 1.1527000000000001, 1.4756, 0.26740000000000003, 1.0864, 0.79459999999999997, 0.97850000000000004, -0.1676, 1.0639000000000001, 0.30509999999999998, 0.59799999999999998, 0.51300000000000001, 0.63839999999999997, 0.8357, 0.2422, -0.1925, -0.114, -0.0061999999999999998, 0.34839999999999999, -0.5917, -0.76429999999999998, 0.12790000000000001, -0.2046, 0.19159999999999999, 0.20899999999999999, -1.9265000000000001, 0.84609999999999996, -0.33460000000000001, -2.4339, -2.8178999999999998, -2.9777, -3.2286999999999999, -0.54869999999999997, -2.3902000000000001, -3.2604000000000002, -3.1678999999999999, 0.17199999999999999, -4.1351000000000004, -2.5585, 0.29070000000000001, -2.4468000000000001, 0.42609999999999998, -1.9166000000000001, -2.6575000000000002, 1.1901999999999999, -1.8229, -2.8372999999999999, 0.5, -0.15140000000000001, -1.4964999999999999, 0.71589999999999998, 1.2195, -0.57850000000000001, -0.874, 2.9552999999999998, 2.9510000000000001, 2.9487000000000001, 2.9443999999999999, 2.9306999999999999, 2.9211, 2.9030999999999998, 2.8671000000000002, 2.8498000000000001, 2.8353999999999999, 2.8309000000000002, 2.8309000000000002, 2.7999000000000001, 2.7888000000000002, 2.774, 2.7707000000000002, 2.7702, 2.7652000000000001, 2.7593999999999999, 2.7454000000000001, 2.7347999999999999, 2.7307000000000001, 2.6930000000000001, 2.6871999999999998, 2.6816, 2.6457999999999999, 2.6307, 2.6248, 2.6200999999999999, 2.6084000000000001, 2.5686, 2.5169999999999999, 2.4529000000000001, 2.4312999999999998, 2.2835000000000001, 2.4929000000000001, 1.8775999999999999, 2.3654000000000002, 1.8247, 1.7057, 1.9528000000000001, 2.2753000000000001, 2.2219000000000002, 2.2694999999999999, 1.2297, 1.8362000000000001, 1.9496, 1.1293, 1.831, 2.1244000000000001, 1.5940000000000001, 0.57410000000000005, -2.4106999999999998, 1.3965000000000001, 1.4625999999999999, 0.5302, -1.0138, -2.6135000000000002, -2.1124999999999998, -2.7307000000000001, -0.40689999999999998, 0.52329999999999999, -0.69430000000000003, -3.1541000000000001, -1.125, 2.0139999999999998, -0.2873, -2.4338000000000002, -0.6341, 0.55879999999999996, 0.48649999999999999, 0.44629999999999997, -2.1949000000000001, -3.0564, -1.8622000000000001, 1.3952, -1.8245, -3.2624, 1.5719000000000001, -2.0653000000000001, 0.8296, 1.3932, 1.778, 1.1833, 0.98699999999999999, 0.50370000000000004, 1.0632999999999999, 1.6664000000000001, 0.61119999999999997, 1.0314000000000001, 1.0344, 0.94589999999999996, 1.0907, 0.56740000000000002, 0.308, 0.023300000000000001, 0.44269999999999998, 0.19370000000000001, 0.42730000000000001, -0.53639999999999999, 0.51500000000000001, -0.2026, -0.69879999999999998, 0.12180000000000001, 0.62109999999999999, 1.2303999999999999, -2.4178000000000002, -3.5045000000000002, -0.18770000000000001, -2.3801999999999999, -1.4329000000000001, -0.20300000000000001, -2.5611000000000002, -1.4883, -3.0085999999999999, -2.3662999999999998, -0.26090000000000002, -2.5283000000000002, 1.9001999999999999, 1.1617999999999999, -2.544, -0.95820000000000005, -2.7517, -0.47670000000000001, -2.7397999999999998, -2.1968999999999999, 0.3654, -2.3900999999999999, -2.9695999999999998, -0.74829999999999997, -2.4074, -0.95540000000000003, -2.3932000000000002, -0.16919999999999999, -0.28599999999999998, 3.0922000000000001, 3.0905999999999998, 3.0869, 3.0865999999999998, 3.0830000000000002, 3.0827, 3.0813999999999999, 3.0800999999999998, 3.0788000000000002, 3.0781000000000001, 3.0682999999999998, 3.0668000000000002, 3.0516999999999999, 3.0335000000000001, 2.9782999999999999, 2.9762, 2.9569000000000001, 2.9436, 2.9217, 2.9108999999999998, 2.9096000000000002, 2.8843000000000001, 2.8748999999999998, 2.8744999999999998, 2.8645, 2.8552, 2.8294000000000001, 2.802, 2.7999999999999998, 2.7797999999999998, 2.7294999999999998, 2.6722000000000001, 2.7305999999999999, 2.5276999999999998, 2.4323000000000001, 2.2382, 2.0682999999999998, 2.5933999999999999, 2.4750000000000001, 1.8706, 2.6631999999999998, 2.0632999999999999, 1.9798, 1.9254, 1.9516, 1.3376999999999999, 1.3415999999999999, 0.80569999999999997, -2.806, -2.6333000000000002, -1.7964, -3.2650000000000001, -0.40229999999999999, -3.9832000000000001, -0.26300000000000001, -1.0055000000000001, -0.12740000000000001, 0.079299999999999995, -0.35649999999999998, 1.4716, -3.5695000000000001, -0.67710000000000004, -2.3325, -2.2734000000000001, -0.64639999999999997, -3.8090999999999999, -2.6730999999999998, -2.5045999999999999, -2.1888000000000001, 1.4306000000000001, 0.037699999999999997, -2.2244999999999999, -1.5411999999999999, -2.6366999999999998, -1.2116, -2.9725000000000001, 1.4301999999999999, 2.2239, 2.2542, 1.1039000000000001, 1.9132, 1.5609, 1.0306, 1.05, 0.73480000000000001, 0.1623, 1.2758, 0.38390000000000002, 1.099, 1.2525999999999999, 1.0634999999999999, -0.1172, 0.041300000000000003, -0.442, -0.79500000000000004, -0.42109999999999997, 0.57110000000000005, -0.49390000000000001, -2.2528999999999999, -3.3441999999999998, -2.8988999999999998, -2.8683999999999998, -2.6806999999999999, -2.7058, 1.0154000000000001, -3.2435, -2.2147999999999999, -3.6829999999999998, -2.8113999999999999, -2.7875000000000001, -3.5015999999999998, -2.8601000000000001, 0.2636, 1.8808, -0.85089999999999999, -0.84279999999999999, -2.2166999999999999, -3.5596000000000001, -2.2925, -3.2599, -2.8490000000000002, -2.4275000000000002, -3.2892999999999999, -3.6301999999999999, -2.3757000000000001, 1.1911, 0.3866, 0.49630000000000002, -0.19769999999999999, 3.4319999999999999, 3.4287999999999998, 3.3999000000000001, 3.3961999999999999, 3.3367, 3.3355000000000001, 3.3100000000000001, 3.2599999999999998, 3.2502, 3.2395999999999998, 3.2242000000000002, 3.1705000000000001, 3.1676000000000002, 3.1360000000000001, 3.1211000000000002, 3.1120000000000001, 3.1051000000000002, 3.077, 3.0726, 3.0687000000000002, 3.0674999999999999, 3.0270000000000001, 2.9870999999999999, 2.9857, 2.9752000000000001, 2.9716999999999998, 2.9478, 2.9300999999999999, 2.9190999999999998, 2.9089, 2.8220000000000001, 2.7966000000000002, 2.7747000000000002, 2.7437999999999998, 2.7239, 2.6269999999999998, 2.7136, 1.9273, 1.9060999999999999, 2.4516, 1.8453999999999999, 2.5447000000000002, -2.2290000000000001, -2.4329999999999998, 2.1326000000000001, 1.9299999999999999, -1.8866000000000001, -2.004, -1.4771000000000001, -2.8094999999999999, -2.1101000000000001, 0.34660000000000002, -2.7309999999999999, -2.6684000000000001, -1.7925, 1.0224, -2.1150000000000002, 0.72799999999999998, -2.3466999999999998, -2.0350000000000001, -2.2972000000000001, -2.6156000000000001, -3.2635000000000001, -3.1004, 0.15359999999999999, -1.9755, -2.1480000000000001, -1.9883999999999999, -1.8633, -2.6551999999999998, -2.3424, -3.2069000000000001, 1.6266, 1.4415, 1.0526, 1.9677, 1.6512, 2.0857999999999999, 1.1126, 1.4186000000000001, 1.1273, 0.39950000000000002, 0.17050000000000001, 1.2228000000000001, 0.098199999999999996, 0.6502, 0.82110000000000005, 0.6704, 0.023099999999999999, 0.1026, 0.105, 0.088499999999999995, 0.24579999999999999, 0.71209999999999996, -0.17299999999999999, -3.2362000000000002, 0.1651, -3.1374, -2.3519000000000001, -3.9283999999999999, -2.7189000000000001, 0.31690000000000002, -2.2862, -2.4125000000000001, -0.0263, -0.87060000000000004, -3.0274999999999999, 0.49890000000000001, -2.2305000000000001, -0.80100000000000005, -2.7332000000000001, -3.3144999999999998, -1.7994000000000001, -2.0545, 0.64410000000000001, -0.3105, -2.5297999999999998, 0.24579999999999999, -2.6162999999999998, -1.1848000000000001, -1.0088999999999999, 0.3725, 0.44390000000000002, 1.5329999999999999, 3.5741000000000001, 3.5647000000000002, 3.5131000000000001, 3.4121000000000001, 3.2984, 3.2664, 3.1787000000000001, 3.0809000000000002, 3.0638000000000001, 2.9634999999999998, 2.9613, 2.9554999999999998, 2.9174000000000002, 2.8889, 2.8584999999999998, 2.8552, 2.8523000000000001, 2.847, 2.8384999999999998, 2.8178999999999998, 2.8096999999999999, 2.8035999999999999, 2.7833000000000001, 2.7770000000000001, 2.7645, 2.7618999999999998, 2.7536999999999998, 2.7515000000000001, 2.7475000000000001, 2.7212999999999998, 2.7210999999999999, 2.6919, 2.6659999999999999, 2.6231, 2.4988999999999999, 2.6173000000000002, 2.2808999999999999, 2.5447000000000002, 2.6486000000000001, 2.6333000000000002, 2.3553999999999999, 2.2284000000000002, 2.1943000000000001, 2.0682999999999998, 2.3837999999999999, 2.0104000000000002, 2.1964999999999999, 2.0190000000000001, 2.2296999999999998, 1.9080999999999999, 1.597, 1.2978000000000001, 1.8937999999999999, -2.8915999999999999, -0.0166, -2.8338999999999999, -2.2993000000000001, -2.9167000000000001, -2.9270999999999998, -2.5941000000000001, -3.1469999999999998, -2.4308999999999998, -2.2972000000000001, -2.2153, 0.96230000000000004, -3.6375999999999999, -2.8654000000000002, -2.0325000000000002, -0.59499999999999997, -1.8476999999999999, -2.0550000000000002, -2.2919999999999998, -1.8966000000000001, 0.75749999999999995, -2.6516999999999999, -3.3250999999999999, -2.4961000000000002, 1.5163, -2.0537999999999998, 0.41160000000000002, -2.4958, -1.8186, -1.9648000000000001, 1.5284, 0.57950000000000002, 1.0247999999999999, 1.0111000000000001, 0.72609999999999997, 1.0088999999999999, 1.2226999999999999, 1.3916999999999999, 1.2126999999999999, 0.19339999999999999, 0.25600000000000001, 0.66859999999999997, 0.8831, 0.90680000000000005, -0.15310000000000001, 1.0376000000000001, 1.1908000000000001, 0.54610000000000003, -1.6744000000000001, -2.1968999999999999, 0.27579999999999999, -0.11609999999999999, -3.7347999999999999, -2.0853000000000002, -2.3456000000000001, -2.0661999999999998, -2.2223999999999999, -1.7755000000000001, -1.8113999999999999, -2.3563000000000001, -3.1901000000000002, -3.0630999999999999, 0.46110000000000001, -1.8953, 1.0053000000000001, -1.7583, -1.853, -2.1802000000000001, -1.9904999999999999, 0.37890000000000001, -1.8433999999999999, -1.8486, 0.59109999999999996, 0.037600000000000001, -1.8112999999999999, 2.1166, -2.2797000000000001, 3.4805000000000001, 3.4803999999999999, 3.4798, 3.4773999999999998, 3.4727000000000001, 3.4586000000000001, 3.4226000000000001, 3.4064000000000001, 3.4016999999999999, 3.3921000000000001, 3.3754, 3.3685, 3.3643000000000001, 3.2985000000000002, 3.2652000000000001, 3.2204999999999999, 3.2016, 3.1669, 3.1385000000000001, 3.1324000000000001, 3.1315, 3.0949, 3.0905999999999998, 3.0709, 3.0669, 3.0628000000000002, 3.0585, 3.0539000000000001, 3.0472999999999999, 3.0415000000000001, 3.0388000000000002, 3.0377000000000001, 2.8895, 2.9540000000000002, 2.8102999999999998, 3.0032999999999999, 2.8980000000000001, 2.6583000000000001, 2.9348000000000001, 2.8382000000000001, 2.3879000000000001, 2.5899999999999999, 2.4293999999999998, 2.6667999999999998, 1.8331999999999999, 2.7991999999999999, 1.3755999999999999, 2.5259, 1.3843000000000001, 2.3106, 1.5889, 1.7162999999999999, 1.7302, 2.5720999999999998, -1.6701999999999999, -3.4354, -3.3986000000000001, 1.6509, -0.71240000000000003, -3.0190999999999999, -2.1621000000000001, -2.1294, -2.2789000000000001, -2.0112000000000001, -2.4615999999999998, 0.23089999999999999, -2.2101999999999999, -2.4211999999999998, -3.1995, -1.8967000000000001, 0.111, -2.5203000000000002, -3.2494000000000001, -2.988, -2.4085000000000001, -2.1656, -3.4845999999999999, -2.4358, -3.5053999999999998, -3.4178000000000002, -1.8784000000000001, -2.0444, 0.071099999999999997, -1.9020999999999999, 2.7073999999999998, 1.4350000000000001, 1.7000999999999999, 1.5097, 1.3046, 2.0922999999999998, 1.79, 1.4268000000000001, 1.1827000000000001, 0.63539999999999996, 1.1080000000000001, 1.3958999999999999, 1.0041, 0.72519999999999996, 1.2786, 1.3080000000000001, -0.30130000000000001, 0.015100000000000001, 0.59140000000000004, 1.1504000000000001, 0.023, -4.0811000000000002, -2.1576, -1.8608, -3.0041000000000002, -1.8382000000000001, -1.8331, -2.9731999999999998, -2.9316, -3.4014000000000002, -3.3329, 1.4802999999999999, -2.0084, -2.4952000000000001, -3.3784999999999998, 0.2135, 0.92210000000000003, -0.93100000000000005, 2.3812000000000002, 0.066799999999999998, 1.8829, -2.1781000000000001, -2.8742000000000001, -2.2545000000000002, -2.694, 0.1135, -3.8996, -0.28289999999999998, -2.5800999999999998, -2.8603999999999998, -1.2563, 4.5682, 4.5133999999999999, 4.4489000000000001, 4.0353000000000003, 3.9533999999999998, 3.8839999999999999, 3.8210999999999999, 3.7639, 3.7608000000000001, 3.6619999999999999, 3.6217000000000001, 3.6206999999999998, 3.6019999999999999, 3.5889000000000002, 3.5846, 3.5764, 3.5640999999999998, 3.4843999999999999, 3.4415, 3.4308999999999998, 3.3845000000000001, 3.3818999999999999, 3.3776000000000002, 3.3626999999999998, 3.3264999999999998, 3.3201000000000001, 3.3161999999999998, 3.2949000000000002, 3.2806999999999999, 3.2725, 3.0202, 3.0024999999999999, 3.1267999999999998, 2.8978000000000002, 2.9916, 2.7183999999999999, 2.2498999999999998, 2.1613000000000002, 2.5520999999999998, -0.6643, -1.3082, -2.0951, -2.347, -0.66739999999999999, -0.84889999999999999, -1.5137, 0.15160000000000001, -0.82420000000000004, -1.3717999999999999, -1.0889, -0.70189999999999997, -0.91890000000000005, -0.89990000000000003, 2.0951, -1.3513999999999999, -0.9395, -1.2777000000000001, -2.8751000000000002, -1.4066000000000001, -1.3673999999999999, 0.57720000000000005, -0.21360000000000001, -1.3803000000000001, -0.6089, 2.5032000000000001, -1.2014, -1.8929, -1.3751, 1.534, 2.6852, 1.3029999999999999, 1.4534, 1.4496, 2.0186999999999999, 1.4419, 1.2667999999999999, 0.86670000000000003, 0.69650000000000001, 1.5549999999999999, 0.80820000000000003, 0.19139999999999999, 0.92730000000000001, 1.0613999999999999, 0.26729999999999998, 0.32379999999999998, 1.0063, 0.4511, 1.5330999999999999, 0.55330000000000001, 0.94679999999999997, -0.51629999999999998, 0.0143, 0.90329999999999999, 1.2056, 0.10199999999999999, -0.67120000000000002, -0.78039999999999998, 0.73499999999999999, -1.4903999999999999, -0.77569999999999995, -2.6536, 0.50490000000000002, 1.53, -1.3254999999999999, -0.68440000000000001, 1.6069, 0.56469999999999998, -0.8901, 0.83679999999999999, -0.79069999999999996, -1.1311, -1.7141, -1.2663, 1.5376000000000001, 0.4199, -2.4456000000000002, -1.1665000000000001, -0.69850000000000001, -2.7885, -1.2283999999999999, -0.49349999999999999, 2.3153000000000001, -1.5056, -1.2023999999999999, -2.3645, -0.82489999999999997, 0.47310000000000002, 0.44180000000000003, 0.1888, 4.7903000000000002, 4.7229000000000001, 4.6612999999999998, 4.6074999999999999, 4.5979999999999999, 4.3625999999999996, 4.3520000000000003, 4.3518999999999997, 4.2615999999999996, 4.2281000000000004, 4.2230999999999996, 4.1192000000000002, 3.8811, 3.8795999999999999, 3.8477999999999999, 3.8374000000000001, 3.8203999999999998, 3.8134000000000001, 3.7898999999999998, 3.7707999999999999, 3.7624, 3.7351999999999999, 3.7343000000000002, 3.6863000000000001, 3.6469999999999998, 3.6469999999999998, 3.6377999999999999, 3.6219000000000001, 3.5792999999999999, 3.5602, 3.4782999999999999, 3.3969999999999998, 3.1970000000000001, 3.2094, 2.9605000000000001, 3.0024000000000002, 2.6456, 0.1246, -0.66300000000000003, -2.0146999999999999, -0.26050000000000001, 1.4789000000000001, 1.1205000000000001, -1.3935, 0.45810000000000001, -1.6080000000000001, -0.5383, -1.2753000000000001, -1.5760000000000001, -1.2170000000000001, -1.6657999999999999, -0.28100000000000003, -1.4319, -1.0285, -1.8977999999999999, -1.724, -0.45900000000000002, -0.49330000000000002, -1.8028, -0.50029999999999997, -0.87339999999999995, -1.75, -1.6948000000000001, -1.8809, -0.40679999999999999, -1.4139999999999999, -1.6888000000000001, 2.5112999999999999, 2.8641000000000001, 3.1139999999999999, 2.0861999999999998, 2.4142000000000001, 2.2669999999999999, 2.274, 1.8700000000000001, 2.0741999999999998, 0.71899999999999997, 0.57479999999999998, 1.8360000000000001, 2.9552, 1.1807000000000001, 0.99239999999999995, 0.66569999999999996, 1.2398, -0.14030000000000001, 1.4704999999999999, 1.2548999999999999, -0.3548, -0.68020000000000003, -0.58689999999999998, -0.79610000000000003, -0.70399999999999996, -1.6165, -0.49609999999999999, -2.2103999999999999, -1.5512999999999999, -1.9227000000000001, -2.0158999999999998, -0.81059999999999999, -0.99729999999999996, -0.65349999999999997, -1.2699, -0.73219999999999996, -0.59150000000000003, -1.5775999999999999, -0.58020000000000005, -1.8494999999999999, -2.1194999999999999, -0.69710000000000005, 1.5334000000000001, -1.7042999999999999, -1.2154, 0.71799999999999997, -2.0552999999999999, -0.3372, -0.69779999999999998, -0.76349999999999996, -0.058099999999999999, -0.61019999999999996, 5.1230000000000002, 5.1227, 5.1224999999999996, 5.1216999999999997, 5.0758999999999999, 4.9869000000000003, 4.9824999999999999, 4.952, 4.8688000000000002, 4.7385000000000002, 4.7055999999999996, 4.6801000000000004, 4.6791999999999998, 4.6756000000000002, 4.3773, 4.3604000000000003, 4.3566000000000003, 4.3497000000000003, 4.2754000000000003, 4.2378, 4.1654, 4.1638999999999999, 4.0994999999999999, 4.0133000000000001, 4.0095999999999998, 3.9748000000000001, 3.9373999999999998, 3.8653, 3.8529, 3.8302, 3.7010000000000001, 3.3285999999999998, 3.4802, 3.4344000000000001, -1.534, -0.27200000000000002, -0.17449999999999999, -1.2444999999999999, -0.89510000000000001, -0.89529999999999998, -0.82420000000000004, -0.92830000000000001, -1.3061, -0.49669999999999997, 0.33939999999999998, -1.1853, 1.9694, -0.80640000000000001, -0.42820000000000003, 0.1183, -1.1016999999999999, -1.5565, 0.85550000000000004, -1.3434999999999999, -0.73380000000000001, -0.34599999999999997, -0.28449999999999998, -0.39529999999999998, -1.7373000000000001, -0.98880000000000001, -0.46200000000000002, -0.77829999999999999, -0.1552, -1.4892000000000001, 2.3233999999999999, 1.8115000000000001, 2.4556, 2.4885999999999999, 1.3707, 2.0007000000000001, 1.5780000000000001, 0.41689999999999999, 0.38979999999999998, 0.22919999999999999, 0.80630000000000002, 1.2439, 2.2450000000000001, 1.5926, 1.5557000000000001, 0.57589999999999997, -1.7484, -1.0376000000000001, -0.61909999999999998, 0.1535, -0.51580000000000004, 0.42770000000000002, -0.1973, -1.6176999999999999, 0.34439999999999998, -0.25890000000000002, -0.61880000000000002, -0.55630000000000002, -0.54469999999999996, 2.6722999999999999, -1.2583, -1.2624, -1.8267, -0.40539999999999998, 0.16489999999999999, -0.70099999999999996, -1.6172, -1.0616000000000001, 2.3881999999999999, -0.26569999999999999, -0.90769999999999995, -1.1586000000000001, 1.4678, -0.75790000000000002, -0.64639999999999997, 1.7851999999999999, -0.65510000000000002, -0.2069, 1.2282999999999999, 0.86509999999999998, 5.0952999999999999, 5.0754999999999999, 4.9371, 4.9024000000000001, 4.8444000000000003, 4.8381999999999996, 4.7023000000000001, 4.6977000000000002, 4.6670999999999996, 4.6562000000000001, 4.6043000000000003, 4.5639000000000003, 4.5528000000000004, 4.3273999999999999, 4.3013000000000003, 4.2332000000000001, 4.2304000000000004, 4.1825999999999999, 4.1391999999999998, 4.1219000000000001, 4.0599999999999996, 4.0579000000000001, 3.9830999999999999, 3.9676999999999998, 3.9460999999999999, 3.9430999999999998, 3.9386999999999999, 3.9350000000000001, 3.8702999999999999, 3.8504999999999998, 3.8214000000000001, 3.8079000000000001, 3.6105999999999998, 3.6848999999999998, 2.9493, 2.6556000000000002, -0.47220000000000001, -0.35370000000000001, -1.5101, -0.9496, -0.81850000000000001, -1.149, -1.2258, 0.5202, -1.1973, -1.4563999999999999, 0.83409999999999995, -0.60980000000000001, -1.9649000000000001, -1.7373000000000001, -1.7479, -0.74850000000000005, -1.9417, -0.90869999999999995, -0.99329999999999996, -1.4159999999999999, 0.75949999999999995, -0.9929, -1.2983, -1.1516, -1.8907, -2.0144000000000002, -1.5132000000000001, -0.40279999999999999, -0.71220000000000006, 0.045999999999999999, 3.0207999999999999, 1.4934000000000001, 2.7395, 1.599, 1.3463000000000001, 1.1914, 0.87919999999999998, 1.2218, -0.076899999999999996, 1.0475000000000001, -0.34810000000000002, -0.46489999999999998, 0.17549999999999999, 0.021600000000000001, 0.055800000000000002, 0.89139999999999997, -0.90669999999999995, -0.7036, -0.28660000000000002, -1.8557999999999999, 0.92069999999999996, -0.40770000000000001, -0.18340000000000001, -0.12, -0.44569999999999999, -1.1533, -0.96809999999999996, -0.52290000000000003, -2.3883000000000001, -1.7251000000000001, -1.4056, -1.1103000000000001, -0.75760000000000005, -1.9975000000000001, -1.3501000000000001, 1.4775, -0.71660000000000001, -0.69820000000000004, -0.18279999999999999, -0.6593, 0.93720000000000003, 2.7347000000000001, -2.2143000000000002, -1.1742999999999999, -2.2107000000000001, -0.49959999999999999, -0.58660000000000001, 0.65980000000000005, 1.0193000000000001, 4.9321999999999999, 4.6310000000000002, 4.6109, 4.5753000000000004, 4.5739000000000001, 4.5678999999999998, 4.3842999999999996, 4.2272999999999996, 4.2157, 4.1883999999999997, 4.1787999999999998, 4.1371000000000002, 4.0876999999999999, 4.0298999999999996, 4.0212000000000003, 4.0175999999999998, 4.0049000000000001, 3.9472, 3.9462000000000002, 3.9293999999999998, 3.8060999999999998, 3.7829000000000002, 3.7749000000000001, 3.7650999999999999, 3.7054, 3.6758000000000002, 3.6000000000000001, 3.5958999999999999, 3.5832000000000002, 3.5457999999999998, 3.5118, 3.5118, 3.1966999999999999, 2.7715999999999998, 2.8094999999999999, 2.6456, 2.9283000000000001, -1.7517, -0.25669999999999998, -1.1123000000000001, -0.87939999999999996, -0.77490000000000003, -0.79459999999999997, -1.8764000000000001, -1.6476, -2.2097000000000002, -2.1852, -1.2815000000000001, -0.55569999999999997, -2.0989, -1.2688999999999999, -0.25390000000000001, -0.58150000000000002, -1.2675000000000001, -0.82920000000000005, -1.2849999999999999, -1.6661999999999999, -0.16009999999999999, -0.5393, -0.53549999999999998, -0.90980000000000005, -0.4481, -1.3855999999999999, -0.81699999999999995, -2.1534, -0.62009999999999998, -0.1275, 2.8574000000000002, 2.9956, 1.5366, 2.9477000000000002, 2.1278999999999999, 1.6116999999999999, 2.1215000000000002, 1.8573999999999999, 1.0869, 1.7470000000000001, 1.2279, 2.7286000000000001, 1.3184, 0.44429999999999997, 0.98880000000000001, 1.2485999999999999, 1.1411, 1.3196000000000001, 1.242, -0.3478, 0.92279999999999995, 0.90939999999999999, 1.0412999999999999, -0.29949999999999999, 0.12139999999999999, 0.1285, -0.73660000000000003, -0.89219999999999999, -0.54330000000000001, -1.6537999999999999, 1.4552, -0.35539999999999999, -0.3664, 3.4769999999999999, -0.61160000000000003, 1.101, 0.7127, -0.85160000000000002, -2.1362999999999999, -0.93240000000000001, -0.13220000000000001, -1.5665, -0.9869, -0.94810000000000005, -1.1632, -1.6778, -1.9409000000000001, 1.0330999999999999, 0.74990000000000001, -1.4147000000000001, -1.4702, 1.5234000000000001, 2.3448000000000002, -1.5399, 1.0189999999999999, -0.44729999999999998, -0.1142, 0.088300000000000003, 4.5430000000000001, 4.3860000000000001, 4.29, 4.1127000000000002, 4.0999999999999996, 4.0294999999999996, 4.0252999999999997, 3.9447999999999999, 3.8895, 3.8740000000000001, 3.8553999999999999, 3.8401000000000001, 3.7959000000000001, 3.7313999999999998, 3.6522000000000001, 3.6103000000000001, 3.5844999999999998, 3.5829, 3.5768, 3.5036999999999998, 3.4643999999999999, 3.4253999999999998, 3.4028999999999998, 3.4015, 3.3231999999999999, 3.2982999999999998, 3.2747999999999999, 3.2583000000000002, 3.2378999999999998, 3.2273999999999998, 3.21, 3.1476999999999999, 3.1158999999999999, 3.1259000000000001, 2.9944999999999999, 2.9199999999999999, 2.8448000000000002, 2.8595999999999999, 1.1459999999999999, -1.1273, -1.1052, -0.4178, -1.0591999999999999, 1.1758999999999999, -1.2519, 0.5272, -1.3637999999999999, 0.54239999999999999, -0.0033999999999999998, -0.79559999999999997, 0.40239999999999998, -1.3864000000000001, -0.45490000000000003, -0.67530000000000001, -1.5430999999999999, -0.34449999999999997, 0.16520000000000001, -0.39500000000000002, -0.29199999999999998, -0.0482, -0.106, -0.751, -1.0463, -0.99219999999999997, -1.3607, -0.44379999999999997, -0.080699999999999994, -0.87139999999999995, -0.41170000000000001, 2.8532000000000002, 2.1543000000000001, 1.9063000000000001, 1.8896999999999999, 0.64629999999999999, 0.39779999999999999, 1.1449, 0.096299999999999997, 1.6787000000000001, 1.7796000000000001, 1.0967, 0.41460000000000002, -0.12520000000000001, 0.74009999999999998, 1.0983000000000001, 0.39929999999999999, 0.77859999999999996, -0.42220000000000002, -0.7581, -2.052, -1.1803999999999999, -1.0757000000000001, -0.50570000000000004, -0.75729999999999997, -0.13139999999999999, -0.83779999999999999, -1.175, -1.4941, -1.5929, -0.088400000000000006, -1.1107, -0.53969999999999996, -0.62029999999999996, -0.78639999999999999, -0.69940000000000002, -0.55310000000000004, -1.1234999999999999, -0.4173, -0.33829999999999999, -1.3156000000000001, -1.4054, -1.4276, 0.77780000000000005, -1.1214999999999999, -0.014, -0.46870000000000001, -0.3664, -0.17349999999999999, -0.27589999999999998, 0.54090000000000005, 0.96060000000000001, 0.85729999999999995, 0.88519999999999999, 5.4100000000000001, 5.2821999999999996, 5.1372, 4.6657000000000002, 4.4287999999999998, 4.3055000000000003, 4.2221000000000002, 4.2194000000000003, 4.1185999999999998, 4.0593000000000004, 4.0349000000000004, 3.9828999999999999, 3.9693000000000001, 3.8731, 3.8262, 3.8227000000000002, 3.7898999999999998, 3.7814000000000001, 3.7656000000000001, 3.7599, 3.7544, 3.7496999999999998, 3.7280000000000002, 3.6993, 3.6844000000000001, 3.6781999999999999, 3.649, 3.6288999999999998, 3.6196999999999999, 3.5865, 3.5644, 3.5806, 3.3346, 3.1358000000000001, 2.3984999999999999, 2.8094999999999999, 1.9477, -1.1798999999999999, 0.2878, -1.538, -0.37269999999999998, -0.096699999999999994, -0.069900000000000004, -0.40860000000000002, -0.2044, -0.050900000000000001, 0.044999999999999998, -1.5203, 0.27900000000000003, 0.1361, -0.59160000000000001, -0.0276, -1.6684000000000001, -1.4679, -1.6424000000000001, -1.075, -0.19020000000000001, -1.1863999999999999, -0.59499999999999997, -1.7359, -0.0091000000000000004, -0.58489999999999998, -1.4395, -1.6234, -0.0112, -1.6580999999999999, 0.18060000000000001, 3.2568000000000001, 2.0655999999999999, 1.2179, 2.1364000000000001, 1.4198, 1.6823999999999999, 0.74790000000000001, 0.85719999999999996, 1.0168999999999999, 1.992, 1.8896999999999999, 1.1805000000000001, 0.47189999999999999, 0.75839999999999996, 0.92469999999999997, 0.055599999999999997, 0.65469999999999995, 0.89349999999999996, 0.71450000000000002, 0.77629999999999999, 0.32300000000000001, -0.63770000000000004, -1.6026, -0.3352, -0.74809999999999999, -0.076399999999999996, -0.55430000000000001, -0.58420000000000005, -1.4011, -0.37819999999999998, -1.1388, 0.063200000000000006, 0.22090000000000001, -0.93159999999999998, -0.27179999999999999, -1.4117, -0.53539999999999999, -0.84019999999999995, -0.7964, -0.0074999999999999997, 0.2555, 0.13120000000000001, -1.1671, 0.40670000000000001, -0.0074999999999999997, 0.84340000000000004, -0.54630000000000001, -1.0687, 2.2136999999999998, -1.6915, 0.68020000000000003, -0.17860000000000001, 0.62209999999999999, -0.92469999999999997, -0.90580000000000005, -0.75, 5.9760999999999997, 5.6933999999999996, 5.2157, 4.4218000000000002, 4.3377999999999997, 4.327, 4.3037999999999998, 4.2556000000000003, 4.133, 4.1298000000000004, 4.1163999999999996, 4.0566000000000004, 3.9628999999999999, 3.9561999999999999, 3.9241999999999999, 3.9127999999999998, 3.8892000000000002, 3.887, 3.8650000000000002, 3.8296000000000001, 3.8048999999999999, 3.6652999999999998, 3.6410999999999998, 3.6267, 3.6080999999999999, 3.6051000000000002, 3.5653000000000001, 3.5529999999999999, 3.5156000000000001, 3.5137, 3.3986999999999998, 2.6615000000000002, 3.2875999999999999, 2.5811999999999999, -0.58140000000000003, -0.45519999999999999, 0.33589999999999998, 1.0270999999999999, 0.70550000000000002, -0.54990000000000006, -0.11890000000000001, 1.1287, 0.24579999999999999, 1.5293000000000001, 1.4115, 0.35759999999999997, -0.39439999999999997, -0.057799999999999997, 0.63270000000000004, 0.15179999999999999, 0.43419999999999997, 1.4859, 0.1133, 0.66139999999999999, 0.89090000000000003, 0.97570000000000001, 1.0629999999999999, -0.55620000000000003, -0.11409999999999999, 1.143, 1.0438000000000001, -0.33400000000000002, -0.87660000000000005, -0.072999999999999995, 2.8376999999999999, 2.7503000000000002, 2.8064, 2.1280000000000001, 1.4424999999999999, 1.8056000000000001, 2.9478, 2.3008999999999999, 2.9752999999999998, 0.70340000000000003, 1.1371, 0.65590000000000004, -0.1293, 1.8996, 1.7350000000000001, -0.58340000000000003, 0.1454, 0.17810000000000001, -0.14349999999999999, -0.46820000000000001, -0.42230000000000001, -0.93640000000000001, 0.57169999999999999, -0.35320000000000001, 0.2888, -0.24479999999999999, -0.1019, -0.1303, 0.71819999999999995, 3.1905000000000001, 0.91769999999999996, 0.26069999999999999, -0.22550000000000001, 0.74880000000000002, 1.4621, -0.35589999999999999, 1.2428999999999999, -0.63560000000000005, 0.85980000000000001, 0.1618, -0.43859999999999999, -0.28149999999999997, -0.16, 0.0068999999999999999, 0.87170000000000003, -0.062600000000000003, 0.95150000000000001, 1.0434000000000001, 0.067699999999999996, 0.1114, 1.2322, -0.85970000000000002, 0.65080000000000005, 1.262, -0.50390000000000001, -0.053999999999999999, -0.47099999999999997, -1.1564000000000001, 0.43190000000000001], &quot;Freq&quot;: [12462.0, 12014.0, 9758.0, 5947.0, 10028.0, 3462.0, 5569.0, 7517.0, 4511.0, 4482.0, 5402.0, 6596.0, 3769.0, 3727.0, 2822.0, 5807.0, 4341.0, 3150.0, 2472.0, 3346.0, 4005.0, 5784.0, 5172.0, 2020.0, 2148.0, 5309.0, 1715.0, 2462.0, 1882.0, 4884.0, 12.004511172311627, 18.9033238250903, 12.909141654548437, 13.862473043303096, 9.932762248868908, 13.862930421663842, 26.637347937720648, 9.8990941589166663, 15.775347172624031, 14.777755709799949, 9.8740307398753515, 10.820803230377212, 15.683897699102909, 11.643343653621125, 49.250143739035195, 24.118510080213795, 48.34771125491347, 11.552230066636151, 11.560659095060117, 24.869948937474792, 79.059303688413706, 9.5612350946774871, 34.213157603699401, 45.657298042998818, 125.55112047291253, 9.5583920232719723, 26.550549512017049, 9.2162659956254487, 22.096888894441101, 17.332991578368301, 385.92740970527632, 48.32030800656409, 46.853280631523852, 26.228628844272727, 202.95140392077434, 96.739800608326235, 148.98279470170792, 157.02667958392939, 115.13350991493652, 127.99712812450163, 43.0560305348992, 79.985149329024424, 365.53732980974166, 248.67254017439876, 255.60493095419341, 43.503147792624539, 403.12898091134019, 277.57115907725205, 338.59832833495921, 65.680894585268831, 170.57267961571688, 467.07922539979251, 403.45431164690291, 689.55777191237735, 259.48964858943219, 423.95113199414919, 640.41841177686536, 3337.2381441361636, 307.64840813316755, 739.83447541833175, 310.83503173573519, 3142.0327113403864, 2048.1036510984322, 1526.8382488772488, 870.08699167216639, 546.16963543130169, 734.55494399589816, 502.6988185640526, 775.26477407367781, 2212.3887622305992, 990.64810109527889, 566.2107306474137, 595.22247957922809, 1183.6150253906812, 854.76767744262099, 961.20712248261123, 4.098213501408007, 7.5117091253539714, 7.4224260285253347, 9.0327585313038359, 146.77308101015583, 22.088016844559803, 39.260387747129428, 2.28743400737822, 34.418087068140892, 0.0422519461118155, 3.338200802810396, 0.14134977227629458, 41.068630422216437, 51.290710759551764, 0.9835413769295932, 0.090387351187274201, 174.31804229117697, 3.6258116209282401, 5.8068084621326923, 11.883210433741311, 0.047775423219247271, 116.26279044900535, 3.308304465950529, 1.096244027833376, 61.730048655202431, 5.879825853759022, 25.133273710754839, 2.3331813674113566, 17.138444239085878, 36.006738643452671, 637.09119378457035, 1223.7570957775481, 791.13746658795583, 687.25377018702409, 741.70189164774274, 1058.0540324973003, 966.1895448048416, 818.12774023345514, 823.79070627276747, 1153.9499582444139, 751.6646629642604, 589.54562580375193, 671.01388391162357, 1.0539192294089361, 10.525772062145419, 3.9455356026410837, 4.1385299596424518, 0.072550406046273802, 8.1564383461864498, 17.758177741986433, 1.590767469526976, 7.2458314589340205, 0.13107776299868301, 63.420504827953799, 3.5550496801381182, 117.82617089457989, 34.161081051809482, 92.040154149276958, 11.904323884779705, 81.192518385654225, 48.234896341569261, 31.411164407187389, 0.051328001022696364, 32.69704084511541, 2.9956294986551608, 7.0210019921243676, 27.791435014749421, 299.93841775683592, 0.19468758208195394, 0.66724191454716153, 137.26852086156367, 2.0942730083119336, 639.49538844794733, 20.945106249319441, 26.876466216990963, 17.958195098680786, 12.041806794195526, 27.129988840867522, 16.279707883667541, 16.255762619263194, 11.493047399576135, 11.478224323842756, 12.406440700753963, 9.5658916664713143, 11.400299719469926, 10.44882915718445, 15.058089408737626, 14.072700220781424, 10.360351321706045, 9.4011076251611492, 17.610612673249008, 9.278561338780225, 18.317985172249887, 19.112454116902079, 9.1492497571635667, 19.733128791963992, 15.250614623142114, 10.733972466129515, 20.551566021599402, 18.732562219779375, 15.137181715236784, 11.610186062884793, 14.649611099305195, 37.393464077745378, 62.628905491619413, 37.425343959783042, 837.85001678450294, 22.422831033201145, 276.80847372720234, 346.03373506683533, 102.06956999110929, 312.6299381702479, 106.30577110434376, 83.572103834233204, 118.26267921925692, 245.71399861097615, 215.75936407074903, 311.45340949665962, 110.15505628151067, 103.57231888824722, 66.099527446362586, 414.82079401424136, 72.85311938489069, 86.186787703695714, 151.11360467572931, 534.38698796417339, 85.910787744820496, 383.95912386949794, 266.44340957922935, 244.72733225017046, 670.14506381112426, 298.02263191939454, 344.1655313718644, 1586.4020081997294, 589.74581994339223, 809.50250274941413, 620.81481497862114, 3219.8306900937246, 390.77661432164547, 791.13419168454845, 2342.6034824830472, 940.05558494866671, 439.20549850863148, 2433.3457514546699, 905.81737379073138, 318.95387323064926, 529.77731254152764, 1575.6956326666118, 1390.7688978054434, 0.065550281094268872, 78.117145255111453, 0.075507639406160773, 0.069565489053946161, 9.0472431865890002, 0.27750422779776474, 13.849423467688043, 0.33120810429812558, 28.383618608860431, 9.8061022034753123, 0.075290318860782829, 0.089659772660905634, 3.8547416371163075, 4.5773412922991614, 2.9249532506795819, 8.3454193892203854, 0.059905917120691821, 26.237727318896546, 0.060470629728803495, 5.4237780510292364, 1.3087203700562815, 0.083534553789231622, 10.108862617008942, 0.061607153924935439, 0.067160696078886514, 0.1124389504249016, 2.2566524496413805, 0.061712032399952085, 1.7628974086712694, 1240.4356711391752, 1141.5105917814369, 561.87820902977626, 859.92683607531183, 934.22719450780517, 770.68001385665082, 668.173776016077, 587.69134083625318, 624.01198949816956, 877.83405808151508, 456.83390947477841, 641.61849233911869, 683.17186715569778, 494.86428894030252, 723.71257700972899, 616.35997363677245, 774.77416313610615, 7.3637008751965007, 11.013055985171224, 0.15327279682898065, 5.7504015882944124, 0.080945885642326451, 19.010712610146843, 0.062114210895242147, 1.1517085843862009, 0.056901796880068217, 1.1264581030248557, 31.574069444926561, 0.28209760135624135, 6.2381109690036469, 31.565493872223676, 289.67242489967504, 138.27672816112135, 17.801319265510923, 0.46361718708963268, 0.064042471459538466, 0.19224765723329063, 69.826512876059553, 0.56986451460799403, 0.05769896333501133, 0.055188929481535545, 0.088769931374231406, 3.2925656884561452, 1.3166619176487859, 62.86596549771329, 1.1899071217761199, 2.3198946815958323, 649.28424863514408, 625.15469409484717, 10.032320858335863, 11.002813221107925, 12.981522718458463, 11.002265964103378, 11.990018483451912, 11.988980974526047, 10.011864661513636, 16.938582902987886, 10.011088995504144, 10.995346453241636, 11.985188472271323, 10.00861059417038, 10.007820046050115, 13.959770874302135, 10.988981744412181, 10.004228692120176, 16.924894115581544, 12.963626164490979, 16.922371406820602, 12.965162518472528, 19.90910940587397, 14.938688913032752, 32.767080400774617, 9.9933818024925358, 12.955640531616098, 13.944722141809528, 9.9966105445466003, 13.941965760205051, 22.845349499568108, 60.529869891714995, 176.42596936334209, 97.866641825800841, 61.434292408975573, 54.463615819889725, 50.443318652183272, 37.687541445678214, 51.384364227402578, 167.38713798961882, 31.758547063940451, 34.688544034346336, 29.774413623128556, 42.503856697835296, 29.71907641716534, 24.817074740239441, 22.839514342340749, 21.846625187963973, 21.832796094678404, 19.873586955670554, 20.838268694702794, 20.825562990490585, 21.801907107606002, 165.44681655644598, 136.66375642197499, 146.02982645065194, 640.9299055446711, 180.27165499984991, 75.144905335779043, 59.510517905437901, 39.789482056015196, 164.08768051023711, 394.10107106406855, 399.28057195812659, 1350.8322585831174, 171.64542865583081, 89.469130088031534, 380.387374082142, 203.67216883449194, 245.51883451345364, 205.43679295986806, 96.28064093939804, 181.02347992776819, 287.87572023929374, 799.21741818451846, 649.1330295051979, 576.36235186935471, 352.60347115432012, 433.45698323448062, 817.15775043623057, 2013.8284214369251, 175.33656606752012, 1128.8475472308169, 436.08447456210831, 594.06313892265996, 491.97448058259835, 428.74455883798646, 881.18159713232899, 893.69979644582327, 1093.4406992401612, 1134.7871173773528, 487.60663504496978, 2904.0953478186693, 859.63458388632841, 1579.8090757739055, 403.14486942514105, 366.29410478031247, 597.26834817112922, 589.00853833427243, 1563.4301086802234, 1.8089286848869437, 0.077153040453520005, 1.2223982734184806, 46.762246559921266, 0.12548186876223313, 0.047715225750959545, 0.0648442643232129, 0.078296224052373631, 5.4704127743833073, 3.0316617636665639, 0.055171972736152847, 0.072725137080763586, 5.0875790751365928, 1.2447069104952035, 0.46627988129701159, 0.051499521193589269, 28.53248109277547, 79.788834110625331, 13.705683624919516, 3.6739295362218303, 3.9133837755182963, 0.067936666706890358, 0.65244967649353847, 6.916834765171024, 3.9731182473230202, 0.41078348266442527, 8.2082690769044753, 0.92918387644497924, 20.139240526905002, 0.11963885837525558, 1047.4720599257889, 1446.5212105661883, 1375.3620834679004, 1217.7622943039239, 1195.6122274733268, 716.17368010623431, 1014.4927942785575, 1186.0522373515364, 605.05693699698986, 654.85924018419496, 1299.6593422614762, 1026.5673504492038, 1042.6207988087399, 698.40584536758172, 665.05759388222862, 676.14467527216971, 1.6927096692427954, 14.888673371564241, 11.44567815737482, 9.4550815365153031, 2.5292477641925846, 53.371397109403219, 0.56068196890957422, 0.28276462999029189, 0.59749758842050182, 69.41563540418251, 0.045416971944288967, 26.038884085319619, 2.6950165439898557, 13.936314245756989, 373.57095414155509, 3.2026681857597294, 2.2032900099811914, 4.2846008105847488, 0.10984193129081736, 1.3104268347873345, 3.223535697541478, 3.522606399436448, 1.8704596603978714, 0.93953318474816128, 1.0560174840558298, 17.272005318026512, 0.12502223100846785, 12.471099627785579, 36.889374029924475, 13.353731486172093, 688.92665673835222, 633.68790770013527, 15.949032051426389, 13.95733608660692, 9.9976159889761487, 13.891892616870036, 9.8864466507389697, 10.499507975132879, 20.606766002504191, 18.264362323122196, 13.475983327147951, 14.833144076105929, 11.101178863400554, 10.923938261107464, 16.499808273913498, 7.9037857984534847, 8.4142925103333894, 10.448653461530713, 7.4662491881107389, 37.541833482837916, 11.585104464607516, 8.5796189950867738, 11.75616478750865, 16.006646569922268, 8.0152886228717364, 8.0024915530781957, 46.630493992979282, 12.215093590353854, 10.550881638920423, 16.197117360525827, 7.9088584365177317, 15.708243638033348, 48.422568705210985, 28.916705475461853, 15.153723538632969, 40.246778934792431, 58.077237181339378, 48.556138356035206, 179.91561158334011, 52.296370609235971, 88.328376862107788, 21.385771291618134, 61.996197233931156, 139.77165043160355, 94.943800661886897, 284.96383614047159, 517.52966721842961, 140.64849237649008, 726.00093292602696, 1087.7077646112307, 139.43610414492619, 837.24965456474547, 418.89384529958392, 752.63079438652187, 955.30842790027259, 88.45738215341234, 576.17504304588954, 809.26817703881227, 1180.0274885830881, 453.18279309877011, 631.69362928811984, 153.16046900275492, 121.12112840593026, 272.6618240669585, 313.36940691046055, 239.38052919392248, 232.23128548374885, 466.21745406232083, 1.3403044649845486, 79.577999057636518, 4.6658766499196895, 2.1503627793438138, 0.72789122409743978, 9.0907202319049585, 0.23609248665781385, 40.247129544609066, 0.53665022158667686, 2.2088349210461145, 9.9079804646964487, 0.43513797057645354, 17.421591748835258, 3.0698451769473971, 0.49880001860157308, 1.3902142009335205, 8.9058321758651235, 3.3929252042022946, 0.82371099249928825, 0.30746008261518282, 0.055068383949003236, 2.2763836709070611, 42.77266798156402, 0.13983659890072958, 5.9565691575651529, 1.9932477834365065, 8.5927409820517333, 15.811609732365763, 15.218492699740979, 360.47542690496039, 1061.2197694077327, 621.1632076868791, 245.13038478511217, 230.0467997367376, 603.25816568640175, 301.43868042321247, 420.87655157098862, 356.66279106260362, 430.24729767361595, 301.39880783162675, 281.62392532209844, 488.21542020114896, 365.96415321758246, 335.78108969311495, 286.488809348936, 93.312285199935417, 0.047920133498500543, 1.6520227143775508, 6.5314473907761785, 0.65528523870867439, 0.12900184727273512, 10.311129196096177, 2.9511315241707732, 3.6247243965092135, 8.9860123661599243, 77.181910571370096, 4.6307012335555262, 8.1787227545121866, 0.26062904203300796, 3.8666694505499404, 1.0742949062315852, 2.0497220899093245, 25.913823987286914, 6.6279617740566525, 5.6121983110621123, 0.30645277909948299, 4.1206415529245115, 1.0888958516646179, 6.996358668053885, 1.3137554672862934, 0.086089517178528016, 4.5212643552830167, 1.7430539563365035, 12.188702216490244, 297.37370872486497, 13.875253150387364, 11.543467776025929, 12.898045714735602, 13.665373149927321, 16.015261782621995, 13.14940621146361, 11.241596550786182, 10.244117666999941, 15.885484606270399, 9.1965100049554547, 38.531462368189452, 15.71634602812064, 7.8258502088446313, 7.5473675420004511, 12.056510342377349, 18.667148550771859, 8.6085037607015629, 7.2699086712699978, 11.115902946156707, 8.7600408432511898, 16.544640637599795, 12.276525592173664, 12.550952249638671, 39.587579627679652, 17.160541129889186, 15.534819803961785, 11.930412729858295, 22.697637096237262, 6.7187557106456985, 26.031187863448778, 62.079437565073455, 103.14393060058869, 180.41088407828371, 38.481793922698344, 114.01121701221292, 164.60831444676782, 49.209292138664033, 149.25687089079346, 136.66076190051538, 228.66840759672303, 72.036748217918969, 208.61676723240583, 228.7068453332179, 72.981328757651312, 248.73039220456963, 88.583313929968426, 189.42095431985348, 262.114940934245, 136.24569929839018, 69.762725618648346, 516.16168316543406, 431.79242607000435, 204.82278420070136, 141.44521508924637, 75.476624753815173, 98.637043248909151, 420.12631596817988, 356.47812072693131, 143.26549204974583, 108.85036825137733, 0.066190839965779374, 0.058233603639541415, 9.6893928669951901, 0.18759735801387534, 2.7376694005407942, 0.059511836276086902, 0.055521772865421024, 0.89652633920937486, 0.086304870498340153, 1.0224215821536422, 0.078113801736503952, 0.052416018771451273, 0.43627200773835184, 0.063439533713522261, 0.073305959134437493, 0.96515474224795872, 0.053919195904241324, 4.0564598537574614, 18.204477168293188, 40.695040176842717, 0.066487756691830893, 0.095977224194760749, 0.072008858702884398, 0.12961809695471044, 1.4370331585492422, 7.4166102558075062, 7.566663205305586, 1.8360040260674004, 18.638064640329624, 18.253859763733388, 189.7055305677778, 174.11073659143665, 986.20875783951374, 446.58625891408082, 446.62220130832389, 619.91869507193621, 277.68342555476437, 455.23248033310756, 177.05618512212664, 173.28533491587768, 458.9755596571315, 209.0586638969294, 474.31370629904785, 512.83758224483347, 237.18314164441199, 213.76551408618997, 290.24436479602593, 349.87159233909989, 346.89272886837011, 324.80564350523485, 312.74502755407525, 243.78806035198082, 294.04575162501652, 323.87815607851394, 277.23505262586951, 227.50019922463721, 0.18098369669539138, 0.069483900607927418, 4.0537390929326884, 0.070144189799698276, 3.6623567611085828, 0.055258200520910447, 0.067788647762494991, 0.065637910040692068, 28.729141135788222, 4.5626999513013011, 11.694772440818232, 8.0137349573279195, 1.5791956140962753, 0.060425867268051908, 3.381951012003126, 1.2635469222939315, 0.063269200789212637, 53.298872898900413, 20.566929102730281, 1.4707360415011113, 16.263332992797825, 0.059052158425345509, 9.629293498506625, 7.117946081615397, 1.1269223820523315, 5.9302000698448865, 0.10492530097322211, 8.573447935798292, 2.3575115513991474, 12.826427979884439, 229.01381912115241, 10.117996691379266, 10.050221775693275, 16.18857153473947, 18.014782217250932, 11.140455825218636, 9.3526432412807825, 23.019790368166642, 23.848706617531036, 24.560383543189907, 22.467120910123565, 28.777840164177022, 16.386406852415945, 12.333874980346375, 18.672483423283108, 13.042593209100275, 29.020286890194235, 36.973969678328466, 18.282209609816409, 145.9244737274322, 7.5657178871623412, 11.054184322541902, 10.735963742637006, 7.4451660666136883, 16.916084608617901, 22.864723905463773, 16.497770876142958, 58.169568103018811, 7.2400648376755408, 17.944252180517367, 7.2065626395619322, 112.21163531192283, 741.83193159993448, 189.41792883903679, 489.71366867181604, 27.454603274877169, 46.865198691259174, 106.04373305541937, 83.892310013555075, 146.85649459158907, 81.919631158700753, 334.96260732848106, 176.81362650970831, 59.000854277002723, 97.749566470626661, 335.93093753868789, 174.00358808558161, 51.286809016370412, 924.00525399363983, 1363.1194149919895, 336.90046525301756, 194.67881199968616, 169.00624499192861, 480.75855246905121, 809.35636169112911, 317.80376599566426, 186.27069594904785, 203.82517849872167, 8.6624120797018946, 2.0362953743877892, 0.05903076619511162, 1.5498449853400906, 10.161343869221966, 0.071875199666339734, 0.055726596532223761, 0.067757441728932749, 0.0871593107333168, 4.2483830907002575, 0.055235110073098545, 2.7090947251296793, 2.1740776761438103, 0.058021905599176422, 3.6214682701043972, 0.05641655345641447, 2.967680771976561, 0.060138534957645984, 2.5108691973300719, 0.058449500861336025, 16.214131809923522, 42.758633222696552, 4.3152054065772969, 2.8927914781725672, 0.056454257466349161, 0.62936706267372011, 2.3964738891656094, 2.7965218536644132, 1.0668287343917844, 1.2471944518189102, 447.34214835058106, 377.19915632087907, 997.36795621790191, 349.0302924614661, 650.65922331805064, 401.2782588353063, 356.51433619396414, 236.75738424081248, 283.79081007339647, 697.71171107656517, 446.75218060186199, 267.32118197076886, 510.61229895505306, 365.08878596440354, 366.97653625713031, 300.31895591716608, 251.8874124062371, 284.87446217952902, 346.19928308569337, 324.99933451628846, 289.66221072934013, 1.6115274691003487, 1.668214471327452, 0.051003121320060359, 0.050331718366995425, 0.059690645308030629, 0.053777002096749515, 0.055897451389916065, 2.9332961671205151, 0.06299750237276, 1.6347685202273916, 2.1379168550255647, 44.568793110968429, 13.40582617653166, 0.052828750690106639, 0.05207246349561695, 5.9675610426956052, 0.6205430524583927, 2.6992490301324725, 0.058375497765113492, 6.3497181660443465, 44.227144683884049, 92.417400641904464, 0.065745766895367597, 56.534847758350033, 0.61488184776142107, 0.079851302182788922, 5.032715482594095, 7.1582060607067044, 3.1703660245916963, 275.57203508276962, 13.946699052206233, 19.507294079009963, 10.605309579461895, 10.5597313818219, 12.492027119901021, 17.347320878295555, 16.306423770540729, 9.5152691983083653, 51.284602490767057, 8.5536369380775295, 258.41906097199507, 32.050425826103954, 16.031896065065556, 16.409706137785527, 16.114515400552278, 27.655854493037193, 98.377838411704104, 14.288822929365731, 7.6220771476996871, 28.977778901356583, 18.879796063525013, 26.645232502645719, 40.023340702387031, 16.57994835125028, 10.534094337287666, 20.607058705843158, 26.853787587825515, 41.1445614673992, 9.5256402702587675, 18.011814535892462, 30.749418763853175, 200.88908517502503, 56.545537054241954, 72.512124177760199, 53.808010590050621, 76.028466726068615, 183.50422265093937, 101.40581884849992, 66.059982640557536, 70.843524935116477, 167.51004197990449, 465.22012940309764, 265.59442901322961, 653.66386054320935, 93.492714567639581, 78.393045464494037, 256.35606732995279, 251.46761891924035, 465.80435100094974, 282.35132194497186, 101.79543028762245, 0.082782364696792329, 0.057200395076223737, 0.077060010491800057, 9.4646277047903045, 5.6160867991626997, 17.35795256049192, 7.3592162340729619, 16.378244747544862, 0.093291117508432289, 0.072768985374572034, 0.058894303035490037, 0.177393527935298, 0.059947598782753381, 0.062358770753932806, 2.0341188584202765, 0.18093386376250151, 23.176579788267208, 0.054826718162668382, 0.064564542143480008, 1.1002286763060658, 8.909060152150408, 0.056493212323080647, 5.0482869493637557, 0.76428743159408552, 3.5642748467236327, 0.060675942879312113, 33.562952118958833, 0.20850268525909102, 0.15025345466213932, 202.6421147812982, 95.46803186789991, 413.78810413846242, 88.202067039779322, 143.07529568331481, 255.28142341770356, 217.89058926630406, 190.33978805164324, 135.06257032168625, 420.63728307542016, 193.05425921797956, 248.29807343542132, 210.47072543316625, 570.36164445757584, 191.74453373539561, 361.44521185257975, 288.25528034882126, 303.67218837480624, 263.78248241700322, 212.05391484606162, 269.14551771847783, 344.97481658947589, 327.69165197452281, 304.56616242313368, 239.41588067904223, 313.81586277032517, 321.84960309159254, 256.13741287434249, 264.74523668277709, 3.9143659641688031, 43.401727630796131, 1.1132104408267334, 7.9421168422090336, 2.1091656714111342, 0.056898695326417857, 0.05919323450434312, 0.064459043245959552, 0.1920932224211318, 3.986785401767019, 0.049981175474927218, 0.096804830928757454, 0.096149809921142609, 4.6439783658477145, 0.074394252238618869, 0.058250154798539407, 8.7683312492595356, 0.051859277160049747, 9.5967874952773595, 2.1899957342849596, 0.054057817610604394, 12.854427441800265, 0.82940884130858428, 0.38011410194222728, 2.1030411598632619, 9.2172793654090022, 1.5289961519170121, 4.5466125853951622, 4.9441016695845539, 2.250173703454331, 225.72006512225695, 11.00755379784988, 11.944712401148944, 27.63739788389497, 17.737330469348624, 10.745198731430451, 12.551204324183862, 9.5172229364019074, 16.350937863673671, 10.828448874682454, 710.26889192578142, 91.905306106206112, 14.939003500244205, 11.866033678474558, 195.8849538935288, 76.482133954761892, 28.237184161515867, 32.383121840596502, 10.803946823932135, 50.610008246272955, 8.2888151464016175, 12.710218376764209, 26.587944909010947, 13.804305517745883, 7.5879485371222568, 11.920144868957745, 12.321458591298775, 7.2621016017542743, 21.041205556242836, 9.3436922927983552, 12.492699933164703, 36.146631042173468, 51.725085399316782, 83.722129138015958, 67.551845097210162, 218.9495598821367, 35.965853653039396, 458.15915256624868, 50.642661801489915, 287.08381058209869, 370.79273395114632, 161.40310610649439, 58.545459492226016, 68.948124102012287, 58.916483576617239, 909.71135422455188, 172.20409330713775, 121.49892879899807, 703.60376676665533, 138.55134990477839, 71.60814801641645, 181.08522953407649, 1.1570253565356856, 0.83517406742344757, 18.388826326569841, 4.8550147773080488, 2.2219555920189955, 0.20763345291055682, 0.14715069645536247, 0.10504452850826666, 0.052978810496263302, 0.53131170717555587, 3.0107018686846212, 2.2258643971736785, 0.29273922035765343, 0.67957657322169063, 8.6993198558095948, 3.5627865341073894, 0.36032949474300136, 0.40612365286049706, 5.0962348439975917, 1.8885306483080382, 3.448357811295649, 0.16818597800821533, 0.077772457380361648, 0.093437070853887874, 12.932369962190959, 8.2660999008741545, 0.076038521005735701, 7.1471097281082638, 0.062075057722360868, 635.06164359223237, 246.77349975386386, 125.37888628066142, 328.32106978074637, 428.035752792099, 848.39560400807625, 369.33081675295193, 134.35859060039161, 519.55438705467293, 270.19801076936108, 267.60546521158034, 277.95541569654398, 218.05574846595218, 343.28427440000513, 394.71219788407097, 500.51759700586064, 317.24145405198891, 356.42503077003624, 250.81758396262742, 365.42049187480143, 233.65530001441789, 271.12510621289431, 303.14124927370978, 253.85663504944372, 17.66444999874469, 7.7462343898413355, 0.056286774131801762, 0.10801330494720196, 1.130235291622729, 0.049342112979139083, 1.926793579241403, 2.0736888309411889, 0.053097279497849502, 0.2863438194948309, 0.18076167163209411, 0.055519248496243595, 9.1769945815958405, 0.056271526041291847, 6.5847276579237386, 1.8794754327947576, 0.057902583648054833, 18.901653739182613, 0.05751780651691546, 3.81279584831413, 0.16581611048037734, 7.5994142648933867, 5.9454502766607629, 0.065492658876926554, 0.065031621788573885, 6.4674282870940258, 0.29028497743774595, 9.8625921885983434, 0.049415035155315458, 222.40674732528026, 218.64641793439603, 11.080396791991006, 31.777392710460564, 15.933400958369763, 10.043813902110342, 25.681210734514387, 10.98706276326353, 23.687128580019472, 37.372067224706761, 17.780777303491138, 11.916903290621665, 186.24478868995621, 9.8665696391988345, 21.195576907541181, 13.323218619041944, 10.882741122830426, 43.893086044637009, 37.614931050691212, 20.791388792137461, 10.325739187436541, 193.18273238738152, 64.057649737763683, 13.393245538911401, 263.60114283943415, 19.759712628941628, 256.10907752594181, 21.662851438992199, 9.6112424601923525, 8.4249414921740478, 8.4562182675533428, 8.8956265576072422, 166.03688797187951, 297.1516516132873, 52.664763847777316, 2048.9633737973904, 363.92888571133324, 1279.9428168304257, 2244.0752780581297, 68.798331597589495, 83.710506623171412, 470.2989339870789, 39.401302547576513, 198.31265638804786, 185.71817472313316, 162.11093824751484, 144.30247262203181, 410.64756308898836, 397.66511542031031, 6.0306749782601612, 0.06491031245112279, 0.085064629552498217, 2.1316206854471957, 0.073897295314639358, 4.7809102217987745, 0.11676174773191755, 51.415251798529489, 0.40693081311705387, 1.7971844943267765, 24.421489591741782, 27.407914237716039, 12.393819422219519, 0.080498818555675436, 6.0200353175566885, 1.9984480289048066, 0.055734730861096531, 0.30176301373991127, 0.097017557898385065, 0.063257304766340852, 0.058884396320466582, 0.067379974098890599, 3.0210885173624997, 7.7527430469072289, 0.057196770033598653, 4.3312183305831073, 0.067846557236489968, 10.27427239780666, 0.074541544019513586, 317.77546432017687, 77.49704601102485, 72.719409599376633, 336.48998178176441, 116.10777167029866, 169.96162041516902, 275.47098374025148, 265.76520499053521, 339.89647955337216, 589.5905884308238, 200.39480654185405, 421.52430744851802, 225.52828282074799, 190.13645821703966, 205.25939502400448, 425.2492679475663, 338.31948114624583, 392.66419346129504, 269.21269733017272, 242.63010041438258, 36.672493787760509, 7.4816528718203106, 0.053980221572264224, 0.21020238201876038, 0.14745442743066742, 0.13539713185926508, 0.063948425207379159, 0.058253764303730617, 26.817502513410876, 0.074176442296316286, 0.069416567086546976, 0.07574226435745593, 0.063232236587951157, 0.06640758468208717, 0.075487313504436854, 0.075695500999338819, 11.60378403680493, 8.8955812746902332, 0.87676162985003037, 1.1788298022741179, 0.055366693310610712, 0.15901943662879892, 0.05507232094051278, 0.073231803442519339, 0.05925463773740719, 0.05641376905823961, 0.067916381701092737, 0.08994233437811204, 0.05680487214835056, 6.5619404072510017, 206.24457140848511, 204.82297364897113, 205.89809683818544, 10.093845160993723, 16.991178440786353, 25.190776981203754, 15.514987957924525, 11.043585871744492, 24.651304864194827, 181.58658726676714, 8.5522095210450519, 90.683640888399054, 486.2875858087292, 16.124275698533104, 159.90338892858702, 22.999152613432155, 29.914153724440716, 211.55483437724465, 8.0571853464711456, 229.48213958572276, 45.025294055700051, 25.317761288960643, 11.886316539369837, 148.99558033977496, 8.2133253458561235, 6.4902362515373566, 10.746163051284338, 20.764780637771263, 175.92009356287534, 82.151555365161471, 24.399122432349337, 6.6016291446181601, 15.477193580025517, 63.121123172684612, 59.076102558969644, 56.653737003247564, 66.873348118463554, 53.354203482448916, 83.171400629312899, 51.095129812677271, 517.47031310111004, 538.87400024647002, 93.231990623001991, 185.39132433447213, 50.280966185636878, 0.12189208994462473, 0.055324749013690867, 2.7412989364022851, 9.7275911884052118, 6.5744001374677774, 0.25966099128985409, 1.6719865422365612, 0.064276785682903612, 0.52932951075391921, 23.915291535501296, 0.71817494077213417, 0.058186280659486243, 0.127186084343969, 32.984818961762144, 0.073454658824320118, 2.6706595200924723, 0.058040815699685777, 0.060850093553942844, 0.057449577549591103, 0.84677184846713627, 0.078043751462144179, 0.099596861608502799, 9.0933903203143078, 0.049464036959237317, 0.056482235448948731, 0.06259020672374585, 0.053404745328137833, 0.098288779878830418, 0.05427694007409456, 0.071292661967246804, 226.58213643343899, 295.21172729113596, 406.34222126464596, 110.65740977665885, 152.93430059663655, 88.083769681753154, 265.3507846888005, 183.44729428997161, 246.68779954252074, 484.35601221451049, 469.47701334260108, 192.95224358935016, 426.20220536353281, 264.28332328262309, 229.76610260700122, 233.85402284062627, 245.15422963393442, 233.0936398335472, 204.83599384259188, 182.3664342454538, 154.73018320984704, 139.08105248628573, 13.496482453429707, 0.078729328979657509, 8.1215226331495529, 0.40696556265081613, 0.12843988151860231, 0.28729867361090416, 0.066570612517274627, 3.8052538529602171, 0.05140526157495387, 0.088616458811357726, 2.1736066435231698, 9.367782391260878, 0.066380166386479547, 3.1016470310578805, 0.049578721231300846, 8.1381649986969791, 0.1015379737597092, 0.083023750880223485, 0.053247442585201914, 0.060479291133670517, 5.0896136357135795, 104.394004930332, 2.181932043909395, 3.6992158516725619, 0.058423027784672794, 0.69408427278285245, 0.70681873881214385, 7.3739579468999841, 8.5925095494470938, 4.1517489788911348, 32.663109712865833, 18.963222790861405, 38.176707309155191, 19.037367423120969, 66.005191421438042, 8.3468018589208697, 9.8099239259367419, 6.915840858040287, 18.805303893159586, 26.158493027301791, 6.5606720470751005, 14.468363911789385, 15.047533080360079, 9.6481884462550376, 38.690079071505984, 33.456138913482164, 10.244246953232109, 4.8077914877035646, 14.86927559850573, 15.178707692066929, 10.469068734444095, 6.6908117803231626, 9.7221618881582916, 8.6605344235227193, 11.926174246954087, 5.4923727262551045, 73.201700762006894, 9.1423611053129825, 7.1350126319917511, 13.145342608390656, 32.994246190188747, 158.37883030182883, 40.588671496590955, 64.569051145038543, 165.38839954908045, 43.892989166645862, 695.4369646478782, 64.41083844150387, 26.703619996842061, 28.910836998230877, 110.37515558151003, 192.47598111226043, 200.41371990681756, 342.86499030024589, 88.355248055375384, 320.0311069805154, 147.11103203903318, 254.32935326909001, 126.22189622789341, 309.75448363989591, 563.95637213788837, 635.08725052809473, 159.48229652698853, 0.14477528070193621, 2.6393708300295216, 0.24719919845131622, 0.074528468624404431, 0.11449593469476801, 0.070878229822251435, 0.080760554128683631, 0.098846406476988738, 0.074474355770561732, 0.069539721316834016, 0.066514067224132972, 17.652085211910155, 0.1398854022421529, 0.17062512407506925, 0.068882881546544053, 2.5536082122036774, 0.060041384082520216, 0.066025106955738239, 0.071959362196280519, 0.068199130704307331, 3.9659022023142412, 0.086689072472542414, 0.13157254653058825, 0.06452009241559839, 2.7997816609884829, 0.065131084160235372, 2.4168485171101559, 0.096236344575499455, 0.068305997108856903, 0.065302794606618225, 204.32765908325149, 666.95045077338091, 372.98647230233507, 357.81971872440437, 467.28592254331176, 309.60617084409711, 243.59248032122147, 187.17715646255095, 203.30154334872211, 442.36827854788953, 377.73094776173576, 281.03095603524633, 229.92412549453073, 203.83515954076418, 263.05895574396135, 163.89275271795702, 154.75984693173828, 172.12312920005107, 0.063380080923343768, 0.073941502388557553, 8.6282003669466771, 3.2978247145921276, 0.44347144797971105, 0.069932689164426076, 0.073329755906734656, 0.089838720112860454, 0.066905924403214426, 0.062184839748689553, 1.0888912565155595, 0.074575929625245049, 0.08074667509421303, 0.077212161054170864, 13.860759786729439, 0.074928300130095896, 3.8667015477496132, 0.063684959349171302, 0.060974392279306518, 0.06928070589838338, 0.073607939990699076, 8.2414129131440585, 0.063751107262194989, 0.063570038211661198, 1.2087059435597125, 1.8880876046882127, 0.067580938656243636, 8.787539943889449, 0.072292777666844152, 11.046937566202962, 12.035486047851075, 12.028645348786609, 12.981421222021938, 39.544110977152279, 44.787710451698992, 32.073496939885068, 12.13104762160275, 15.748621746956227, 13.780135577603348, 8.9771252689711272, 79.500329904215022, 52.264131515905959, 14.966169165006606, 8.0531672551454108, 29.073560303407387, 14.374383371941047, 7.8529380710404659, 7.8988687924178, 7.1755052208721004, 13.530301238087883, 15.29177311994286, 110.17399075806657, 29.37966703593181, 41.339605158937275, 51.394972647399257, 25.419467694686752, 9.7188564817913363, 15.708428343938321, 25.635716587318278, 20.407776511622654, 19.218861438009842, 109.63264740588022, 51.183215451612035, 164.50440612345284, 27.371044419065999, 53.625886561953372, 164.95999974965829, 38.431745826518451, 54.289834312537621, 273.19552262556618, 123.69356267517975, 208.84919418821426, 93.922562872526967, 795.75964216124237, 51.683567956952139, 1445.3021903673684, 96.257257719645409, 1140.9606520696218, 148.82182634388676, 640.84900544430423, 390.06544310446463, 376.27754965019363, 75.163602685863182, 0.13292077602432767, 0.15274974544051401, 0.10843322930283722, 12.029128102657866, 4.1098094010268431, 0.096249814328514635, 1.4163870340873197, 0.046094721213138172, 0.071735933129455032, 0.049600845940241736, 0.057568380048959665, 0.83807283909552921, 0.13688112086489818, 0.56399994514844687, 0.089400600832535773, 1.6390599262924976, 1.9733562933623594, 0.052272313674959735, 0.074542282307649976, 0.057455123736758665, 0.45408294306739488, 0.053524212293999986, 0.5525129673581457, 0.056810347425312109, 0.2013347499226234, 0.20772656693224026, 0.063259080009982108, 0.05221641415838741, 166.93242413412005, 0.048704790541368399, 54.641325892029585, 390.30106088298629, 185.54487730450998, 205.87083452922712, 232.56649224773528, 108.13310967851893, 133.46593547394221, 179.62510329026875, 223.26670186086884, 320.09334363732364, 222.93643622398963, 155.38720399119219, 189.61713562410856, 227.86274767334638, 155.57708229344851, 147.98661576686001, 263.67164336565082, 224.34453013830768, 176.0468193903337, 152.38314068181347, 175.64526306702595, 0.094775962815475567, 0.049798688648799647, 0.055689157219733387, 0.064236896153769291, 0.046930982284853789, 0.050845477057547162, 1.2149623077133751, 0.090738061259654487, 0.27913830305283133, 0.12304853944952548, 48.931345032485694, 0.052059980793507071, 0.071422470510288494, 0.097128496932411476, 30.552877151727625, 7.7189671281293117, 2.3068970391474704, 9.3758871112327355, 6.7651749573681617, 1.9827076288588095, 1.258117711906023, 0.096670677449866807, 0.074088338395776929, 0.06096568521103899, 3.2512495516922058, 0.26943571574413894, 2.3869813792040206, 0.061962056177315192, 0.076454294154692806, 6.0090390081895961, 10.600223029358801, 14.626233151197953, 10.35225701822689, 15.857844134042395, 12.782225384777057, 40.619911873877584, 11.797708034247226, 6.2507682331757461, 5.8523332256406846, 68.112166635248613, 4.6489160453188028, 22.441773796867288, 4.6601781123128339, 27.599848608409932, 18.003037762110544, 5.0629846223759998, 10.551210803827404, 17.243930239070494, 11.645714944585107, 3.2003519829468394, 7.5681714641763529, 4.0667484106550198, 47.974974678367609, 3.826142548855715, 4.5412567430484057, 36.610896543313714, 5.4660415319528326, 4.5914704587900967, 23.136061194698108, 4.3268163970142552, 27.745165597423295, 19.883401558069313, 9.8708623192312164, 16.721046609768504, 12.576038613495834, 26.770201979965524, 63.826553195024843, 64.995199293181514, 28.807555128718494, 0.051320111419546309, 0.084096458069755603, 0.21874732619913556, 0.074406922466583605, 0.057620190697581855, 0.37233409274144302, 0.093340395291707581, 3.4199481796182489, 0.056534681693553766, 0.068801509655022686, 0.065868395721911485, 0.053883937616840454, 0.050158220277401203, 0.066537285079820666, 2.8914707168334282, 0.066767698188706801, 0.07446507351697515, 0.07862233933226688, 0.14334435269426235, 0.073792056565715636, 0.077538466234669826, 2.0321510265359817, 2.1969622122740655, 0.070774122507300086, 0.055589927968532502, 1.613924010606244, 0.059719193108279188, 0.084389843980005652, 0.076842448025196519, 14.540972889748568, 19.716375194376035, 116.86973952802384, 85.624557555581774, 81.714344242200994, 41.047642272005312, 75.464352165567419, 75.400238763881958, 96.499472426907559, 110.66997961209036, 51.957397561378578, 84.322544457067508, 123.58378196813398, 69.259384869574717, 59.200682945476814, 86.343734498267722, 80.088487345932535, 55.473288961068263, 70.238611763854237, 41.125758994777051, 55.084514729069816, 48.803417478978957, 72.420434695048939, 59.303750917008948, 48.327380886013451, 44.248353976421164, 49.342378103540369, 0.05303269806483113, 0.3747651904857684, 1.7841588540390325, 0.12670237399722845, 0.053129177185580752, 0.53530605675719323, 1.4299030863687652, 1.0762677710218047, 0.061560989861537817, 0.061905813094666806, 1.713624434315326, 0.68188822926209747, 0.14695829412070177, 1.5920174028445722, 0.050455709237215984, 0.094395537018139589, 0.079308983839801853, 0.070686922120725013, 4.0150018115493857, 1.4235597594575138, 0.25672346898002901, 0.07019075341814264, 0.051363883942012231, 0.097157882633268966, 0.054696235295538811, 1.6005506430803291, 1.9565315195689283, 0.43562898990768106, 0.056903937531605317, 0.61722234108168461, 54.512625868929653, 45.782343811287035, 44.934204868558012, 46.799821104915338, 19.508664875994707, 12.604086966194492, 7.5333073164306734, 12.644265602489549, 18.453874299999953, 36.624958923646318, 5.8217230786030685, 7.2521777995407266, 60.415477604436582, 8.2073019401303373, 9.9641491627091447, 4.3730929055932712, 13.272235093561656, 10.124393816802128, 5.9018816352813452, 6.3453616075422685, 37.070535184507477, 4.4676775301483245, 13.106536085647143, 4.5140112057389477, 21.681310887211534, 5.1802111154932975, 7.2180312355588176, 5.6719363989209581, 9.2270551532867433, 34.453662990400751, 8.3668930255874638, 17.763111972544493, 2.8442933069207128, 8.9082291714994017, 161.49394118285215, 32.096943385972736, 66.049308554739611, 36.358348969069937, 57.175571067476874, 32.867522140293303, 76.736139652573954, 1.1358221481795858, 0.059163831255101995, 0.13211962070985012, 0.89765226102006779, 6.9751558004619172, 34.201274991374788, 0.10756841551941644, 9.0976935084854755, 0.15244234358171221, 0.059989802291024651, 0.07283143614110997, 0.073847132304793783, 0.055032635196506148, 0.071538636414962178, 0.053272260652466548, 0.074428654060123403, 0.053740358278492717, 0.082725781180151337, 0.35093133912702112, 0.049849846890620955, 0.050636583928700615, 0.15632676996850253, 0.049670008513060547, 0.050666371528316732, 0.1102320359551001, 0.11039924935514864, 0.12547790737038436, 0.063770331939527594, 0.068041018329156211, 0.099084892245392409, 53.283397959688237, 24.484860424366651, 16.76881307251924, 60.158143280388309, 37.574570335532968, 43.286496308076153, 38.869889148224878, 45.884243926444356, 36.836874190815045, 91.444371957401273, 90.150357087404245, 39.658255288269139, 19.474625995217483, 44.188801477825827, 45.502082372915723, 49.293316886957328, 40.647553929430437, 59.794530607911142, 35.041992394686794, 32.217843359070621, 0.045013353688655479, 0.049875670945425686, 0.052581546568149021, 0.065945073212008903, 0.054234527306472852, 0.99302960737986712, 0.062253531755158679, 0.1947575770055209, 0.089806373119837524, 0.16356790040255792, 0.09425083132766382, 9.4937493759172753, 2.0120193589447934, 0.050191616177017749, 0.087867661032676833, 0.052873265623750949, 0.054906046856776788, 0.10178061028084159, 0.053894939844842241, 0.092478519233167022, 0.45703937933143535, 0.052534669139369161, 21.485527561459616, 0.073491824249822674, 0.16567125104391028, 0.77208331575007383, 0.14220375235060206, 0.82517843480729136, 40.719610944641076, 39.076730433782124, 37.186104345686658, 35.650007736547977, 17.934365858656435, 22.887502977067413, 13.961982690436656, 30.797931277807031, 20.814947226067208, 45.54699925401016, 72.431381998510957, 8.2324227326216128, 57.158528049651892, 32.273892491580987, 18.050887043203826, 18.499790249791431, 6.415068689179618, 6.142017131175578, 8.7335858558939243, 6.6819435135041463, 5.5183038536634976, 194.91510330716332, 5.5849774038474003, 7.1912454588412533, 88.079482910807386, 4.5925460237478308, 3.8208866076330157, 4.2765175807449305, 40.632088731321758, 3.1220745488890245, 3.601884305682201, 6.7458747261525644, 7.7881663239828312, 112.48780471094685, 31.414149065434412, 23.247424164759533, 13.369478866848361, 12.755935785916945, 0.09019838216236814, 0.071630199317190571, 0.046470896310494718, 0.076934537850257348, 0.057730591485721364, 0.057452851874661696, 0.053477610281552089, 0.073017001160484749, 0.067220349067592097, 0.06092364341978726, 1.5711065927268912, 0.051148684664858703, 1.1871672924672827, 0.10581102591194948, 0.057687405561818762, 0.10440386625846861, 0.077325811338079101, 0.10634262920442281, 5.6924155442187567, 0.081095471860648402, 0.074495086897776119, 0.059308287997616983, 0.044904723711915319, 0.049333793654255872, 0.12144246386096834, 0.15274960578722113, 0.054595720910092793, 0.052997356004319839, 0.04849785177177586, 0.10680533235850104, 63.871318583673983, 112.38924117217248, 47.051641085287663, 32.230594868415395, 68.960166460326789, 40.368316968817879, 51.646703342067326, 101.54045199826645, 79.264172900012383, 86.2495205695637, 55.025193511630704, 38.276458995406948, 24.033532071483791, 29.322446977980057, 28.01689028717972, 32.55135182432241, 0.12059876021246338, 0.064969717886449493, 0.047787329643883589, 1.5353541704290814, 0.052607331352680781, 1.1500151475099087, 0.051988890854415291, 0.10530216376617343, 4.3669937573246251, 0.052237176616503164, 0.057798724912862025, 0.052229725017804228, 0.049058533075280991, 1.537407825514769, 0.31901057274351813, 0.24780038039336222, 0.11631716443065794, 0.050203132633448888, 1.3295959840275953, 0.058836421126955925, 0.71042764288671634, 0.061354969084441074, 1.0377752916306988, 0.14620191514707945, 0.075732702128544799, 0.075186989828813097, 1.0522295427335429, 0.06003281566734172, 0.053191619192246679, 24.30315384308587, 29.227722151628647, 25.890148745239607, 24.677062995817717, 24.5930589689304, 11.777805383972609, 28.781110300181467, 31.294194994407665, 121.68828861886087, 19.412638307162212, 20.978938350474408, 30.110577974430353, 7.6399400398459791, 27.450314903955075, 15.842793986771062, 23.471890429763569, 12.160610588219386, 5.6988906107219695, 5.4945864563552691, 82.956316624076209, 4.5152025742454196, 6.3975820481370205, 7.6211038470586132, 4.6817274433812583, 10.45911696443126, 8.1289484241163592, 4.8527207531603906, 3.2313219535988469, 4.412343064991755, 4.1062916955567363, 35.889750915481912, 17.310674012167336, 3.3240238154352841, 3.2831761330536646, 17.185227694336657, 30.936157711420705, 24.857285233852746, 13.820311921667797, 8.2362205918498148, 51.945314092893945, 50.724417318751968, 0.060614182726717335, 0.050028151821001662, 0.12866986130256647, 0.061082941462983653, 0.052326527364553919, 0.065625383137881757, 0.056585724765370521, 1.8469051541284178, 1.6050856674260734, 0.062998375952508984, 1.0140922865505642, 0.049807711090469803, 0.075114003835548782, 0.08193044629245945, 0.11414029576550122, 0.051108421498786569, 0.1885642472510359, 0.055898657956413689, 0.059633987721065505, 0.0586348377021624, 8.3356120047582678, 0.052352818294504236, 0.076512228297431845, 0.084665765764001658, 0.076590693138675114, 0.12811693323209961, 0.083072128493704836, 0.051590538888270629, 0.052870380543568719, 0.26911530143846624, 24.354129164706649, 105.02756254820368, 24.664918849201538, 34.564766620142265, 35.625023948500797, 36.433588763478312, 39.857292077571458, 32.012444613844934, 49.236509258386107, 27.887566416181368, 44.647277755770887, 40.709586355847506, 34.855064521998436, 35.184632404073042, 32.207518475633471, 27.298952147082257, 0.096374665119261738, 0.056912840118312887, 0.33622971249948297, 0.1623349744889416, 0.9134742822392774, 0.050030819082122258, 0.054585332243814566, 0.046866462507746044, 0.050868455213845906, 0.051474348658439625, 0.0542958669466043, 0.052355859380546273, 0.25126801322010589, 0.077777293592814892, 0.093553432185839419, 0.075578530388562465, 0.052213552231660097, 0.074435968499915225, 0.066704945299353141, 0.93904466825728383, 0.09453240885537452, 0.042244238710810088, 0.045198029060639862, 0.044686056781542222, 25.504945283018468, 0.95633981189287376, 0.19234577656873447, 1.9734782259611643, 0.36512376026309129, 0.067161448380117061, 28.20977988214376, 25.586424912242478, 25.055061762097122, 12.195472429086671, 6.7718202470187601, 34.809787809756202, 10.662996571803912, 6.1796277042074772, 10.523371441007546, 10.473809348024664, 7.2172098922031864, 10.32184222493421, 8.6999205742222134, 36.384870451666927, 5.4816118988877935, 15.051823923260935, 3.4549389660158765, 5.1270405015283922, 5.0066563260658663, 14.641632845041633, 3.4779387904618879, 3.3672230212754517, 7.4387587499464214, 8.7812475945729371, 4.2988398663357534, 11.933429722925739, 2.6475355344011611, 3.5016538852863714, 5.1588915314446133, 8.4945232688934791, 25.053611584417332, 3.4023255718316947, 3.4459274592335221, 10.774153140855285, 5.2034884597007771, 13.623080262434744, 43.251611983883841, 35.725837430590708, 45.201595638962402, 24.378696978530112, 0.1787032921341152, 0.054685408185382645, 0.056290672108190998, 0.050175729552050678, 0.063006263335072629, 0.045768651892183945, 0.13028169179334648, 0.054460360391388941, 0.14006084040238903, 0.33539063431307081, 0.059688452706890209, 0.048603991808891293, 0.21284735667009372, 0.14291485325319264, 0.04410188262427521, 0.049201267206399293, 0.056473592354666889, 0.052493164496633764, 0.074688658936129013, 0.069860891620265972, 0.044582711523237131, 0.045802153457602683, 0.0435956146851069, 0.049635482502011372, 2.8998466873009563, 0.059277633430746081, 0.069829481905420529, 0.10247767984758635, 0.63210957495358489, 0.05006011945434756, 22.108902470205667, 15.520938259344325, 138.18925705348582, 16.334740315639703, 46.235354177137367, 71.689955773347606, 33.874229967212216, 34.138847740636869, 50.83453978294456, 34.357132002033374, 35.644954488046046, 17.005035438383558, 31.224957814771322, 46.926553429058607, 34.824503833883952, 32.487001307971866, 30.898381236451307, 27.53616212639637, 27.707377803948088, 45.218030109757457, 28.421188669284138, 29.029767882955493, 27.612707268809121, 37.139314432866911, 32.622143968826308, 30.693912470186895, 0.059495968089263468, 0.049739290265331339, 0.046554810227592482, 0.063500160751506732, 2.5860512173113821, 0.046709184409728773, 0.044803178564833353, 2.6688563141376296, 0.051941544684575257, 4.1766127951662453, 1.8744982651298598, 0.049550429828807044, 0.087863768690544991, 0.056493107126165343, 0.047671669634535056, 0.069193379077397921, 0.055936846972872323, 3.0112827848522232, 0.073015502754263814, 0.05762726532013962, 0.11648758712670772, 0.88199882804998175, 5.2295030295182414, 0.062545936238799296, 0.35192268292504647, 8.0327441103448258, 8.2741133459055138, 0.057155966384722756, 2.704917978080839, 1.585234210385069, 26.605357099946453, 25.459300235905818, 24.168582283678994, 16.643042293738954, 14.674849363642569, 7.1439938760395476, 21.431797730001314, 4.5973690459700203, 36.057225138353743, 4.9789294061120772, 29.838457190086938, 8.9744707538467967, 13.691178537868144, 64.840359551584527, 2.7623173523413458, 2.3126354776350717, 3.9509058443027247, 3.0510461985014392, 5.456683577958434, 2.2857191300349906, 11.190186230440979, 17.160393415006784, 2.2405463972615922, 4.0531016746261859, 1.9588413226621451, 2.0848168145557113, 1.4186749974023503, 1.5757736646789604, 4.9956503838235582, 3.7993958753923005, 13.881872967610047, 1.1981802387145171, 3.2704496667338381, 9.0546687325633997, 10.511766635438205, 6.3240203473541943, 15.083520465320653, 15.776117777252779, 20.370354918649173, 8.749751340344762, 176.68058239541898, 0.056033924034831921, 0.11770893886116757, 0.055203625524695939, 0.1069870082807292, 0.39179391627908483, 0.15955421084689253, 43.236039076749613, 0.089597014678488907, 0.71469584416924303, 6.1301909848174567, 0.063878198043057055, 1.3326147436936295, 0.083877502699500103, 0.077062630501431528, 0.050345202948147344, 0.19925753918098288, 0.063067967343505046, 2.7585467369802816, 0.04531019309914646, 0.046930184049901673, 0.19667929449940957, 0.046003251764884484, 0.058810731276708127, 0.074134811957566993, 0.085343993465151771, 0.087363485810140071, 0.054566009114187811, 0.057729707532377689, 0.059398491201456217, 0.056677640536184168, 8.6428476028339354, 21.990331786000016, 28.631672261606482, 24.964054676662723, 85.969263982053604, 85.676463556377456, 29.487123240222388, 52.005603440723092, 18.335744139835175, 14.068360877904899, 19.80969013500555, 26.325814886041577, 30.731857401895567, 20.607423421183576, 18.607516789795863, 20.97966469216577, 18.47200464501967, 0.06941061888189716, 0.063375816569313778, 0.14841032760575537, 0.080699242366168877, 0.058426135352747953, 0.23386551402033953, 0.045762833315485994, 1.3743074010769067, 0.092035221536924422, 0.055654199071281191, 0.092262693403511606, 0.93200065126952358, 0.042844595242631789, 0.067147798091977559, 4.1180812136189608, 0.046589507167191194, 0.095929944584895427, 0.051815744110267577, 0.082286958172109265, 0.10871387902626745, 0.04516310176862972, 0.063664470067539877, 0.094796223372263261, 0.10062175034797569, 0.11633847206071622, 10.290456386371861, 0.075228606770839604, 0.049789216958505592, 0.62315515862977022, 0.056934072878394859, 20.600362244408409, 20.531482787046112, 18.258038750442008, 17.338721441624781, 17.137440698038493, 16.538523666826624, 13.535785062812415, 11.233364075963856, 8.8734781337883, 4.2485053935172452, 3.5261225014868485, 4.7680217451928408, 14.820810672399432, 3.2727168704216525, 2.2605561292449305, 3.1373490449704442, 3.0380618577831107, 2.4204821171778597, 16.842373416130648, 2.559093365906207, 5.6700109935306306, 2.3917767378488288, 7.0490672180792799, 1.6685333215299438, 1.5544032473695422, 1.6773127399134944, 1.6111260771611178, 1.5687493853851304, 2.5034105910418671, 2.4412895422708472, 2.4123187040715117, 1.599989323656636, 1.5962353788622705, 2.426662629254289, 1.6722620010365088, 7.4935348319306971, 13.591546975714683, 7.9581058864085197, 28.923980740442854, 18.525641742502838, 22.127238180349199, 9.6458053583638463, 43.473186796062372, 0.065793650406122825, 0.043179223030999393, 0.14385985415035965, 0.0460272164321016, 0.046138121805562565, 0.044979223987350707, 0.94766393225167589, 0.045716571187560104, 0.048902899955273443, 0.047968641182282015, 0.066987451820682761, 0.061996446615951536, 0.047560775775324957, 0.056630877191548683, 0.047405854351972442, 0.15264843816739873, 0.059247654309574606, 0.16260489077294032, 0.062332975721261126, 0.045324295203744168, 0.060539883020888474, 0.057619626604711385, 0.16151605714420225, 0.045720562553313235, 0.055646151992194526, 0.14862156412572727, 0.18332623192820363, 5.4196899896908146, 0.093466149869231158, 0.037173544865846848, 4.3481487558949103, 20.576445427743174, 39.642270050140091, 14.153619261451384, 24.517578942424919, 17.135758506335314, 35.892205795446756, 26.80419344489081, 19.498730298967534, 9.788887430212089, 10.222341537287802, 14.130054664097491, 19.680656372275813, 16.220462955666186, 14.631972689724563, 18.705815301727132, 14.788874612113284, 13.199612488528649, 13.137403808668772, 13.167851458502959, 13.614515626461886, 16.324602546505748, 0.2298816181954752, 0.044338169574391254, 0.29432310016571339, 0.046007205261296112, 0.047355379120016652, 0.054730451679157396, 0.077989514364444346, 0.059919243239918325, 0.071062018529326823, 0.041565538678747467, 0.045035765208325633, 0.052441229908669292, 0.04353925612584026, 0.076042161914184295, 0.057778731594063625, 0.054992373923903264, 0.054694624226847184, 0.044153561790169715, 0.050993917295948807, 0.042930187358224313, 0.090078174552059409, 0.047469768618951455, 0.13263421275102324, 1.7329933800688353, 0.65035632288141376, 0.13175118944645128, 1.5933733513995469, 0.12873151389726514, 0.63342685177166946, 3.9894481308481193, 12.806925953277064, 14.932401861204042, 14.848432082720146, 13.917358050510554, 1.8712832033841851, 4.4532752465790004, 3.2605913004294633, 0.30073365553807074, 0.30240859652586727, 0.30073247829248451, 0.56706572075993511, 0.31362002627175212, 0.26973154409297317, 0.91512282116606858, 0.29395800356271029, 0.24986621070594892, 0.58737759679742285, 0.30230902704731782, 0.30121378603954702, 0.30284130407228427, 0.60601570294542695, 0.60376147723545071, 0.29372718565604722, 0.30705653943577527, 0.29635100922840485, 0.26740559208444536, 0.29255536726561221, 1.2419417706848102, 0.24853294686432387, 0.22858885788164987, 0.68872522652539814, 0.48766665220689803, 0.30776669186150934, 0.24879864256225448, 0.59917474886092481, 3.8318276192006944, 0.60217106152729249, 2.9653982776268069, 0.10422379636830185, 0.039355875322364738, 0.024187673416513591, 0.016351745229056972, 0.018514617111751518, 0.052929481407519727, 0.02553660333616457, 0.017174337949678861, 0.023036991158667298, 0.01494805848968145, 0.014991949864725216, 0.017897293914255211, 0.034146570893061313, 0.032155053296416658, 0.017085825006520207, 0.028043046456947031, 0.020492587763017617, 0.015778144261465583, 0.028681991070311538, 0.017766286476622421, 0.017359220986422414, 0.016637221354490632, 0.01535852922561293, 0.081272740567595328, 0.058599764760199867, 0.015905623157884911, 0.017222242927570727, 0.042090942383592136, 0.12827263224672947, 0.026209845893029552, 1.0883474641281958, 1.1433861884481999, 0.87762475359349701, 1.6705722194061154, 2.7802047075390228, 1.531468870575299, 0.58268289180984112, 0.87261244889487377, 0.53165816568198854, 2.0555738189001964, 1.5621167209118916, 1.9671639485993584, 2.7486773686286265, 0.86395533478120035, 0.89799891173574142, 2.1271914171984561, 1.579539127234509, 1.3763956686470926, 1.4643750889901848, 1.4444324711734822, 1.3279856143924127, 1.4583879502664785, 1.0863474953415764, 1.2433224527660911, 0.022883057835978455, 0.03073516356626569, 0.026622629205479354, 0.070391372164604643, 0.017712410608362223, 0.30175407890698219, 0.017323508155198265, 0.022250061844513589, 0.026826488761520551, 0.018485963792031192, 0.014933669008999513, 0.14620624106565924, 0.016442082760164064, 0.092175012166511167, 0.017812855520553127, 0.020756628313881163, 0.026707834383768964, 0.037611722849016323, 0.028744681833139961, 0.027010101308156783, 0.018342389244778337, 0.033047464136238651, 0.017122388765472726, 0.016479965157366456, 0.021021849465695217, 0.019342373781407581, 0.015587184840603381, 0.11033547248673338, 0.017304585873068518, 0.018001814332747272, 1.0826331511844289, 0.95012276131378581, 0.91748826427186991, 0.9387436891234836, 0.88648178835665747], &quot;Total&quot;: [12462, 12014, 9758, 5947, 10028, 3462, 5569, 7517, 4511, 4482, 5402, 6596, 3769, 3727, 2822, 5807, 4341, 3150, 2472, 3346, 4005, 5784, 5172, 2020, 2148, 5309, 1715, 2462, 1882, 4884, 13, 20, 14, 15, 11, 15, 28, 11, 17, 16, 11, 12, 17, 13, 52, 26, 51, 13, 13, 27, 84, 11, 37, 49, 133, 11, 30, 11, 25, 20, 431, 55, 54, 30, 262, 119, 190, 201, 147, 164, 51, 100, 559, 382, 399, 53, 686, 447, 583, 87, 264, 880, 767, 1500, 464, 876, 1501, 12014, 607, 1942, 618, 12462, 7517, 4991, 2464, 1364, 2061, 1215, 2256, 9758, 3346, 1554, 1645, 4884, 3071, 3769, 72, 25, 38, 14, 325, 421, 140, 13, 192, 11, 22, 22, 92, 190, 20, 37, 964, 16, 92, 27, 11, 303, 16, 41, 145, 41, 170, 53, 205, 224, 2018, 6596, 3156, 2510, 2886, 5784, 5807, 4341, 4482, 10028, 5402, 2495, 5309, 142, 64, 33, 54, 32, 15, 70, 144, 13, 14, 663, 11, 508, 96, 197, 45, 365, 529, 116, 24, 71, 33, 18, 139, 1476, 20, 15, 343, 28, 5172, 22, 28, 19, 13, 29, 18, 18, 13, 13, 14, 11, 13, 12, 17, 16, 12, 11, 20, 11, 21, 22, 11, 23, 18, 13, 24, 22, 18, 14, 18, 44, 76, 45, 1199, 27, 395, 530, 140, 479, 147, 112, 171, 376, 332, 515, 161, 150, 90, 775, 102, 123, 240, 1113, 126, 746, 491, 442, 1554, 582, 706, 4884, 1399, 2061, 1510, 12462, 813, 2256, 9758, 2886, 1084, 12014, 3071, 703, 1484, 7517, 6596, 26, 139, 51, 11, 29, 24, 79, 11, 185, 37, 27, 24, 13, 44, 15, 107, 11, 136, 11, 26, 88, 12, 15, 20, 17, 64, 11, 32, 18, 5784, 5309, 1717, 3917, 4482, 3346, 2510, 2043, 2495, 5807, 1265, 3303, 4341, 1592, 4991, 3156, 10028, 47, 48, 26, 55, 50, 233, 28, 14, 15, 57, 164, 29, 21, 89, 1261, 597, 74, 823, 22, 82, 249, 532, 11, 13, 22, 21, 156, 89, 52, 22, 5172, 4511, 11, 12, 14, 12, 13, 13, 11, 18, 11, 12, 13, 11, 11, 15, 12, 11, 18, 14, 18, 14, 21, 16, 34, 11, 14, 15, 11, 15, 24, 62, 179, 100, 63, 56, 52, 39, 53, 173, 33, 36, 31, 44, 31, 26, 24, 23, 23, 21, 22, 22, 23, 172, 142, 153, 706, 194, 79, 63, 42, 182, 462, 469, 1715, 197, 100, 471, 235, 296, 243, 109, 214, 374, 1157, 935, 832, 475, 618, 1263, 3727, 216, 1914, 640, 941, 754, 637, 1626, 1680, 2180, 2462, 823, 10028, 1848, 4388, 638, 555, 1162, 1149, 5172, 26, 52, 13, 445, 44, 11, 33, 15, 58, 23, 17, 75, 35, 59, 14, 26, 65, 220, 200, 24, 83, 13, 15, 37, 241, 63, 24, 11, 44, 19, 3121, 5402, 5569, 4991, 5947, 1882, 4005, 5807, 1466, 1735, 12014, 6596, 7517, 2822, 2049, 2223, 16, 62, 101, 33, 18, 163, 30, 49, 11, 122, 12, 198, 28, 15, 678, 39, 15, 13, 11, 33, 16, 11, 129, 72, 13, 21, 91, 84, 1168, 365, 5784, 2830, 17, 15, 11, 15, 11, 12, 23, 21, 16, 18, 14, 14, 21, 11, 12, 15, 11, 52, 17, 13, 17, 23, 12, 12, 66, 18, 16, 24, 12, 24, 74, 44, 23, 63, 96, 85, 421, 100, 187, 34, 123, 345, 215, 853, 1907, 368, 3150, 5569, 372, 4511, 1774, 4005, 5784, 209, 3303, 5309, 10028, 2488, 4341, 507, 349, 1261, 1567, 1042, 1037, 9758, 24, 773, 53, 19, 64, 84, 91, 1398, 139, 17, 185, 24, 98, 87, 14, 41, 25, 58, 16, 18, 12, 15, 491, 12, 112, 60, 224, 71, 70, 2020, 12014, 5402, 1185, 1090, 6596, 1847, 3917, 3276, 5172, 2287, 2128, 12462, 5807, 3727, 2728, 731, 19, 832, 19, 35, 35, 236, 15, 15, 82, 713, 63, 105, 52, 14, 51, 11, 64, 77, 24, 17, 14, 11, 183, 22, 44, 16, 13, 131, 4884, 15, 13, 15, 16, 19, 16, 14, 13, 20, 12, 49, 21, 11, 11, 17, 26, 13, 11, 16, 13, 24, 18, 19, 60, 27, 24, 19, 35, 11, 42, 101, 170, 339, 63, 209, 321, 85, 296, 282, 545, 137, 505, 561, 143, 650, 185, 496, 778, 341, 145, 2148, 1626, 599, 372, 164, 243, 1978, 1544, 417, 284, 16, 11, 46, 44, 41, 14, 11, 12, 33, 12, 33, 13, 36, 11, 17, 22, 14, 141, 154, 264, 19, 35, 29, 58, 20, 97, 218, 205, 168, 208, 694, 638, 12014, 3121, 3276, 7517, 1731, 4884, 732, 727, 4991, 1052, 6596, 10028, 1547, 1200, 3071, 5807, 5402, 5784, 5172, 2033, 4388, 12462, 5569, 1645, 33, 26, 56, 32, 55, 11, 27, 19, 387, 129, 24, 29, 41, 12, 16, 30, 22, 1209, 360, 16, 218, 14, 44, 143, 33, 18, 17, 111, 48, 33, 2495, 11, 11, 18, 20, 13, 11, 27, 28, 29, 27, 35, 21, 16, 24, 17, 39, 49, 25, 196, 11, 16, 15, 11, 24, 32, 23, 81, 11, 26, 11, 158, 1102, 278, 798, 40, 71, 175, 136, 251, 136, 673, 339, 93, 175, 822, 368, 88, 3303, 5569, 1049, 503, 451, 2020, 4511, 1215, 562, 679, 144, 41, 17, 13, 37, 29, 23, 25, 13, 40, 17, 41, 44, 13, 155, 18, 135, 15, 183, 16, 713, 1263, 83, 86, 18, 53, 28, 107, 78, 19, 2543, 1882, 9758, 1763, 5172, 2488, 2159, 1000, 1638, 12462, 5309, 1544, 10028, 4005, 4388, 2180, 1327, 2320, 5402, 5807, 3727, 67, 44, 12, 11, 19, 13, 13, 17, 20, 534, 48, 407, 343, 13, 12, 269, 125, 39, 15, 109, 371, 1039, 21, 802, 21, 32, 417, 54, 39, 6596, 15, 21, 12, 12, 15, 21, 20, 12, 61, 11, 310, 40, 21, 22, 22, 38, 132, 20, 11, 42, 28, 39, 59, 25, 16, 31, 41, 62, 15, 28, 49, 348, 93, 127, 97, 154, 462, 224, 130, 153, 492, 1978, 1007, 3769, 233, 184, 1211, 1200, 3121, 1510, 301, 11, 12, 107, 29, 68, 119, 64, 101, 70, 63, 18, 60, 14, 13, 59, 27, 216, 18, 39, 37, 94, 11, 149, 123, 14, 13, 185, 123, 57, 921, 276, 3150, 247, 586, 1774, 1412, 1086, 559, 5784, 1183, 2042, 1430, 12014, 1208, 4884, 2830, 3276, 2464, 1645, 3917, 7517, 6596, 5402, 3071, 10028, 12462, 4005, 5807, 58, 633, 139, 61, 52, 12, 18, 24, 90, 128, 11, 46, 41, 71, 88, 14, 114, 12, 112, 255, 15, 73, 92, 117, 25, 193, 130, 41, 28, 74, 9758, 12, 13, 29, 19, 12, 14, 11, 19, 13, 810, 107, 18, 15, 238, 94, 35, 40, 14, 63, 11, 17, 35, 19, 11, 17, 18, 11, 31, 14, 19, 54, 82, 145, 117, 434, 59, 1384, 95, 917, 1327, 462, 121, 146, 119, 5309, 551, 337, 4511, 451, 169, 718, 14, 190, 94, 23, 26, 12, 43, 17, 17, 17, 35, 90, 136, 42, 23, 98, 83, 17, 57, 24, 47, 31, 33, 13, 62, 1024, 40, 30, 11, 5402, 1157, 420, 1914, 3150, 10028, 2462, 503, 5569, 1882, 1848, 2159, 1444, 3727, 5947, 9758, 4005, 5807, 3303, 12462, 2822, 6596, 12014, 4388, 187, 47, 13, 72, 27, 12, 155, 51, 15, 26, 72, 12, 237, 15, 20, 12, 15, 964, 19, 122, 51, 1364, 81, 15, 27, 269, 65, 505, 12, 5172, 5784, 12, 33, 17, 11, 27, 12, 25, 39, 19, 13, 193, 11, 23, 15, 13, 49, 44, 25, 13, 230, 77, 17, 328, 25, 322, 28, 13, 12, 12, 13, 232, 437, 74, 3462, 668, 2822, 5947, 110, 150, 1466, 60, 539, 533, 492, 426, 2212, 2111, 55, 23, 24, 266, 40, 143, 127, 1367, 23, 41, 452, 777, 58, 61, 237, 406, 12, 12, 90, 19, 15, 13, 16, 156, 12, 416, 19, 698, 32, 1557, 177, 161, 2237, 355, 741, 2018, 1848, 3346, 10028, 1150, 5807, 1582, 1099, 1508, 9758, 6596, 12462, 12014, 7517, 420, 245, 11, 120, 55, 49, 19, 18, 198, 40, 13, 62, 21, 22, 53, 28, 181, 28, 42, 57, 11, 114, 12, 38, 22, 14, 38, 71, 13, 41, 2830, 2462, 4991, 11, 18, 27, 17, 13, 28, 206, 11, 110, 590, 21, 209, 31, 41, 292, 12, 321, 65, 37, 18, 214, 13, 11, 18, 34, 284, 136, 42, 12, 27, 116, 110, 110, 136, 110, 187, 105, 2472, 2543, 258, 938, 123, 36, 20, 11, 44, 1399, 64, 231, 34, 135, 525, 341, 27, 24, 378, 20, 42, 19, 15, 18, 365, 62, 68, 246, 12, 16, 15, 11, 45, 18, 52, 1398, 2212, 4482, 483, 917, 349, 2728, 1384, 2488, 10028, 12462, 1774, 12014, 4341, 3150, 3769, 7517, 6596, 5784, 5172, 3917, 2148, 504, 63, 224, 301, 43, 459, 32, 87, 17, 32, 72, 700, 43, 57, 16, 570, 49, 72, 11, 15, 88, 4388, 861, 91, 25, 69, 63, 161, 174, 29, 37, 22, 46, 25, 96, 13, 16, 13, 33, 50, 13, 29, 30, 20, 81, 71, 22, 11, 32, 33, 23, 15, 22, 20, 28, 13, 167, 22, 17, 31, 79, 380, 101, 168, 481, 113, 2472, 179, 69, 74, 365, 713, 781, 1508, 286, 1476, 572, 1168, 463, 1582, 3917, 5947, 823, 89, 90, 137, 26, 70, 45, 35, 75, 30, 23, 21, 224, 176, 101, 18, 154, 14, 18, 24, 16, 65, 41, 120, 28, 22, 18, 55, 40, 14, 16, 1479, 12462, 4482, 4341, 7517, 3769, 2407, 1575, 2043, 12014, 9758, 4884, 3156, 2728, 10028, 1942, 1592, 3346, 13, 22, 224, 122, 609, 19, 25, 25, 21, 13, 217, 27, 67, 54, 294, 18, 49, 13, 14, 21, 19, 191, 15, 14, 23, 60, 15, 37, 25, 12, 13, 13, 14, 41, 47, 35, 14, 18, 16, 11, 91, 60, 19, 11, 39, 20, 12, 12, 11, 20, 24, 166, 46, 65, 80, 40, 16, 25, 41, 33, 31, 202, 89, 326, 45, 98, 388, 68, 105, 843, 314, 621, 218, 4341, 108, 12462, 258, 9758, 515, 4482, 2407, 2237, 187, 25, 158, 110, 81, 285, 66, 425, 15, 25, 13, 24, 24, 42, 211, 75, 364, 59, 25, 63, 41, 168, 16, 617, 23, 229, 213, 14, 14, 5309, 12, 123, 3156, 1139, 1575, 2159, 450, 762, 1484, 2287, 5947, 2464, 1320, 2472, 3769, 1479, 1399, 12014, 7517, 3346, 1637, 5807, 179, 16, 13, 44, 11, 11, 818, 59, 283, 111, 376, 14, 31, 101, 840, 105, 200, 29, 217, 11, 372, 57, 26, 31, 99, 462, 114, 29, 47, 712, 12, 17, 13, 29, 25, 86, 26, 15, 14, 179, 13, 62, 14, 76, 50, 15, 32, 53, 37, 11, 26, 15, 164, 14, 17, 135, 20, 17, 88, 17, 136, 100, 44, 96, 62, 177, 669, 724, 224, 11, 31, 181, 78, 12, 89, 42, 292, 13, 26, 21, 12, 14, 17, 37, 26, 19, 29, 263, 30, 31, 115, 276, 29, 11, 14, 21, 55, 31, 309, 131, 3150, 1914, 1882, 536, 1774, 2128, 4005, 5402, 1080, 3769, 10028, 2728, 2020, 6596, 5784, 2033, 4388, 889, 3121, 1848, 12014, 5807, 1907, 1263, 4482, 11, 83, 84, 56, 12, 775, 87, 23, 24, 13, 36, 38, 36, 70, 12, 29, 44, 26, 86, 92, 289, 22, 11, 165, 20, 269, 20, 190, 20, 651, 12462, 2830, 2886, 3727, 24, 17, 11, 19, 27, 68, 12, 14, 122, 18, 22, 11, 41, 30, 20, 21, 121, 15, 45, 16, 74, 19, 27, 21, 36, 132, 33, 70, 12, 38, 745, 157, 393, 216, 439, 247, 778, 149, 18, 142, 168, 229, 1645, 64, 847, 115, 16, 40, 52, 28, 57, 11, 49, 24, 83, 302, 12, 13, 143, 13, 19, 97, 91, 124, 15, 42, 80, 638, 206, 110, 1090, 505, 663, 586, 1052, 695, 6596, 7517, 925, 154, 2043, 2510, 3769, 1731, 10028, 1200, 1399, 11, 16, 16, 23, 16, 731, 16, 272, 63, 168, 108, 3121, 818, 15, 48, 17, 15, 76, 15, 89, 564, 17, 703, 60, 84, 58, 163, 171, 12014, 12462, 5807, 9758, 19, 24, 15, 32, 23, 54, 86, 11, 76, 49, 29, 31, 11, 11, 20, 16, 13, 449, 14, 19, 244, 13, 12, 15, 129, 11, 13, 27, 31, 426, 140, 147, 72, 74, 77, 18, 11, 49, 26, 26, 24, 35, 46, 19, 202, 32, 31, 45, 17, 18, 44, 93, 448, 56, 29, 16, 12, 14, 128, 76, 17, 23, 11, 85, 1109, 3462, 718, 480, 3150, 1000, 1942, 12014, 9758, 12462, 4482, 2018, 457, 1086, 1077, 3346, 125, 34, 18, 234, 17, 138, 12, 99, 572, 13, 19, 17, 17, 20, 201, 160, 128, 14, 211, 22, 644, 33, 18, 35, 35, 45, 47, 23, 19, 746, 10028, 5947, 1320, 1879, 13, 31, 39, 154, 27, 29, 49, 13, 45, 27, 41, 23, 12, 14, 201, 13, 17, 22, 14, 31, 26, 17, 12, 16, 15, 126, 61, 13, 13, 68, 123, 104, 69, 39, 501, 679, 19, 14, 107, 32, 23, 40, 40, 209, 1023, 54, 85, 18, 104, 91, 128, 21, 249, 27, 32, 47, 724, 29, 52, 52, 100, 184, 73, 15, 21, 50, 223, 4511, 301, 1327, 1763, 2128, 3150, 1715, 10028, 1879, 12014, 12462, 5569, 6596, 5807, 2159, 46, 23, 86, 200, 71, 15, 14, 11, 16, 33, 29, 18, 535, 86, 73, 44, 21, 109, 51, 41, 38, 18, 11, 18, 1882, 12, 340, 1209, 633, 21, 9758, 2462, 1680, 16, 13, 61, 20, 12, 21, 25, 20, 30, 26, 106, 17, 47, 12, 18, 18, 50, 13, 13, 28, 37, 19, 52, 12, 17, 26, 41, 126, 19, 20, 61, 30, 108, 516, 413, 626, 235, 196, 14, 34, 25, 26, 22, 159, 58, 244, 555, 44, 18, 331, 103, 12, 18, 39, 23, 49, 71, 11, 16, 16, 25, 876, 45, 32, 171, 229, 12, 236, 151, 5947, 169, 1102, 2822, 798, 1049, 3462, 1147, 2035, 201, 1638, 5807, 2543, 1715, 1882, 1417, 1544, 12462, 2212, 2237, 1848, 9758, 5569, 5172, 24, 24, 17, 67, 113, 14, 13, 16, 20, 263, 177, 24, 150, 28, 11, 63, 30, 1501, 47, 61, 163, 64, 470, 52, 290, 330, 158, 53, 186, 481, 5784, 4511, 50, 41, 40, 25, 71, 17, 128, 20, 122, 39, 57, 283, 14, 12, 22, 18, 32, 14, 66, 111, 16, 29, 14, 16, 11, 13, 39, 31, 114, 11, 28, 82, 103, 58, 160, 184, 252, 107, 12014, 36, 77, 19, 66, 26, 118, 5402, 76, 91, 1333, 32, 191, 73, 27, 23, 200, 20, 503, 16, 14, 46, 12, 28, 47, 49, 72, 19, 14, 32, 20, 105, 541, 921, 813, 9758, 12462, 2033, 10028, 746, 539, 1417, 3769, 7517, 2128, 1327, 3071, 1828, 24, 30, 245, 59, 39, 86, 22, 350, 46, 38, 88, 993, 11, 45, 1500, 19, 47, 22, 32, 72, 16, 20, 81, 89, 106, 1037, 51, 11, 215, 18, 5309, 5807, 2320, 1427, 1587, 1510, 18, 18, 16, 13, 14, 22, 69, 16, 12, 18, 18, 15, 97, 18, 39, 18, 50, 13, 12, 13, 13, 13, 20, 20, 20, 14, 14, 21, 15, 64, 120, 69, 339, 256, 634, 190, 2020, 73, 11, 223, 23, 17, 17, 478, 19, 17, 16, 101, 16, 14, 35, 16, 265, 87, 278, 60, 19, 68, 31, 328, 16, 35, 206, 305, 1715, 168, 12, 52, 853, 3727, 532, 1907, 1042, 5569, 3769, 2287, 436, 505, 1427, 4005, 2488, 1882, 5807, 2462, 1774, 2128, 1914, 3303, 10028, 381, 21, 199, 17, 29, 34, 108, 27, 77, 14, 12, 46, 21, 106, 34, 42, 41, 15, 14, 13, 96, 11, 43, 246, 371, 123, 59, 231, 101, 1567, 2237, 12462, 12014, 9758, 12, 39, 50, 12, 13, 13, 25, 14, 15, 46, 16, 15, 36, 19, 19, 20, 39, 40, 21, 21, 22, 23, 26, 106, 23, 21, 61, 49, 30, 25, 65, 852, 72, 718, 606, 198, 57, 20, 31, 300, 98, 19, 59, 11, 13, 41, 168, 109, 32, 81, 44, 12, 86, 31, 24, 20, 19, 431, 215, 17, 21, 192, 1006, 94, 208, 237, 172, 655, 2148, 815, 101, 281, 92, 3346, 1641, 3462, 10028, 420, 521, 12462, 4482, 3769, 5402, 7517, 6596, 12014, 2018, 5947, 60, 130, 101, 266, 29, 41, 22, 56, 114, 28, 12, 695, 16, 568, 25, 58, 137, 165, 114, 89, 26, 117, 22, 19, 62, 56, 16, 854, 30, 18, 5807, 3276, 4884, 9758, 1879], &quot;logprob&quot;: [30.0, 29.0, 28.0, 27.0, 26.0, 25.0, 24.0, 23.0, 22.0, 21.0, 20.0, 19.0, 18.0, 17.0, 16.0, 15.0, 14.0, 13.0, 12.0, 11.0, 10.0, 9.0, 8.0, 7.0, 6.0, 5.0, 4.0, 3.0, 2.0, 1.0, -9.9809999999999999, -9.5533000000000001, -9.9131999999999998, -9.8460999999999999, -10.1563, -9.8461999999999996, -9.2233999999999998, -10.1592, -9.7239000000000004, -9.7858000000000001, -10.1616, -10.077299999999999, -9.7294999999999998, -10.0076, -8.6224000000000007, -9.3167000000000009, -8.6431000000000004, -10.0145, -10.0146, -9.2859999999999996, -8.1541999999999994, -10.189500000000001, -8.9771000000000001, -8.6966000000000001, -7.6981999999999999, -10.1938, -9.2139000000000006, -10.221, -9.4016000000000002, -9.6282999999999994, -6.5720999999999998, -8.6387, -8.6620000000000008, -9.2356999999999996, -7.1944999999999997, -7.9402999999999997, -7.5080999999999998, -7.4659000000000004, -7.7621000000000002, -7.6650999999999998, -8.7418999999999993, -8.1334999999999997, -6.6005000000000003, -6.9713000000000003, -6.9511000000000003, -8.7304999999999993, -6.4894999999999996, -6.8773, -6.6635, -8.3131000000000004, -7.3609, -6.3376000000000001, -6.4741, -5.9387999999999996, -6.9166999999999996, -6.4287999999999998, -6.0011000000000001, -4.3545999999999996, -6.7455999999999996, -5.8463000000000003, -6.7407000000000004, -4.4027000000000003, -4.8338999999999999, -5.1496000000000004, -5.7061000000000002, -6.1521999999999997, -5.8529999999999998, -6.2390999999999996, -5.7957999999999998, -4.7530000000000001, -5.5507999999999997, -6.1037999999999997, -6.0740999999999996, -5.3624000000000001, -5.6966000000000001, -5.5861999999999998, -11.0266, -10.4373, -10.449199999999999, -10.2357, -7.5015999999999998, -9.3614999999999995, -8.7838999999999992, -11.5579, -8.8640000000000008, -15.4991, -11.2293, -14.3795, -8.7415000000000003, -8.5299999999999994, -12.409800000000001, -14.8714, -7.3139000000000003, -11.157999999999999, -10.7029, -10.0009, -15.4815, -7.7172999999999998, -11.2105, -12.3446, -8.3629999999999995, -10.6675, -9.2154000000000007, -11.639799999999999, -9.6325000000000003, -8.8661999999999992, -5.9919000000000002, -5.3495999999999997, -5.7866999999999997, -5.9214000000000002, -5.8493000000000004, -5.4947999999999997, -5.5907, -5.7485999999999997, -5.7374999999999998, -5.4238999999999997, -5.8556999999999997, -6.0640999999999998, -5.9459, -12.468999999999999, -10.047499999999999, -11.0801, -11.0036, -15.100199999999999, -10.330500000000001, -9.5373999999999999, -11.9627, -10.4688, -14.442399999999999, -8.3110999999999997, -11.104799999999999, -7.6863000000000001, -8.9315999999999995, -7.9375, -9.9545999999999992, -8.0143000000000004, -8.5953999999999997, -8.9907000000000004, -15.402699999999999, -8.9832000000000001, -11.312200000000001, -10.501799999999999, -9.1390999999999991, -6.7699999999999996, -14.0639, -12.772500000000001, -7.5374999999999996, -11.7026, -6.0103999999999997, -9.1953999999999994, -8.9542000000000002, -9.3438999999999997, -9.7233999999999998, -8.9504000000000001, -9.4459999999999997, -9.4478000000000009, -9.7773000000000003, -9.7779000000000007, -9.7050999999999998, -9.9503000000000004, -9.7864000000000004, -9.8689999999999998, -9.5242000000000004, -9.5891000000000002, -9.8787000000000003, -9.9704999999999995, -9.3742999999999999, -9.9847999999999999, -9.3404000000000007, -9.3011999999999997, -10.0017, -9.2736000000000001, -9.5192999999999994, -9.8463999999999992, -9.2348999999999997, -9.3232999999999997, -9.5267999999999997, -9.7822999999999993, -9.5426000000000002, -8.6548999999999996, -8.1511999999999993, -8.6590000000000007, -5.5829000000000004, -9.1546000000000003, -6.6959, -6.4667000000000003, -7.6726999999999999, -6.5768000000000004, -7.6345999999999998, -7.8837000000000002, -7.5111999999999997, -6.8254999999999999, -6.9443999999999999, -6.5946999999999996, -7.5983000000000001, -7.6783999999999999, -8.1134000000000004, -6.3089000000000004, -8.0129000000000001, -7.8590999999999998, -7.3075000000000001, -6.0564, -7.8529, -6.3963000000000001, -6.7423000000000002, -6.8422000000000001, -5.8337000000000003, -6.6300999999999997, -6.4843000000000002, -4.9679000000000002, -5.9496000000000002, -5.6542000000000003, -5.9009999999999998, -4.2766999999999999, -6.3902000000000001, -5.6738999999999997, -4.5942999999999996, -5.5106999999999999, -6.2521000000000004, -4.5689000000000002, -5.5369999999999999, -6.5688000000000004, -6.0728999999999997, -4.9945000000000004, -5.1200999999999999, -15.1051, -7.9691999999999998, -14.9703, -15.000400000000001, -10.1128, -13.619999999999999, -9.7279999999999998, -13.3849, -9.0100999999999996, -10.064299999999999, -14.850199999999999, -14.744300000000001, -10.9154, -10.8461, -11.2159, -10.2256, -15.158799999999999, -9.0925999999999991, -15.1419, -10.6296, -12.036199999999999, -14.836, -9.9506999999999994, -15.109400000000001, -15.0276, -14.609999999999999, -11.473800000000001, -15.0725, -11.7752, -5.2342000000000004, -5.3129999999999997, -6.0201000000000002, -5.569, -5.5101000000000004, -5.7003000000000004, -5.8479999999999999, -5.9645999999999999, -5.9057000000000004, -5.585, -6.2107000000000001, -5.8776000000000002, -5.8273000000000001, -6.1349999999999998, -5.7945000000000002, -5.9348000000000001, -5.7206999999999999, -10.335699999999999, -9.9345999999999997, -14.1486, -10.6081, -14.8688, -9.4048999999999996, -15.1709, -12.155200000000001, -15.178900000000001, -12.229100000000001, -8.9047999999999998, -13.645, -10.456899999999999, -8.8832000000000004, -6.6878000000000002, -7.4108999999999998, -9.4687999999999999, -13.1439, -15.1106, -14.003399999999999, -8.0951000000000004, -12.955299999999999, -15.186199999999999, -15.2112, -14.5694, -11.163600000000001, -12.110099999999999, -8.1676000000000002, -12.2439, -11.4702, -5.8936000000000002, -5.9214000000000002, -9.9734999999999996, -9.8882999999999992, -9.7341999999999995, -9.8885000000000005, -9.8084000000000007, -9.8085000000000004, -9.9756, -9.4832000000000001, -9.9756999999999998, -9.8888999999999996, -9.8088999999999995, -9.9760000000000009, -9.9760000000000009, -9.6659000000000006, -9.8894000000000002, -9.9763999999999999, -9.484, -9.7354000000000003, -9.4841999999999995, -9.7355999999999998, -9.3301999999999996, -9.6021999999999998, -8.8486999999999991, -9.9772999999999996, -9.7361000000000004, -9.6671999999999993, -9.9773999999999994, -9.6672999999999991, -9.1974, -8.2483000000000004, -7.1890999999999998, -7.7736999999999998, -8.2335999999999991, -8.3520000000000003, -8.4275000000000002, -8.7126999999999999, -8.4092000000000002, -7.2389000000000001, -8.8794000000000004, -8.7933000000000003, -8.9415999999999993, -8.5951000000000004, -8.9435000000000002, -9.1176999999999992, -9.1974999999999998, -9.2401999999999997, -9.2408999999999999, -9.3310999999999993, -9.2858000000000001, -9.2860999999999994, -9.2423999999999999, -7.2523, -7.4432, -7.3757000000000001, -5.8952999999999998, -7.1637000000000004, -8.0353999999999992, -8.2683, -8.6592000000000002, -7.2530999999999999, -6.3754999999999997, -6.3703000000000003, -5.1424000000000003, -7.2054999999999998, -7.8541999999999996, -6.4066999999999998, -7.0549999999999997, -6.8503999999999996, -7.0357000000000003, -7.7777000000000003, -7.1611000000000002, -6.6814999999999998, -5.6656000000000004, -5.8658000000000001, -5.9733999999999998, -6.4809999999999999, -6.2577999999999996, -5.6387999999999998, -4.7275999999999998, -7.1877000000000004, -5.3122999999999996, -6.2552000000000003, -5.9409000000000001, -6.1429, -6.2834000000000003, -5.5387000000000004, -5.5335000000000001, -5.3324999999999996, -5.2930000000000001, -6.1264000000000003, -4.3402000000000003, -5.5643000000000002, -4.9508000000000001, -6.3384999999999998, -6.4359999999999999, -5.9337, -5.9466999999999999, -4.9555999999999996, -11.677, -14.8087, -12.0678, -8.4436999999999998, -14.3186, -15.2605, -15.024900000000001, -14.811299999999999, -10.5724, -11.1365, -15.1723, -14.908300000000001, -10.6562, -12.0877, -13.020200000000001, -15.224500000000001, -8.9675999999999991, -7.9272, -9.6873000000000005, -10.963100000000001, -10.9316, -14.928800000000001, -12.684900000000001, -10.3332, -10.902100000000001, -13.145, -10.171200000000001, -12.329599999999999, -9.3127999999999993, -14.3864, -5.3571999999999997, -5.0401999999999996, -5.0778999999999996, -5.2149000000000001, -5.1806999999999999, -5.7412999999999998, -5.3869999999999996, -5.2248000000000001, -5.8971999999999998, -5.8285, -5.1368, -5.3644999999999996, -5.3482000000000003, -5.7323000000000004, -5.8094999999999999, -5.7980999999999998, -11.7159, -9.5708000000000002, -9.8460999999999999, -10.0572, -11.3194, -8.3297000000000008, -12.8744, -13.536300000000001, -12.696199999999999, -8.0845000000000002, -15.2811, -9.0185999999999993, -11.2569, -9.6675000000000004, -6.4107000000000003, -11.117000000000001, -11.44, -10.789099999999999, -14.397600000000001, -11.975, -11.067399999999999, -11.0008, -11.660399999999999, -12.313000000000001, -12.135199999999999, -9.4631000000000007, -14.3957, -9.7728000000000002, -8.6503999999999994, -9.7196999999999996, -5.7629999999999999, -5.8529, -8.8483999999999998, -8.9743999999999993, -9.2865000000000002, -8.9795999999999996, -9.2970000000000006, -9.2466000000000008, -8.6019000000000005, -8.7173999999999996, -9.0144000000000002, -8.9300999999999995, -9.1936, -9.2228999999999992, -8.8323999999999998, -9.5223999999999993, -9.4726999999999997, -9.2695000000000007, -9.5852000000000004, -8.0319000000000003, -9.1639999999999997, -9.4335000000000004, -9.1677999999999997, -8.8665000000000003, -9.5218000000000007, -9.5294000000000008, -7.8262, -9.1303999999999998, -9.2514000000000003, -8.8462999999999994, -9.5429999999999993, -8.8544999999999998, -7.7683999999999997, -8.2838999999999992, -8.9059000000000008, -7.9659000000000004, -7.5952000000000002, -7.7735000000000003, -6.4585999999999997, -7.6974999999999998, -7.1970000000000001, -8.5974000000000004, -7.5434000000000001, -6.7085999999999997, -7.1045999999999996, -6.0095999999999998, -5.4292999999999996, -6.7187000000000001, -5.0724, -4.6679000000000004, -6.7310999999999996, -4.9253999999999998, -5.6201999999999996, -5.0410000000000004, -4.7915000000000001, -7.1828000000000003, -5.2812999999999999, -4.9531000000000001, -4.5960999999999999, -5.5444000000000004, -5.2018000000000004, -6.6193999999999997, -6.8727999999999998, -6.0445000000000002, -5.9100999999999999, -6.1840000000000002, -6.1891999999999996, -5.5048000000000004, -11.3649, -7.2804000000000002, -10.0695, -10.785399999999999, -11.921200000000001, -9.4309999999999992, -13.129, -7.9579000000000004, -12.2689, -10.8592, -9.3346999999999998, -12.402799999999999, -8.7843999999999998, -10.5303, -12.289099999999999, -11.2972, -9.4375999999999998, -10.3925, -11.7677, -12.772500000000001, -14.508800000000001, -10.759499999999999, -7.8902000000000001, -13.5931, -9.8910999999999998, -10.9331, -9.5030999999999999, -8.8743999999999996, -8.9275000000000002, -5.7782999999999998, -4.6948999999999996, -5.2408999999999999, -6.1529999999999996, -6.2298999999999998, -5.2515000000000001, -5.9547999999999996, -5.5796000000000001, -5.7737999999999996, -5.6013000000000002, -5.9622000000000002, -6.0095999999999998, -5.4592000000000001, -5.7560000000000002, -5.8742999999999999, -5.9985999999999997, -7.1304999999999996, -14.5663, -11.1835, -9.7804000000000002, -12.058400000000001, -13.6896, -9.3057999999999996, -10.562799999999999, -10.349399999999999, -9.4762000000000004, -7.3189000000000002, -10.1637, -9.5541, -13.008599999999999, -10.303000000000001, -11.5787, -10.860799999999999, -8.3927999999999994, -9.7650000000000006, -9.9077000000000002, -12.7468, -10.176600000000001, -11.5456, -9.7110000000000003, -11.313599999999999, -14.087999999999999, -10.1165, -10.992599999999999, -9.1464999999999996, -5.9382999999999999, -8.6645000000000003, -8.8427000000000007, -8.7439999999999998, -8.6832999999999991, -8.5401000000000007, -8.7188999999999997, -8.8694000000000006, -8.9674999999999994, -8.5565999999999995, -9.0815000000000001, -7.7013999999999996, -8.5574999999999992, -9.2294, -9.2542000000000009, -8.8292999999999999, -8.4187999999999992, -9.1229999999999993, -9.2917000000000005, -8.9193999999999996, -9.1280000000000001, -8.5174000000000003, -8.8289000000000009, -8.7927999999999997, -7.6738999999999997, -8.4779, -8.5961999999999996, -8.8307000000000002, -8.2372999999999994, -9.4077000000000002, -8.0823999999999998, -7.2198000000000002, -6.7331000000000003, -6.1830999999999996, -7.7161999999999997, -6.6508000000000003, -6.2855999999999996, -7.4760999999999997, -6.3916000000000004, -6.4703999999999997, -5.9439000000000002, -7.1090999999999998, -6.0437000000000003, -5.9690000000000003, -7.0921000000000003, -5.8691000000000004, -6.8996000000000004, -6.1375000000000002, -5.8117999999999999, -6.4877000000000002, -7.1315999999999997, -5.1486999999999998, -5.3526999999999996, -6.0857000000000001, -6.4581, -7.0458999999999996, -6.7766000000000002, -5.3516000000000004, -5.5275999999999996, -6.4241999999999999, -6.7055999999999996, -14.085800000000001, -14.2082, -9.0991, -13.0649, -10.395, -14.2034, -14.2325, -11.433, -13.8543, -11.2797, -13.955299999999999, -14.2277, -12.167, -14.0954, -13.970000000000001, -11.41, -14.2105, -9.9789999999999992, -8.4621999999999993, -7.7083000000000004, -14.0633, -13.7021, -14.0138, -13.4046, -11.057700000000001, -9.3971, -9.3901000000000003, -10.8056, -8.4890000000000008, -8.4848999999999997, -6.1513, -6.2428999999999997, -4.5133999999999999, -5.3102999999999998, -5.2941000000000003, -4.9687999999999999, -5.7788000000000004, -5.2576999999999998, -6.2206999999999999, -6.2256, -5.2912999999999997, -6.0515999999999996, -5.2371999999999996, -5.1746999999999996, -5.9292999999999996, -6.0277000000000003, -5.7164999999999999, -5.5462999999999996, -5.5688000000000004, -5.6155999999999997, -5.6654999999999998, -5.8982999999999999, -5.7328000000000001, -5.6147999999999998, -5.7801999999999998, -5.9756999999999998, -13.1014, -14.0007, -9.9765999999999995, -13.978199999999999, -10.054600000000001, -14.2639, -14.036199999999999, -14.081799999999999, -8.0458999999999996, -9.8732000000000006, -8.8839000000000006, -9.3103999999999996, -10.9101, -14.113, -10.1525, -11.1625, -14.138500000000001, -7.4348999999999998, -8.3932000000000002, -10.9747, -8.5707000000000004, -14.143599999999999, -9.1473999999999993, -9.4572000000000003, -11.2218, -9.5373000000000001, -13.602600000000001, -9.2484000000000002, -10.4976, -8.7942999999999998, -5.9494999999999996, -8.9108999999999998, -8.9183000000000003, -8.4776000000000007, -8.3750999999999998, -8.8324999999999996, -9.0052000000000003, -8.1443999999999992, -8.1198999999999995, -8.0858000000000008, -8.1706000000000003, -7.9385000000000003, -8.4846000000000004, -8.7640999999999991, -8.3650000000000002, -8.7119, -7.9314999999999998, -7.7064000000000004, -8.3856000000000002, -6.3472999999999997, -9.2322000000000006, -8.859, -8.9283999999999999, -9.2396999999999991, -8.4643999999999995, -8.1806000000000001, -8.5145, -7.2558999999999996, -9.2571999999999992, -8.4064999999999994, -9.2734000000000005, -6.6101999999999999, -4.7243000000000004, -6.0766, -5.1577000000000002, -8.0046999999999997, -7.4725999999999999, -6.6623000000000001, -6.8926999999999996, -6.3598999999999997, -6.9058999999999999, -5.5467000000000004, -6.1570999999999998, -7.2572999999999999, -6.7626999999999997, -5.5350999999999999, -6.1961000000000004, -7.3476999999999997, -4.5204000000000004, -4.1536, -5.5300000000000002, -6.0964999999999998, -6.2130999999999998, -5.2016999999999998, -4.6707000000000001, -5.5881999999999996, -6.1333000000000002, -6.0533000000000001, -9.1827000000000005, -10.5947, -14.1425, -10.8742, -9.0068999999999999, -13.970800000000001, -14.1755, -14.0871, -13.7437, -9.9289000000000005, -14.194800000000001, -10.341100000000001, -10.5449, -14.184799999999999, -10.065, -14.1968, -10.2385, -14.1259, -10.4376, -14.1791, -8.5447000000000006, -7.6558000000000002, -9.9513999999999996, -10.3131, -14.1495, -11.8125, -10.495900000000001, -10.306699999999999, -11.257, -11.099399999999999, -5.2495000000000003, -5.4492000000000003, -4.4555999999999996, -5.5171000000000001, -4.899, -5.3773999999999997, -5.4820000000000002, -5.8990999999999998, -5.7058, -4.8133999999999997, -5.2586000000000004, -5.7815000000000003, -5.1451000000000002, -5.4756999999999998, -5.4772999999999996, -5.6914999999999996, -5.8445, -5.7012, -5.5368000000000004, -5.5861000000000001, -5.7333999999999996, -10.9323, -10.8459, -14.2309, -14.2348, -14.1341, -14.241300000000001, -14.178900000000001, -10.214, -14.0908, -10.8592, -10.6035, -7.5552999999999999, -8.7784999999999993, -14.231999999999999, -14.2074, -9.5901999999999994, -11.8489, -10.3772, -14.1995, -9.5136000000000003, -7.5770999999999997, -6.8411, -14.084099999999999, -7.3472, -11.8611, -13.879899999999999, -9.7390000000000008, -9.3864000000000001, -10.1562, -5.7462999999999997, -8.4946999999999999, -8.1762999999999995, -8.7603000000000009, -8.7608999999999995, -8.6172000000000004, -8.2977000000000007, -8.3598999999999997, -8.8762000000000008, -7.2542, -8.9756999999999998, -5.6405000000000003, -7.7194000000000003, -8.3888999999999996, -8.3793000000000006, -8.3952000000000009, -7.8559999999999999, -6.6173999999999999, -8.5061, -9.1041000000000007, -7.8231000000000002, -8.2331000000000003, -7.9058999999999999, -7.4935999999999998, -8.3696999999999999, -8.8230000000000004, -8.1641999999999992, -7.8893000000000004, -7.4774000000000003, -8.9117999999999995, -8.2935999999999996, -7.7732999999999999, -5.9176000000000002, -7.1878000000000002, -6.9406999999999996, -7.2126999999999999, -6.8864000000000001, -6.0259999999999998, -6.6181000000000001, -7.0566000000000004, -6.9763000000000002, -6.1136999999999997, -5.1101000000000001, -5.6637000000000004, -4.7721, -6.7047999999999996, -6.875, -5.7188999999999997, -5.7256999999999998, -5.1287000000000003, -5.5907999999999998, -6.6132, -13.6769, -14.094799999999999, -13.7926, -8.9785000000000004, -9.5062999999999995, -8.3922000000000008, -9.2545999999999999, -8.4553999999999991, -13.5838, -13.841200000000001, -14.0533, -12.9506, -14.070600000000001, -14.022600000000001, -10.5282, -12.9596, -8.1227, -14.081899999999999, -13.888500000000001, -11.1286, -9.0488999999999997, -14.098599999999999, -9.6334999999999997, -11.5014, -9.9084000000000003, -14.0512, -7.7268999999999997, -12.785299999999999, -13.1378, -5.9446000000000003, -6.6879, -5.2403000000000004, -6.7709000000000001, -6.2979000000000003, -5.7211999999999996, -5.8666999999999998, -6.0048000000000004, -6.3460000000000001, -5.2175000000000002, -5.9855, -5.7313999999999998, -5.9038000000000004, -4.9215, -5.9871999999999996, -5.3489000000000004, -5.6017000000000001, -5.5404, -5.6999000000000004, -5.9065000000000003, -5.6325000000000003, -5.4154, -5.4675000000000002, -5.5594000000000001, -5.7694999999999999, -5.5263999999999998, -5.4816000000000003, -5.7245999999999997, -5.6855000000000002, -9.8956999999999997, -7.4882999999999997, -11.139799999999999, -9.1907999999999994, -10.5311, -14.0967, -14.075200000000001, -13.9474, -12.8766, -9.8444000000000003, -14.1401, -13.579499999999999, -13.6021, -9.7131000000000007, -13.8055, -14.0672, -9.1209000000000007, -14.1096, -9.0031999999999996, -10.523099999999999, -14.097200000000001, -8.6670999999999996, -11.4488, -12.222899999999999, -10.428900000000001, -9.0365000000000002, -10.7767, -9.7181999999999995, -9.5960000000000001, -10.4222, -5.8358999999999996, -8.7074999999999996, -8.6318000000000001, -7.8316999999999997, -8.2589000000000006, -8.7321000000000009, -8.5876000000000001, -8.8468, -8.3361999999999998, -8.7330000000000005, -4.6153000000000004, -6.6440000000000001, -8.4265000000000008, -8.6397999999999993, -5.8867000000000003, -6.8304999999999998, -7.8216999999999999, -7.6886000000000001, -8.7434999999999992, -7.2451999999999996, -9.0044000000000004, -8.5797000000000008, -7.8616999999999999, -8.5103000000000009, -9.0625999999999998, -8.6328999999999994, -8.6115999999999993, -9.1191999999999993, -8.0890000000000004, -8.8886000000000003, -8.5949000000000009, -7.5902000000000003, -7.2240000000000002, -6.7180999999999997, -6.9542000000000002, -5.7912999999999997, -7.5773000000000001, -5.0373999999999999, -7.2285000000000004, -5.5019999999999998, -5.2512999999999996, -6.0594000000000001, -7.0766, -6.9421999999999997, -7.0991, -4.3409000000000004, -5.9997999999999996, -6.3780999999999999, -4.6041999999999996, -6.2051999999999996, -6.8933999999999997, -5.9772999999999996, -10.9346, -11.311500000000001, -8.2079000000000004, -9.5496999999999996, -10.359500000000001, -12.6767, -13.0001, -13.427, -14.045199999999999, -11.721399999999999, -10.069100000000001, -10.3423, -12.389200000000001, -11.5351, -8.9982000000000006, -9.8500999999999994, -12.162699999999999, -11.948600000000001, -9.5458999999999996, -10.4832, -9.8513000000000002, -12.9086, -13.707599999999999, -13.445, -8.6254000000000008, -9.0408000000000008, -13.721299999999999, -9.1745999999999999, -13.815200000000001, -4.7236000000000002, -5.7008999999999999, -6.3295000000000003, -5.4074999999999998, -5.1055999999999999, -4.4309000000000003, -5.2756999999999996, -6.2607999999999997, -4.9116, -5.5762999999999998, -5.5914999999999999, -5.5244, -5.7819000000000003, -5.3570000000000002, -5.1490999999999998, -4.9386000000000001, -5.4097, -5.2873000000000001, -5.6177999999999999, -5.2537000000000003, -5.6875, -5.5560999999999998, -5.4527000000000001, -5.6393000000000004, -8.2955000000000005, -9.0671999999999997, -14.0006, -13.3756, -11.0396, -14.042999999999999, -10.5372, -10.418900000000001, -14.0008, -12.3779, -12.8797, -14.0291, -8.9405999999999999, -13.968, -9.2517999999999994, -10.501099999999999, -13.983700000000001, -8.2348999999999997, -13.955, -9.8204999999999991, -12.9558, -9.1264000000000003, -9.3879000000000001, -13.829800000000001, -13.8215, -9.3012999999999995, -12.380800000000001, -8.8786000000000005, -14.055999999999999, -5.766, -5.7709000000000001, -8.5707000000000004, -7.5606999999999998, -8.2276000000000007, -8.6631999999999998, -7.7689000000000004, -8.5800999999999998, -7.8475000000000001, -7.4040999999999997, -8.1244999999999994, -8.5046999999999997, -5.8167999999999997, -8.6830999999999996, -7.9604999999999997, -8.4062000000000001, -8.6044999999999998, -7.2797999999999998, -7.4066999999999998, -7.9852999999999996, -8.6610999999999994, -5.7988, -6.8944000000000001, -8.4303000000000008, -5.4798999999999998, -8.0543999999999993, -5.5087000000000002, -7.9603000000000002, -8.7533999999999992, -8.8609000000000009, -8.8628999999999998, -8.8030000000000008, -5.9714999999999998, -5.3956, -7.1131000000000002, -3.4704000000000002, -5.2111000000000001, -3.9643000000000002, -3.3887999999999998, -6.8539000000000003, -6.6620999999999997, -4.9869000000000003, -7.3902000000000001, -5.7946999999999997, -5.8894000000000002, -6.0237999999999996, -6.1417999999999999, -5.1083999999999996, -5.1512000000000002, -9.3346999999999998, -13.818300000000001, -13.603, -10.3607, -13.7239, -9.5871999999999993, -13.286799999999999, -7.1904000000000003, -12.017799999999999, -10.5616, -7.9547999999999996, -7.8489000000000004, -8.6157000000000004, -13.606299999999999, -9.3567999999999998, -10.4739, -13.936299999999999, -12.3093, -13.457000000000001, -13.8764, -13.9443, -13.771599999999999, -9.9444999999999997, -9.0602, -13.8873, -9.6583000000000006, -13.84, -8.8111999999999995, -13.654500000000001, -5.367, -6.7477, -6.8121999999999998, -5.3310000000000004, -6.3624999999999998, -5.9789000000000003, -5.5072999999999999, -5.5758999999999999, -5.2973999999999997, -4.7724000000000002, -5.8244999999999996, -5.0971000000000002, -5.6822999999999997, -5.8929999999999998, -5.7656999999999998, -5.0791000000000004, -5.3121999999999998, -5.1593, -5.5488999999999997, -5.6439000000000004, -7.5364000000000004, -9.1403999999999996, -14.002800000000001, -12.7044, -13.039400000000001, -13.1243, -13.884, -13.963200000000001, -7.8441000000000001, -13.702400000000001, -13.797599999999999, -13.7037, -13.9146, -13.844200000000001, -13.6791, -13.675599999999999, -8.6857000000000006, -8.9346999999999994, -11.260899999999999, -10.9475, -13.9666, -12.9712, -13.955299999999999, -13.770099999999999, -13.9057, -13.9361, -13.7994, -13.5153, -13.958500000000001, -9.2431000000000001, -5.8131000000000004, -5.8428000000000004, -5.8300999999999998, -8.3178999999999998, -7.8285, -7.4520999999999997, -7.9183000000000003, -8.2461000000000002, -7.4800000000000004, -5.5098000000000003, -8.4898000000000007, -6.1970000000000001, -4.5279999999999996, -7.8789999999999996, -5.6349999999999998, -7.5461999999999998, -7.2981999999999996, -5.3498999999999999, -8.5508000000000006, -5.2712000000000003, -6.8963999999999999, -7.4641999999999999, -8.1887000000000008, -5.7142999999999997, -8.5557999999999996, -8.7628000000000004, -8.2716999999999992, -7.6462000000000003, -5.5270999999999999, -6.2873000000000001, -7.4800000000000004, -8.7438000000000002, -7.9431000000000003, -6.5720999999999998, -6.6506999999999996, -6.6726000000000001, -6.4912999999999998, -6.7233999999999998, -6.2896999999999998, -6.7801999999999998, -4.4076000000000004, -4.4005999999999998, -6.1430999999999996, -5.4585999999999997, -6.7908999999999997, -12.7933, -13.585000000000001, -9.6172000000000004, -8.4336000000000002, -8.7908000000000008, -11.992800000000001, -10.182399999999999, -13.430899999999999, -11.352600000000001, -7.5377000000000001, -11.046900000000001, -13.520300000000001, -12.7622, -7.1905000000000001, -13.266999999999999, -9.6820000000000004, -13.550000000000001, -13.4747, -13.554600000000001, -10.8635, -13.2842, -13.028700000000001, -8.4888999999999992, -13.638299999999999, -13.523099999999999, -13.428100000000001, -13.613099999999999, -12.9963, -13.5998, -13.4034, -5.2784000000000004, -5.0045999999999999, -4.6872999999999996, -6.0, -5.6753999999999998, -6.2069000000000001, -5.1238000000000001, -5.4964000000000004, -5.2012, -4.5350999999999999, -4.5468000000000002, -5.4439000000000002, -4.6557000000000004, -5.1216999999999997, -5.2713999999999999, -5.2427999999999999, -5.1997, -5.2508999999999997, -5.3799000000000001, -5.5082000000000004, -5.6288, -5.7633000000000001, -8.0982000000000003, -13.2408, -8.5709999999999997, -11.577999999999999, -12.7385, -11.947100000000001, -13.4009, -9.3650000000000002, -13.6007, -13.0945, -9.8972999999999995, -8.4672999999999998, -13.414, -9.6058000000000003, -13.605700000000001, -8.6030999999999995, -12.989100000000001, -13.185600000000001, -13.549200000000001, -13.494199999999999, -9.0263000000000009, -6.0716000000000001, -9.9193999999999996, -9.3910999999999998, -13.545199999999999, -11.0984, -11.013500000000001, -8.6937999999999995, -8.5448000000000004, -9.2475000000000005, -6.9626999999999999, -7.492, -6.806, -7.5167000000000002, -6.2850000000000001, -8.3163999999999998, -8.1965000000000003, -8.5018999999999991, -7.5873999999999997, -7.2721999999999998, -8.6214999999999993, -7.8250000000000002, -7.8291000000000004, -8.2630999999999997, -6.8948, -7.0298999999999996, -8.2043999999999997, -8.9029000000000007, -7.8434999999999997, -7.8334000000000001, -8.2025000000000006, -8.6361000000000008, -8.2734000000000005, -8.3750999999999998, -8.0510000000000002, -8.8209, -6.2759999999999998, -8.3051999999999992, -8.5670000000000002, -7.9924999999999997, -7.0571999999999999, -5.5156999999999998, -6.8666, -6.4006999999999996, -5.4729999999999999, -6.8030999999999997, -4.0541, -6.4157000000000002, -7.2649999999999997, -7.2103000000000002, -5.8925000000000001, -5.3498999999999999, -5.2929000000000004, -4.7609000000000004, -6.1079999999999997, -4.8403, -5.6021999999999998, -5.0656999999999996, -5.7803000000000004, -4.8731999999999998, -4.2775999999999996, -4.1593, -5.5410000000000004, -12.550700000000001, -9.6645000000000003, -12.0617, -13.1889, -12.815899999999999, -13.2681, -13.186500000000001, -12.9773, -13.1774, -13.3094, -13.3186, -7.7737999999999996, -12.6149, -12.398, -13.289899999999999, -9.7058, -13.356400000000001, -13.3123, -13.261699999999999, -13.271800000000001, -9.2158999999999995, -13.085900000000001, -12.6854, -13.3117, -9.5404, -13.311199999999999, -9.7287999999999997, -12.954700000000001, -13.327299999999999, -13.34, -5.3201999999999998, -4.1378000000000004, -4.7150999999999996, -4.7607999999999997, -4.4968000000000004, -4.9042000000000003, -5.1388999999999996, -5.3940000000000001, -5.3129, -4.5605000000000002, -4.7058999999999997, -4.9854000000000003, -5.2076000000000002, -5.3296000000000001, -5.0876999999999999, -5.5387000000000004, -5.5842000000000001, -5.4861000000000004, -13.257199999999999, -13.2536, -8.4603000000000002, -9.4597999999999995, -11.470700000000001, -13.288600000000001, -13.2745, -12.995100000000001, -13.3256, -13.3583, -10.5793, -13.2082, -13.1332, -13.2219, -8.0030999999999999, -13.152699999999999, -9.2506000000000004, -13.341100000000001, -13.361700000000001, -13.2834, -13.1938, -8.5165000000000006, -13.283099999999999, -13.3573, -10.421099999999999, -10.0158, -13.250999999999999, -8.4201999999999995, -13.208600000000001, -8.1822999999999997, -8.1023999999999994, -8.1029999999999998, -8.0312999999999999, -6.9615, -6.8390000000000004, -7.1698000000000004, -8.1022999999999996, -7.8555999999999999, -7.9831000000000003, -8.3743999999999996, -6.2683999999999997, -6.6890999999999998, -7.9047999999999998, -8.4847000000000001, -7.2637, -7.9504000000000001, -8.4960000000000004, -8.5244, -8.6173999999999999, -8.0205000000000002, -7.8747999999999996, -5.9451000000000001, -7.2481999999999998, -6.9065000000000003, -6.7028999999999996, -7.4004000000000003, -8.3213000000000008, -7.8815999999999997, -7.3925999999999998, -7.6124000000000001, -7.6760999999999999, -5.9500000000000002, -6.7050999999999998, -5.5505000000000004, -7.3377999999999997, -6.6647999999999996, -5.5285000000000002, -6.9935, -6.6555999999999997, -5.0228000000000002, -5.8083999999999998, -5.2870999999999997, -6.0964, -3.9386999999999999, -6.6664000000000003, -3.3416999999999999, -6.0689000000000002, -3.5777000000000001, -5.593, -4.1510999999999996, -4.6452999999999998, -4.7046999999999999, -6.3445, -12.5991, -12.5206, -12.845800000000001, -8.1023999999999994, -9.2075999999999993, -12.9772, -10.2577, -13.569100000000001, -13.207700000000001, -13.593999999999999, -13.4313, -10.738799999999999, -12.6203, -11.2171, -13.0297, -10.1473, -9.9591999999999992, -13.449199999999999, -13.254, -13.4222, -11.4323, -13.540699999999999, -11.2074, -13.448, -12.2194, -12.2043, -13.3871, -13.553100000000001, -5.4995000000000003, -13.565, -6.6280999999999999, -4.6557000000000004, -5.4097, -5.2760999999999996, -5.1657000000000002, -5.9462000000000002, -5.7218, -5.4184999999999999, -5.2301000000000002, -4.8216999999999999, -5.2302, -5.5664999999999996, -5.3308999999999997, -5.1879999999999997, -5.5700000000000003, -5.5961999999999996, -5.0552000000000001, -5.2077999999999998, -5.4408000000000003, -5.5968, -5.4580000000000002, -13.041499999999999, -13.5327, -13.4436, -13.367699999999999, -13.587999999999999, -13.583, -10.414099999999999, -13.001799999999999, -11.903700000000001, -12.771100000000001, -6.7378999999999998, -13.517099999999999, -13.209, -12.911099999999999, -7.2008000000000001, -8.5716999999999999, -9.7804000000000002, -8.3992000000000004, -8.7011000000000003, -9.8670000000000009, -10.4069, -12.978899999999999, -13.1441, -13.4078, -9.4390999999999998, -11.911799999999999, -9.6943999999999999, -13.3605, -13.157999999999999, -8.8360000000000003, -7.0945999999999998, -6.8010999999999999, -7.1338999999999997, -6.7451999999999996, -6.9755000000000003, -5.8094000000000001, -7.0686, -7.6757999999999997, -7.7478999999999996, -5.2984, -7.9611000000000001, -6.3998999999999997, -7.9066999999999998, -6.2281000000000004, -6.6510999999999996, -7.8632999999999997, -7.1178999999999997, -6.6929999999999996, -7.0952999999999999, -8.3188999999999993, -7.5050999999999997, -8.0578000000000003, -5.6703000000000001, -8.1460000000000008, -7.9880000000000004, -5.9223999999999997, -7.8357999999999999, -8.0196000000000005, -6.3897000000000004, -8.0419999999999998, -6.2149000000000001, -6.54, -7.2366999999999999, -6.6856, -7.0289999999999999, -6.2531999999999996, -5.3920000000000003, -5.4016999999999999, -6.1840000000000002, -12.414099999999999, -12.022, -11.0444, -12.1381, -12.330299999999999, -10.508100000000001, -11.9237, -8.3193999999999999, -12.407, -12.2615, -12.1921, -12.364699999999999, -12.4276, -12.214499999999999, -8.4418000000000006, -12.241, -12.142799999999999, -12.058199999999999, -11.450699999999999, -12.1531, -12.081099999999999, -8.8255999999999997, -8.7408999999999999, -12.1608, -12.3588, -9.0054999999999996, -12.3047, -12.033300000000001, -12.088900000000001, -6.8803999999999998, -6.5872999999999999, -4.7896000000000001, -5.1374000000000004, -5.1581000000000001, -5.8449, -5.2248999999999999, -5.218, -4.9856999999999996, -4.8567, -5.6079999999999997, -5.1050000000000004, -4.7431999999999999, -5.3090999999999999, -5.4755000000000003, -5.0861999999999998, -5.1611000000000002, -5.5240999999999998, -5.3101000000000003, -5.8246000000000002, -5.5484999999999998, -5.6791, -5.2702999999999998, -5.4665999999999997, -5.6910999999999996, -5.8009000000000004, -5.6379000000000001, -12.421099999999999, -10.5093, -8.9818999999999996, -11.6128, -12.438599999999999, -10.1485, -9.1768999999999998, -9.4822000000000006, -12.295199999999999, -12.267200000000001, -8.9573, -9.9454999999999991, -11.4544, -9.0624000000000002, -12.4536, -11.9116, -12.0777, -12.155900000000001, -8.1557999999999993, -9.2060999999999993, -10.9269, -12.2232, -12.448399999999999, -11.830299999999999, -12.3804, -9.0465, -8.8367000000000004, -10.4063, -12.3544, -10.0337, -5.5422000000000002, -5.7266000000000004, -5.7382999999999997, -5.7355999999999998, -6.1794000000000002, -6.5915999999999997, -7.0885999999999996, -6.5957999999999997, -6.2538999999999998, -5.5655999999999999, -7.3108000000000004, -7.1567999999999996, -5.0820999999999996, -7.0293000000000001, -6.8335999999999997, -7.6307, -6.5530999999999997, -6.867, -7.3041999999999998, -7.2657999999999996, -5.5316000000000001, -7.6262999999999996, -6.5510999999999999, -7.6044, -6.0812999999999997, -7.4680999999999997, -7.1176000000000004, -7.4169999999999998, -6.9172000000000002, -5.6180000000000003, -7.0133999999999999, -6.2773000000000003, -8.0835000000000008, -6.9500000000000002, -4.0560999999999998, -5.6944999999999997, -4.9770000000000003, -5.5631000000000004, -5.1028000000000002, -5.6359000000000004, -4.8453999999999997, -9.0191999999999997, -11.920299999999999, -11.2066, -9.2842000000000002, -7.2351000000000001, -5.6218000000000004, -11.382300000000001, -6.9478999999999997, -11.0108, -11.913399999999999, -11.7341, -11.772500000000001, -12.032500000000001, -11.7705, -12.030799999999999, -11.687799999999999, -11.998200000000001, -11.6267, -10.1614, -12.1219, -12.0761, -10.9877, -12.0831, -12.076700000000001, -11.3231, -11.3317, -11.208399999999999, -11.846500000000001, -11.8241, -11.454499999999999, -5.1780999999999997, -5.9558, -6.3331999999999997, -5.0675999999999997, -5.5090000000000003, -5.3840000000000003, -5.5004, -5.3193000000000001, -5.5296000000000003, -4.6345000000000001, -4.6479999999999997, -5.4820000000000002, -6.1555999999999997, -5.3449, -5.3273000000000001, -5.2474999999999996, -5.4515000000000002, -5.0749000000000004, -5.5871000000000004, -5.6493000000000002, -12.104699999999999, -12.055300000000001, -11.9621, -11.808299999999999, -12.0792, -9.1699000000000002, -11.8713, -10.7523, -11.555899999999999, -10.9465, -11.4815, -6.9124999999999996, -8.4382000000000001, -12.0932, -11.5465, -12.046799999999999, -12.0312, -11.394600000000001, -12.0199, -11.508599999999999, -9.9321999999999999, -12.0116, -6.0590000000000002, -11.7577, -10.932399999999999, -9.3693000000000008, -11.109299999999999, -9.3432999999999993, -5.4516999999999998, -5.4808000000000003, -5.5389999999999997, -5.5720999999999998, -6.0803000000000003, -5.8470000000000004, -6.3171999999999997, -5.5602999999999998, -5.9363000000000001, -5.1718999999999999, -4.7108999999999996, -6.7977999999999996, -4.9481999999999999, -5.5174000000000003, -6.0749000000000004, -6.0335999999999999, -7.0705999999999998, -7.0742000000000003, -6.7747000000000002, -7.0148000000000001, -7.2262000000000004, -3.6909999999999998, -7.2332999999999998, -6.9656000000000002, -4.4851999999999999, -7.4188999999999998, -7.5632999999999999, -7.4264000000000001, -5.2782999999999998, -7.7751000000000001, -7.6454000000000004, -6.9866999999999999, -6.8609, -4.2630999999999997, -5.5050999999999997, -5.8287000000000004, -6.3909000000000002, -6.4093, -11.337999999999999, -11.529400000000001, -11.9244, -11.500400000000001, -11.784800000000001, -11.785, -11.793900000000001, -11.5207, -11.6252, -11.699999999999999, -8.5000999999999998, -11.8673, -8.7444000000000006, -11.147399999999999, -11.742699999999999, -11.139099999999999, -11.465199999999999, -11.1717, -7.1875, -11.4659, -11.5143, -11.7212, -11.9473, -11.9039, -11.032999999999999, -10.8058, -11.7765, -11.7906, -11.905099999999999, -11.1943, -4.8131000000000004, -4.1866000000000003, -5.1155999999999997, -5.4854000000000003, -4.7218999999999998, -5.2393000000000001, -4.9983000000000004, -4.3369999999999997, -4.5720999999999998, -4.4881000000000002, -4.9336000000000002, -5.2939999999999996, -5.7781000000000002, -5.5648999999999997, -5.6101000000000001, -5.4562999999999997, -11.0678, -11.659000000000001, -11.8765, -8.5389999999999997, -11.830299999999999, -8.7927999999999997, -11.860099999999999, -11.170299999999999, -7.4542000000000002, -11.841699999999999, -11.822100000000001, -11.870799999999999, -11.8592, -8.4796999999999993, -10.1027, -10.335000000000001, -11.122400000000001, -11.914099999999999, -8.6309000000000005, -11.7577, -9.2972000000000001, -11.712899999999999, -8.8690999999999995, -10.8581, -11.5001, -11.499700000000001, -8.8298000000000005, -11.770099999999999, -11.8497, -5.7477999999999998, -5.5896999999999997, -5.6639999999999997, -5.7340999999999998, -5.7441000000000004, -6.4874999999999998, -5.6383000000000001, -5.5469999999999997, -4.2084000000000001, -6.0075000000000003, -5.9421999999999997, -5.5537000000000001, -6.8851000000000004, -5.6740000000000004, -6.1958000000000002, -5.8297999999999996, -6.4482999999999997, -7.1101000000000001, -7.1813000000000002, -4.5431999999999997, -7.3495999999999997, -7.0841000000000003, -6.8741000000000003, -7.3695000000000004, -6.5918999999999999, -6.8296999999999999, -7.2567000000000004, -7.6798000000000002, -7.4074, -7.4935999999999998, -5.3684000000000003, -6.0982000000000003, -7.6478000000000002, -7.7125000000000004, -6.0777999999999999, -5.5141, -5.6954000000000002, -6.3030999999999997, -6.7992999999999997, -4.9817999999999998, -4.9714999999999998, -11.6755, -11.862399999999999, -10.985099999999999, -11.631600000000001, -11.8308, -11.607900000000001, -11.684699999999999, -8.2851999999999997, -8.4146000000000001, -11.6151, -8.8710000000000004, -11.8672, -11.468299999999999, -11.3742, -11.0436, -11.851699999999999, -10.571999999999999, -11.7607, -11.6753, -11.7136, -6.8034999999999997, -11.773300000000001, -11.4948, -11.348100000000001, -11.433299999999999, -10.9472, -11.3705, -11.842499999999999, -11.8154, -10.1897, -5.7198000000000002, -4.2401, -5.7012, -5.3579999999999997, -5.3266, -5.2934000000000001, -5.2134, -5.4787999999999997, -5.0114999999999998, -5.5617000000000001, -5.1020000000000003, -5.1821999999999999, -5.3472999999999997, -5.3319999999999999, -5.4250999999999996, -5.5789, -11.2258, -11.7159, -9.9801000000000002, -10.705299999999999, -8.9643999999999995, -11.8474, -11.692, -11.8698, -11.8208, -11.804600000000001, -11.7485, -11.7803, -10.2538, -11.4185, -11.2628, -11.4739, -11.860799999999999, -11.453900000000001, -11.5661, -8.9566999999999997, -11.226800000000001, -11.9556, -11.932700000000001, -11.916600000000001, -5.6704999999999997, -8.9281000000000006, -10.533099999999999, -8.2245000000000008, -9.9079999999999995, -11.6028, -5.5484999999999998, -5.6791999999999998, -5.7019000000000002, -6.4429999999999996, -6.9518000000000004, -5.4260000000000002, -6.5766999999999998, -7.0890000000000004, -6.5353000000000003, -6.5445000000000002, -6.9246999999999996, -6.5308000000000002, -6.7012999999999998, -5.3055000000000003, -7.1775000000000002, -6.2099000000000002, -7.6329000000000002, -7.2362000000000002, -7.2397999999999998, -6.2308000000000003, -7.6356000000000002, -7.6365999999999996, -6.8861999999999997, -6.7306999999999997, -7.4203999999999999, -6.4215999999999998, -7.8978000000000002, -7.6090999999999998, -7.2138999999999998, -6.8341000000000003, -5.7156000000000002, -7.6200999999999999, -7.6063000000000001, -6.5251000000000001, -7.2347999999999999, -6.2689000000000004, -5.1299999999999999, -5.3148, -5.0628000000000002, -5.7598000000000003, -10.6213, -11.7654, -11.733599999999999, -11.808299999999999, -11.6646, -11.8513, -10.955299999999999, -11.7349, -10.860300000000001, -10.013999999999999, -11.645099999999999, -11.813000000000001, -10.4445, -10.7819, -11.916700000000001, -11.838900000000001, -11.7517, -11.8415, -11.540900000000001, -11.5512, -11.91, -11.9145, -11.910600000000001, -11.838699999999999, -7.8205, -11.726699999999999, -11.499000000000001, -11.1595, -9.3340999999999994, -11.7903, -5.8265000000000002, -6.1349, -3.9205000000000001, -6.0701000000000001, -5.0148999999999999, -4.5907999999999998, -5.3441000000000001, -5.3346999999999998, -4.9112, -5.3558000000000003, -5.3015999999999996, -6.1158999999999999, -5.4282000000000004, -5.0366, -5.3178000000000001, -5.452, -5.4664999999999999, -5.5719000000000003, -5.5636000000000001, -5.0651000000000002, -5.5232999999999999, -5.5255000000000001, -5.5845000000000002, -5.2614000000000001, -5.4013999999999998, -5.4682000000000004, -11.706300000000001, -11.8619, -11.857799999999999, -11.5969, -7.9650999999999996, -11.864100000000001, -11.949199999999999, -7.8981000000000003, -11.7636, -7.4745999999999997, -8.2589000000000006, -11.821300000000001, -11.273400000000001, -11.747999999999999, -11.882099999999999, -11.571199999999999, -11.7334, -7.782, -11.460800000000001, -11.714700000000001, -10.994899999999999, -8.9558, -7.2450999999999999, -11.6112, -9.9481000000000002, -6.8251999999999997, -6.7404000000000002, -11.7173, -7.9029999999999996, -8.4192, -5.5991, -5.6451000000000002, -5.6927000000000003, -6.0480999999999998, -6.1688000000000001, -6.8162000000000003, -5.7850000000000001, -7.2850000000000001, -5.2704000000000004, -7.2072000000000003, -5.4542999999999999, -6.6101999999999999, -6.2492999999999999, -4.6622000000000003, -7.7126999999999999, -7.9314, -7.4044999999999996, -7.6471, -7.0975000000000001, -7.9257999999999997, -6.3813000000000004, -5.9344999999999999, -7.9108000000000001, -7.3550000000000004, -8.1058000000000003, -7.9736000000000002, -8.4266000000000005, -8.2844999999999995, -7.2093999999999996, -7.4554999999999998, -6.1737000000000002, -8.5225000000000009, -7.6055999999999999, -6.5933000000000002, -6.3971, -6.9614000000000003, -6.0781000000000001, -6.0128000000000004, -5.7735000000000003, -6.6153000000000004, -3.6078999999999999, -11.6915, -10.9091, -11.6211, -11.017300000000001, -9.7136999999999993, -10.629, -5.0259999999999998, -11.1808, -9.0945, -6.9558999999999997, -11.477600000000001, -8.4931000000000001, -11.2437, -11.306800000000001, -11.6875, -10.3925, -11.496600000000001, -7.7619999999999996, -11.770200000000001, -11.800700000000001, -10.3674, -11.7689, -11.5665, -11.3439, -11.248100000000001, -11.2318, -11.6471, -11.589399999999999, -11.5534, -11.563700000000001, -6.6406000000000001, -5.7000000000000002, -5.4160000000000004, -5.5572999999999997, -4.3155999999999999, -4.3194999999999997, -5.3856000000000002, -4.8383000000000003, -5.8543000000000003, -6.0784000000000002, -5.7946999999999997, -5.4985999999999997, -5.3479999999999999, -5.7446999999999999, -5.8587999999999996, -5.7186000000000003, -5.8581000000000003, -11.3918, -11.5047, -10.698499999999999, -11.2506, -11.559900000000001, -10.1991, -11.814, -8.4212000000000007, -11.1569, -11.6851, -11.1646, -8.8399000000000001, -11.838200000000001, -11.4518, -7.3742999999999999, -11.823600000000001, -11.084, -11.7561, -11.235099999999999, -10.9946, -11.7925, -11.4903, -11.068899999999999, -11.064500000000001, -10.911899999999999, -6.4259000000000004, -11.337400000000001, -11.7639, -9.2457999999999991, -11.623799999999999, -5.7441000000000004, -5.7568000000000001, -5.8574999999999999, -5.9238, -5.9208999999999996, -5.9427000000000003, -5.8474000000000004, -5.9751000000000003, -6.2380000000000004, -6.9170999999999996, -7.0799000000000003, -6.7511999999999999, -5.6914999999999996, -7.1557000000000004, -7.5442999999999998, -7.1981000000000002, -7.2225000000000001, -7.4568000000000003, -5.6037999999999997, -7.3841999999999999, -6.6580000000000004, -7.4347000000000003, -6.4458000000000002, -7.8014000000000001, -7.8973000000000004, -7.8228999999999997, -7.8284000000000002, -7.8331, -7.4240000000000004, -7.4527000000000001, -7.4676, -7.8304999999999998, -7.8597000000000001, -7.4743000000000004, -7.8200000000000003, -6.4023000000000003, -5.7958999999999996, -6.3330000000000002, -4.9871999999999996, -5.4667000000000003, -5.2972000000000001, -6.0911999999999997, -4.5891999999999999, -11.0372, -11.4621, -10.278600000000001, -11.3849, -11.411199999999999, -11.384499999999999, -8.3866999999999994, -11.4077, -11.365500000000001, -11.3301, -11.053000000000001, -11.0962, -11.3726, -11.183999999999999, -11.402699999999999, -10.236499999999999, -11.149800000000001, -10.162599999999999, -11.128399999999999, -11.3935, -11.114699999999999, -11.3088, -10.0907, -11.3843, -11.177300000000001, -10.259399999999999, -10.050800000000001, -6.7118000000000002, -10.681900000000001, -11.482200000000001, -6.9397000000000002, -5.3334000000000001, -4.7064000000000004, -5.7347000000000001, -5.1745999999999999, -5.5164999999999997, -4.7747999999999999, -5.056, -5.3959000000000001, -6.0781000000000001, -6.0335000000000001, -5.7039, -5.3804999999999996, -5.5701000000000001, -5.6829999999999998, -5.4253, -5.6843000000000004, -5.7732000000000001, -5.7702999999999998, -5.8144999999999998, -5.7222, -5.5724, -9.8076000000000008, -11.4384, -9.6024999999999991, -11.391, -11.3347, -11.2056, -10.8667, -11.2301, -10.9427, -11.445499999999999, -11.442, -11.2507, -11.3751, -10.896000000000001, -11.1568, -11.250299999999999, -11.230600000000001, -11.4472, -11.2532, -11.451599999999999, -10.750500000000001, -11.3431, -10.3941, -7.7990000000000004, -8.7779000000000007, -10.404299999999999, -7.8564999999999996, -10.396800000000001, -8.8523999999999994, -6.9694000000000003, -5.8128000000000002, -5.6420000000000003, -5.6597999999999997, -5.7119, -5.6867000000000001, -4.7907999999999999, -5.0199999999999996, -7.2411000000000003, -7.2450000000000001, -7.2557999999999998, -6.6250999999999998, -7.2530999999999999, -7.3067000000000002, -6.1893000000000002, -7.2587999999999999, -7.3830999999999998, -6.6013000000000002, -7.2470999999999997, -7.2790999999999997, -7.2392000000000003, -6.5949999999999998, -6.5719000000000003, -7.2382, -7.2736000000000001, -7.2519, -7.3470000000000004, -7.2485999999999997, -5.8575999999999997, -7.4042000000000003, -7.4981, -6.4715999999999996, -6.7028999999999996, -7.2309999999999999, -7.4151999999999996, -6.5747, -4.7386999999999997, -6.5834000000000001, -4.9901, -8.3222000000000005, -9.3146000000000004, -9.7688000000000006, -10.1249, -10.0083, -8.9939, -9.6816999999999993, -10.0746, -9.8244000000000007, -10.220599999999999, -10.1713, -10.076499999999999, -9.4182000000000006, -9.5142000000000007, -10.049300000000001, -9.6014999999999997, -9.9293999999999993, -10.1769, -9.5800999999999998, -10.052300000000001, -10.078799999999999, -10.176299999999999, -10.1403, -8.6379000000000001, -8.8911999999999995, -10.1715, -10.0594, -9.2242999999999995, -8.1105999999999998, -9.6775000000000002, -5.9725000000000001, -5.9294000000000002, -6.1938000000000004, -5.5350999999999999, -5.0330000000000004, -5.6388999999999996, -6.5848000000000004, -6.2084999999999999, -6.6505999999999998, -5.3288000000000002, -5.6075999999999997, -5.3422000000000001, -5.0639000000000003, -6.2079000000000004, -6.157, -5.3007999999999997, -5.5945, -5.7351000000000001, -5.6966999999999999, -5.6909999999999998, -5.7758000000000003, -5.6904000000000003, -5.9661999999999997, -5.8102999999999998, -9.7645999999999997, -9.5250000000000004, -9.6346000000000007, -8.6944999999999997, -10.0623, -7.2435999999999998, -10.139099999999999, -9.8617000000000008, -9.6370000000000005, -10.066700000000001, -10.200799999999999, -7.9596999999999998, -10.132199999999999, -8.4413, -10.069100000000001, -9.9254999999999995, -9.6663999999999994, -9.3232999999999997, -9.5716000000000001, -9.6522000000000006, -10.017899999999999, -9.4481999999999999, -10.1052, -10.1599, -9.9529999999999994, -10.010999999999999, -10.143000000000001, -8.2575000000000003, -10.095800000000001, -9.9954000000000001, -5.9847999999999999, -6.1074000000000002, -6.125, -6.1182999999999996, -6.1772999999999998]}};

function LDAvis_load_lib(url, callback){
  var s = document.createElement(&apos;script&apos;);
  s.src = url;
  s.async = true;
  s.onreadystatechange = s.onload = callback;
  s.onerror = function(){console.warn(&quot;failed to load library &quot; + url);};
  document.getElementsByTagName(&quot;head&quot;)[0].appendChild(s);
}

if(typeof(LDAvis) !== &quot;undefined&quot;){
   // already loaded: just create the visualization
   !function(LDAvis){
       new LDAvis(&quot;#&quot; + &quot;ldavis_el2981044999446561546706059&quot;, ldavis_el2981044999446561546706059_data);
   }(LDAvis);
}else if(typeof define === &quot;function&quot; &amp;&amp; define.amd){
   // require.js is available: use it to load d3/LDAvis
   require.config({paths: {d3: &quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min&quot;}});
   require([&quot;d3&quot;], function(d3){
      window.d3 = d3;
      LDAvis_load_lib(&quot;https://cdn.rawgit.com/bmabey/pyLDAvis/files/ldavis.v1.0.0.js&quot;, function(){
        new LDAvis(&quot;#&quot; + &quot;ldavis_el2981044999446561546706059&quot;, ldavis_el2981044999446561546706059_data);
      });
    });
}else{
    // require.js not available: dynamically load d3 &amp; LDAvis
    LDAvis_load_lib(&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;, function(){
         LDAvis_load_lib(&quot;https://cdn.rawgit.com/bmabey/pyLDAvis/files/ldavis.v1.0.0.js&quot;, function(){
                 new LDAvis(&quot;#&quot; + &quot;ldavis_el2981044999446561546706059&quot;, ldavis_el2981044999446561546706059_data);
            })
         });
}
&lt;/script&gt;

&lt;hr /&gt;

&lt;h2 id=&quot;tracking-and-visualizing-topics-propensity-over-time&quot;&gt;Tracking and visualizing topics propensity over time&lt;/h2&gt;

&lt;p&gt;Now that we have shown how results gathered from topic modeling methods such as LDA can be visualized in a intuitive way, we can move to additional data analysis. In particular, it would be interesting to uncover the temporal variation of topics across American History. I would personally be very curious to find out whether topic modeling can reverse-engineer the major events in American History. In the next step, we produce a dataframe where each row represents a speech and  each of the 20 columns represent a topic. Each cell in the dataframe represents the probability that a given topic was assigned to a speech.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;c1&quot;&gt;# example command to print out main topics inferred in a presidential speech
&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;print&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;speeches_topics&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;get_document_topics&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;corpus&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt; &lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;[(7, 0.10493554997876908), (10, 0.011621459517891617), (15, 0.86674743636700446)]
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;c1&quot;&gt;# extract all document-topic distritbutions to dictionnary
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;document_key&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;list&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;speeches&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;index&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;document_topic&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{}&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;doc_id&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;range&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;len&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;corpus&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)):&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;docbok&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;corpus&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;doc_id&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;doc_topics&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;speeches_topics&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;get_document_topics&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;docbok&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;tmp&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[]&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;topic_id&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;topic_prob&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;doc_topics&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;tmp&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;append&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;topic_prob&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;document_topic&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;document_key&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;doc_id&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;tmp&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;c1&quot;&gt;# convert dictionnary of document-topic distritbutions to dataframe
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;DataFrame&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;from_dict&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;document_topic&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;orient&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;index&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;n&quot;&gt;president_speech&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;split&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;|&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;index&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;year_speech&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;split&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;,&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&apos;,&apos;&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;y&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;bp&quot;&gt;None&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;y&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;split&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;|&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;index&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]]&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;n&quot;&gt;topics_speech&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;topics_speech&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;president&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Series&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;president_speech&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;index&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;index&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;topics_speech&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;year&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Series&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;year_speech&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;index&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;index&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;topic_column_names&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;topic_&apos;&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;+&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;str&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;i&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;range&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)]&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;topic_column_names&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;append&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;president&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;topic_column_names&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;append&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;year&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;topics_speech&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;columns&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;topic_column_names&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;print&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;topics_speech&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;head&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;c1&quot;&gt;# topics_speech.to_csv(&apos;topics_by_speech.csv&apos;, sep=&apos;,&apos;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;                              topic_0   topic_1   topic_2   topic_3   topic_4  \
lincoln|July 4, 1861         0.000011  0.000011  0.000011  0.011112  0.000011   
buchanan|February 24, 1859   0.000033  0.000033  0.000033  0.203170  0.000033   
reagan|November 11, 1988     0.000526  0.197846  0.000526  0.000526  0.000526   
tyler|February 20, 1845      0.000114  0.000114  0.000114  0.000114  0.000114   
eisenhower|January 17, 1961  0.000063  0.000063  0.000063  0.000063  0.000063   

                              topic_5   topic_6   topic_7   topic_8   topic_9  \
lincoln|July 4, 1861         0.008504  0.000011  0.064621  0.051711  0.752269   
buchanan|February 24, 1859   0.000033  0.000033  0.002136  0.249423  0.032370   
reagan|November 11, 1988     0.453219  0.000526  0.000526  0.000526  0.000526   
tyler|February 20, 1845      0.000114  0.000114  0.014633  0.361549  0.128588   
eisenhower|January 17, 1961  0.615735  0.000063  0.000063  0.000063  0.000063   

                             ...    topic_12  topic_13  topic_14  topic_15  \
lincoln|July 4, 1861         ...    0.000011  0.000011  0.000011  0.111633   
buchanan|February 24, 1859   ...    0.000033  0.000033  0.006279  0.490955   
reagan|November 11, 1988     ...    0.101381  0.239133  0.000526  0.000526   
tyler|February 20, 1845      ...    0.000114  0.000114  0.000114  0.493404   
eisenhower|January 17, 1961  ...    0.000063  0.074416  0.000063  0.000063   

                             topic_16  topic_17  topic_18  topic_19  \
lincoln|July 4, 1861         0.000011  0.000011  0.000011  0.000011   
buchanan|February 24, 1859   0.015235  0.000033  0.000033  0.000033   
reagan|November 11, 1988     0.000526  0.000526  0.000526  0.000526   
tyler|February 20, 1845      0.000114  0.000114  0.000114  0.000114   
eisenhower|January 17, 1961  0.010800  0.000063  0.000063  0.000063   

                              president   year  
lincoln|July 4, 1861            lincoln   1861  
buchanan|February 24, 1859     buchanan   1859  
reagan|November 11, 1988         reagan   1988  
tyler|February 20, 1845           tyler   1845  
eisenhower|January 17, 1961  eisenhower   1961  

[5 rows x 22 columns]
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Finally, we can compute the normalized frequency of topics by year and plot these as a time-series using the dygraphs library.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;n&quot;&gt;columns&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;topic_&apos;&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;+&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;str&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;i&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;range&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)]&lt;/span&gt; &lt;span class=&quot;c1&quot;&gt;# define columns to process
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;DataFrame&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;topics_speech&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;groupby&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;year&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;columns&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;].&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;sum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;())&lt;/span&gt; &lt;span class=&quot;c1&quot;&gt;# group topics frequency by year
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;100&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;*&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;div&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;sum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axis&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;axis&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;c1&quot;&gt;# normalize topic frequencies by year
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;np&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;round&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;c1&quot;&gt;# round topic frequencies
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;to_csv&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;topics_by_year.csv&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sep&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;,&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;At this point, I’m going to do something that I am not very proud of and proceed to some nasty context switching. Although I played around with the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;charts&lt;/code&gt; library,  I was not satisified with the results and temporarily switched to R in order to leverage the dygraphs library. Thankfully, Jupyter notebooks have plenty of &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;magic&lt;/code&gt; that make it easy to call R from the notebook itself!&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;rpy2&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;o&quot;&gt;%&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;load_ext&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;rpy2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ipython&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-r&quot; data-lang=&quot;r&quot;&gt;&lt;span class=&quot;w&quot;&gt; 
&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%%&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;R&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;htmlwidgets&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dygraphs&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;zoo&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;library&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;xts&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;

&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;read.zoo&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;topics_by_year.csv&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sep&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;,&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;index.column&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;header&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;TRUE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;format&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;%Y&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt_large&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;which&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;apply&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;gt;=&lt;/span&gt;&lt;span class=&quot;m&quot;&gt;500&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)]&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt_large&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;$&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;others&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;apply&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt_large&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;sum&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt_large&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;&amp;lt;-&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;as.xts&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt_large&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-r&quot; data-lang=&quot;r&quot;&gt;&lt;span class=&quot;w&quot;&gt; 
&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%%&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;R&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dygraph&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dt_large&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dyAnnotation&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;1970-1-1&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;text&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;Vietnam&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dyShading&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;from&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;1961-1-1&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;to&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;1975-1-1&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;#bdbdbd&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;  &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dyShading&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;from&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;1938-1-1&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;to&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;1945-1-1&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;#bdbdbd&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;  &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dyShading&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;from&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;1914-1-1&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;to&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;1919-1-1&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;#bdbdbd&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;  &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dyShading&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;from&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;1861-1-1&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;to&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;1865-1-1&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;#bdbdbd&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;  &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dyRoller&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;rollPeriod&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;8&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dyOptions&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;stackedGraph&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;kc&quot;&gt;TRUE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dyRangeSelector&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;height&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;m&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dyLegend&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;show&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;follow&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;c1&quot;&gt;#dyLegend(width = 900) %&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dySeries&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;topic_1&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;(sailors/chili)&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dySeries&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;topic_4&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;(world/countries)&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dySeries&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;topic_6&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;(law/congress)&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dySeries&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;topic_7&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;(bank/silver/bank)&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dySeries&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;topic_10&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;(work/people/children)&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dySeries&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;topic_12&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;(peace/war)&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dySeries&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;topic_13&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;(law/constition/congress)&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dySeries&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;topic_15&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;(public)&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dySeries&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;topic_18&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;(business/economic/tax)&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;%&amp;gt;%&lt;/span&gt;&lt;span class=&quot;w&quot;&gt;
  &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;dySeries&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;others&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;w&quot;&gt; &lt;/span&gt;&lt;span class=&quot;s2&quot;&gt;&quot;(soviet/german/war)&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;center&gt;
   &lt;h4&gt;Tracking and visualizing topics propensity over time&lt;/h4&gt;
  &lt;iframe width=&quot;900&quot; height=&quot;600&quot; src=&quot;https://statofmind-blog.nyc3.digitaloceanspaces.com/images/topics_by_time.html&quot; frameborder=&quot;0&quot; allowfullscreen=&quot;allowfullscreen&quot;&gt;&lt;/iframe&gt;
&lt;/center&gt;

&lt;hr /&gt;

&lt;h2 id=&quot;clustering-individual-presidential-speeches&quot;&gt;Clustering individual presidential speeches&lt;/h2&gt;
&lt;p&gt;We can also wrangle the data a little bit more in order to visualize how each individual speeches cluster together. This time, we use document-topic distributions and apply the &lt;a href=&quot;http://lvdmaaten.github.io/tsne/&quot;&gt;t-sne dimensionality reduction&lt;/a&gt; algorithm to map all speeches into two-dimensional space. Roughly, t-sne is considered to be useful because of its property to conserve the overall topology of the data, so that neighboring (i.e. similar) speeches will hopefully be mapped into neighboring locations in two-dimensional space. Other well-known clustering techniques such as k-means or MDS would likely be just as adequate for this exercise, but I’ve had good fortune when using t-sne, so am unwisely (and perharps not very smartly) sticking to it here.&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;c1&quot;&gt;# perform T-SNE on dataframe of document-topic distritbutions
# the aim is to show a 2-D representation of presidential speeches based on their inferred topics
&lt;/span&gt;&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;sklearn&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;manifold&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;time&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;time&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;t0&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;time&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;tsne&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;manifold&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;TSNE&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;n_components&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;init&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;pca&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;random_state&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;Y&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;tsne&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fit_transform&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;t1&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;time&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;print&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;t-SNE: %.2g sec&quot;&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;%&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;t1&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;-&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;t0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;t-SNE: 13 sec
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;c1&quot;&gt;# output T-SNE 2-D representation of each speech to file
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;president_clusters&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;DataFrame&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;president_clusters&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;president_clusters&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;set_index&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;index&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;print&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;president_clusters&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;head&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;president_clusters&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;to_csv&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;speech_tsne_clusters.csv&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;sep&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;,&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;                                     0         1
lincoln|July 4, 1861         12.246211 -4.594903
buchanan|February 24, 1859   13.982249 -1.675186
reagan|November 11, 1988     -7.665759  4.714818
tyler|February 20, 1845      11.953091  1.884652
eisenhower|January 17, 1961 -13.193183 -3.790267
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;We can now leverage the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;mpld3&lt;/code&gt; library to display the t-sne clusters inline. The interactive figure below shows the 2-dimensional t-sne coordinates of all 880 presidential speeches in American history. One of the challenges here was to generate distinct colors to map the different presidents, and I don’t think I did a particularly good job at it (the figure could probably benefit from a legend too, but I opted to waste my time on adding tooltip functionnality instead!)&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;matplotlib.pyplot&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;plt&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;numpy&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;as&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;np&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;mpld3&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;colorsys&lt;/span&gt;
&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;mpld3&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;plugins&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;mpld3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;enable_notebook&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;presidents&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;split&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;|&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)[&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;president_clusters&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ix&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[:,&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]]&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;unique_presidents&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;list&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;set&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;presidents&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;N&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;len&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;unique_presidents&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;HSV_tuples&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;*&lt;/span&gt;&lt;span class=&quot;mf&quot;&gt;1.0&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;N&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mf&quot;&gt;0.7&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mf&quot;&gt;0.9&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;range&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;N&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)]&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;RGB_tuples&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;map&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;lambda&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;colorsys&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;hsv_to_rgb&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;*&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;HSV_tuples&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;n&quot;&gt;president_colors&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{}&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;p&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;enumerate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;unique_presidents&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;):&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;president_colors&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;RGB_tuples&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt; 
&lt;span class=&quot;n&quot;&gt;fig&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;ax&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;plt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;subplots&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;subplot_kw&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;dict&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axisbg&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;#EEEEEE&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;figsize&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;ax&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;grid&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;white&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;linestyle&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;solid&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;scatter&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;ax&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scatter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;president_clusters&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ix&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[:,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;],&lt;/span&gt;
                  &lt;span class=&quot;n&quot;&gt;president_clusters&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ix&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[:,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;],&lt;/span&gt;
                     &lt;span class=&quot;n&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;80&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                     &lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;presidents&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                     &lt;span class=&quot;n&quot;&gt;alpha&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mf&quot;&gt;0.3&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                  &lt;span class=&quot;n&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;president_colors&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;p&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;presidents&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;ax&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;grid&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;white&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;linestyle&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;solid&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;ax&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;set_title&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Clustering presidential speeches&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;labels&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;&amp;lt;h3&amp;gt;{president}&amp;lt;/h3&amp;gt;&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;format&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;president&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;presidents&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; 
&lt;span class=&quot;n&quot;&gt;tooltip&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;plugins&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;PointHTMLTooltip&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scatter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;labels&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;plugins&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;connect&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fig&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;tooltip&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;div id=&quot;fig_el3158243822905768379654318&quot;&gt;&lt;/div&gt;
&lt;script&gt;
function mpld3_load_lib(url, callback){
  var s = document.createElement(&apos;script&apos;);
  s.src = url;
  s.async = true;
  s.onreadystatechange = s.onload = callback;
  s.onerror = function(){console.warn(&quot;failed to load library &quot; + url);};
  document.getElementsByTagName(&quot;head&quot;)[0].appendChild(s);
}

if(typeof(mpld3) !== &quot;undefined&quot; &amp;&amp; mpld3._mpld3IsLoaded){
   // already loaded: just create the figure
   !function(mpld3){
       
    mpld3.register_plugin(&quot;htmltooltip&quot;, HtmlTooltipPlugin);
    HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
    HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
    HtmlTooltipPlugin.prototype.requiredProps = [&quot;id&quot;];
    HtmlTooltipPlugin.prototype.defaultProps = {labels:null, hoffset:0, voffset:10};
    function HtmlTooltipPlugin(fig, props){
        mpld3.Plugin.call(this, fig, props);
    };

    HtmlTooltipPlugin.prototype.draw = function(){
       var obj = mpld3.get_element(this.props.id);
       var labels = this.props.labels;
       var tooltip = d3.select(&quot;body&quot;).append(&quot;div&quot;)
                    .attr(&quot;class&quot;, &quot;mpld3-tooltip&quot;)
                    .style(&quot;position&quot;, &quot;absolute&quot;)
                    .style(&quot;z-index&quot;, &quot;10&quot;)
                    .style(&quot;visibility&quot;, &quot;hidden&quot;);

       obj.elements()
           .on(&quot;mouseover&quot;, function(d, i){
                              tooltip.html(labels[i])
                                     .style(&quot;visibility&quot;, &quot;visible&quot;);})
           .on(&quot;mousemove&quot;, function(d, i){
                    tooltip
                      .style(&quot;top&quot;, d3.event.pageY + this.props.voffset + &quot;px&quot;)
                      .style(&quot;left&quot;,d3.event.pageX + this.props.hoffset + &quot;px&quot;);
                 }.bind(this))
           .on(&quot;mouseout&quot;,  function(d, i){
                           tooltip.style(&quot;visibility&quot;, &quot;hidden&quot;);});
    };
    
       mpld3.draw_figure(&quot;fig_el3158243822905768379654318&quot;, {&quot;axes&quot;: [{&quot;xlim&quot;: [-30.0, 40.0], &quot;yscale&quot;: &quot;linear&quot;, &quot;axesbg&quot;: &quot;#EEEEEE&quot;, &quot;texts&quot;: [{&quot;v_baseline&quot;: &quot;auto&quot;, &quot;h_anchor&quot;: &quot;middle&quot;, &quot;color&quot;: &quot;#000000&quot;, &quot;text&quot;: &quot;Clustering presidential speeches&quot;, &quot;coordinates&quot;: &quot;axes&quot;, &quot;zorder&quot;: 3, &quot;alpha&quot;: 1, &quot;fontsize&quot;: 20.0, &quot;position&quot;: [0.5, 1.0089605734767024], &quot;rotation&quot;: -0.0, &quot;id&quot;: &quot;el315824324808656&quot;}], &quot;zoomable&quot;: true, &quot;images&quot;: [], &quot;xdomain&quot;: [-30.0, 40.0], &quot;ylim&quot;: [-30.0, 30.0], &quot;paths&quot;: [], &quot;sharey&quot;: [], &quot;sharex&quot;: [], &quot;axesbgalpha&quot;: null, &quot;axes&quot;: [{&quot;scale&quot;: &quot;linear&quot;, &quot;tickformat&quot;: null, &quot;grid&quot;: {&quot;color&quot;: &quot;#FFFFFF&quot;, &quot;alpha&quot;: 1.0, &quot;dasharray&quot;: &quot;10,0&quot;, &quot;gridOn&quot;: true}, &quot;fontsize&quot;: 10.0, &quot;position&quot;: &quot;bottom&quot;, &quot;nticks&quot;: 8, &quot;tickvalues&quot;: null}, {&quot;scale&quot;: &quot;linear&quot;, &quot;tickformat&quot;: null, &quot;grid&quot;: {&quot;color&quot;: &quot;#FFFFFF&quot;, &quot;alpha&quot;: 1.0, &quot;dasharray&quot;: &quot;10,0&quot;, &quot;gridOn&quot;: true}, &quot;fontsize&quot;: 10.0, &quot;position&quot;: &quot;left&quot;, &quot;nticks&quot;: 7, &quot;tickvalues&quot;: null}], &quot;lines&quot;: [], &quot;markers&quot;: [], &quot;id&quot;: &quot;el315824383404176&quot;, &quot;ydomain&quot;: [-30.0, 30.0], &quot;collections&quot;: [{&quot;paths&quot;: [[[[0.0, -0.5], [0.13260155, -0.5], [0.25978993539242673, -0.44731684579412084], [0.3535533905932738, -0.3535533905932738], [0.44731684579412084, -0.25978993539242673], [0.5, -0.13260155], [0.5, 0.0], [0.5, 0.13260155], [0.44731684579412084, 0.25978993539242673], [0.3535533905932738, 0.3535533905932738], [0.25978993539242673, 0.44731684579412084], [0.13260155, 0.5], [0.0, 0.5], [-0.13260155, 0.5], [-0.25978993539242673, 0.44731684579412084], [-0.3535533905932738, 0.3535533905932738], [-0.44731684579412084, 0.25978993539242673], [-0.5, 0.13260155], [-0.5, 0.0], [-0.5, -0.13260155], [-0.44731684579412084, -0.25978993539242673], [-0.3535533905932738, -0.3535533905932738], [-0.25978993539242673, -0.44731684579412084], [-0.13260155, -0.5], [0.0, -0.5]], [&quot;M&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;Z&quot;]]], &quot;edgecolors&quot;: [&quot;#000000&quot;], &quot;edgewidths&quot;: [1.0], &quot;offsets&quot;: &quot;data01&quot;, &quot;yindex&quot;: 1, &quot;id&quot;: &quot;el315824312537616&quot;, &quot;pathtransforms&quot;: [[9.938079899999066, 0.0, 0.0, 9.938079899999066, 0.0, 0.0]], &quot;pathcoordinates&quot;: &quot;display&quot;, &quot;offsetcoordinates&quot;: &quot;data&quot;, &quot;zorder&quot;: 1, &quot;xindex&quot;: 0, &quot;alphas&quot;: [0.3], &quot;facecolors&quot;: [&quot;#E59E44&quot;, &quot;#4480E5&quot;, &quot;#44DAE5&quot;, &quot;#7944E5&quot;, &quot;#E544CB&quot;, &quot;#E57144&quot;, &quot;#E59E44&quot;, &quot;#4497E5&quot;, &quot;#E58844&quot;, &quot;#62E544&quot;, &quot;#E57144&quot;, &quot;#44C3E5&quot;, &quot;#44E553&quot;, &quot;#E55B44&quot;, &quot;#44E5AD&quot;, &quot;#E57144&quot;, &quot;#BC44E5&quot;, &quot;#E544B4&quot;, &quot;#E5E144&quot;, &quot;#BC44E5&quot;, &quot;#446AE5&quot;, &quot;#44C3E5&quot;, &quot;#E544CB&quot;, &quot;#E54488&quot;, &quot;#E5B444&quot;, &quot;#E544CB&quot;, &quot;#E54444&quot;, &quot;#E5449E&quot;, &quot;#4C44E5&quot;, &quot;#A544E5&quot;, &quot;#BC44E5&quot;, &quot;#E54444&quot;, &quot;#44C3E5&quot;, &quot;#E544CB&quot;, &quot;#E54444&quot;, &quot;#4453E5&quot;, &quot;#44ADE5&quot;, &quot;#4480E5&quot;, &quot;#E57144&quot;, &quot;#D2E544&quot;, &quot;#4C44E5&quot;, &quot;#44E580&quot;, &quot;#44E553&quot;, &quot;#6244E5&quot;, &quot;#446AE5&quot;, &quot;#E58844&quot;, &quot;#44E580&quot;, &quot;#79E544&quot;, &quot;#44ADE5&quot;, &quot;#E5445B&quot;, &quot;#E5445B&quot;, &quot;#4497E5&quot;, &quot;#4497E5&quot;, &quot;#44E5AD&quot;, &quot;#E544B4&quot;, &quot;#4497E5&quot;, &quot;#44DAE5&quot;, &quot;#E55B44&quot;, &quot;#4C44E5&quot;, &quot;#A5E544&quot;, &quot;#D2E544&quot;, &quot;#44E56A&quot;, &quot;#E54471&quot;, &quot;#7944E5&quot;, &quot;#4C44E5&quot;, &quot;#8F44E5&quot;, &quot;#4C44E5&quot;, &quot;#E544CB&quot;, &quot;#E55B44&quot;, &quot;#44DAE5&quot;, &quot;#E57144&quot;, &quot;#A5E544&quot;, &quot;#D2E544&quot;, &quot;#D2E544&quot;, &quot;#E544CB&quot;, &quot;#E544E1&quot;, &quot;#E5445B&quot;, &quot;#E5445B&quot;, &quot;#D2E544&quot;, &quot;#E544CB&quot;, &quot;#44E5DA&quot;, &quot;#44E5DA&quot;, &quot;#44E5AD&quot;, &quot;#D2E544&quot;, &quot;#44E5C3&quot;, &quot;#E58844&quot;, &quot;#8F44E5&quot;, &quot;#44E5AD&quot;, &quot;#44E553&quot;, &quot;#E5B444&quot;, &quot;#4C44E5&quot;, &quot;#4C44E5&quot;, &quot;#E544E1&quot;, &quot;#E57144&quot;, &quot;#6244E5&quot;, &quot;#BC44E5&quot;, &quot;#E54471&quot;, &quot;#D2E544&quot;, &quot;#62E544&quot;, &quot;#E5449E&quot;, &quot;#E5445B&quot;, &quot;#62E544&quot;, &quot;#446AE5&quot;, &quot;#E544CB&quot;, &quot;#E544B4&quot;, &quot;#E544CB&quot;, &quot;#E544E1&quot;, &quot;#44E5AD&quot;, &quot;#E544B4&quot;, &quot;#44E580&quot;, &quot;#4453E5&quot;, &quot;#44E553&quot;, &quot;#44ADE5&quot;, &quot;#E58844&quot;, &quot;#4497E5&quot;, &quot;#E544CB&quot;, &quot;#E544CB&quot;, &quot;#D2E544&quot;, &quot;#E544CB&quot;, &quot;#4480E5&quot;, &quot;#44ADE5&quot;, &quot;#E5449E&quot;, &quot;#4480E5&quot;, &quot;#44E5AD&quot;, &quot;#4480E5&quot;, &quot;#4C44E5&quot;, &quot;#44E5DA&quot;, &quot;#E5B444&quot;, &quot;#E544CB&quot;, &quot;#A5E544&quot;, &quot;#E544CB&quot;, &quot;#E5B444&quot;, &quot;#E59E44&quot;, &quot;#E544E1&quot;, &quot;#7944E5&quot;, &quot;#44E580&quot;, &quot;#44DAE5&quot;, &quot;#E54471&quot;, &quot;#44E5AD&quot;, &quot;#4480E5&quot;, &quot;#D2E544&quot;, &quot;#44E5DA&quot;, &quot;#E54471&quot;, &quot;#D2E544&quot;, &quot;#44ADE5&quot;, &quot;#44ADE5&quot;, &quot;#44E56A&quot;, &quot;#D244E5&quot;, &quot;#4480E5&quot;, &quot;#E5449E&quot;, &quot;#E55B44&quot;, &quot;#4C44E5&quot;, &quot;#44C3E5&quot;, &quot;#4C44E5&quot;, &quot;#44E5DA&quot;, &quot;#44DAE5&quot;, &quot;#4C44E5&quot;, &quot;#E5445B&quot;, &quot;#D2E544&quot;, &quot;#44DAE5&quot;, &quot;#4C44E5&quot;, &quot;#7944E5&quot;, &quot;#D2E544&quot;, &quot;#44E5DA&quot;, &quot;#44E5C3&quot;, &quot;#E5449E&quot;, &quot;#E54471&quot;, &quot;#446AE5&quot;, &quot;#62E544&quot;, &quot;#44E553&quot;, &quot;#E54471&quot;, &quot;#44E5AD&quot;, &quot;#E58844&quot;, &quot;#E55B44&quot;, &quot;#E54444&quot;, &quot;#4C44E5&quot;, &quot;#4480E5&quot;, &quot;#A5E544&quot;, &quot;#4480E5&quot;, &quot;#44E5DA&quot;, &quot;#E57144&quot;, &quot;#D2E544&quot;, &quot;#44E5AD&quot;, &quot;#E54488&quot;, &quot;#D244E5&quot;, &quot;#A5E544&quot;, &quot;#4480E5&quot;, &quot;#E57144&quot;, &quot;#62E544&quot;, &quot;#4C44E5&quot;, &quot;#E54471&quot;, &quot;#4CE544&quot;, &quot;#44DAE5&quot;, &quot;#44E580&quot;, &quot;#D2E544&quot;, &quot;#4453E5&quot;, &quot;#E5B444&quot;, &quot;#BCE544&quot;, &quot;#44E5DA&quot;, &quot;#A5E544&quot;, &quot;#E544CB&quot;, &quot;#D2E544&quot;, &quot;#A544E5&quot;, &quot;#44E580&quot;, &quot;#E54488&quot;, &quot;#4480E5&quot;, &quot;#4497E5&quot;, &quot;#E544E1&quot;, &quot;#44E56A&quot;, &quot;#44E5AD&quot;, &quot;#4480E5&quot;, &quot;#44E553&quot;, &quot;#E58844&quot;, &quot;#4480E5&quot;, &quot;#4C44E5&quot;, &quot;#4C44E5&quot;, &quot;#62E544&quot;, &quot;#44E56A&quot;, &quot;#D2E544&quot;, &quot;#44E580&quot;, &quot;#44E56A&quot;, &quot;#A5E544&quot;, &quot;#4480E5&quot;, &quot;#E544CB&quot;, &quot;#E54488&quot;, &quot;#E544E1&quot;, &quot;#44E56A&quot;, &quot;#446AE5&quot;, &quot;#D2E544&quot;, &quot;#E5449E&quot;, &quot;#D244E5&quot;, &quot;#E57144&quot;, &quot;#E57144&quot;, &quot;#D2E544&quot;, &quot;#44E580&quot;, &quot;#44E553&quot;, &quot;#4480E5&quot;, &quot;#4480E5&quot;, &quot;#E58844&quot;, &quot;#E544E1&quot;, &quot;#4453E5&quot;, &quot;#44DAE5&quot;, &quot;#E544B4&quot;, &quot;#E5449E&quot;, &quot;#D2E544&quot;, &quot;#446AE5&quot;, &quot;#4480E5&quot;, &quot;#A5E544&quot;, &quot;#E54444&quot;, &quot;#D2E544&quot;, &quot;#4480E5&quot;, &quot;#44ADE5&quot;, &quot;#4480E5&quot;, &quot;#E5449E&quot;, &quot;#E544CB&quot;, &quot;#4480E5&quot;, &quot;#E54471&quot;, &quot;#4453E5&quot;, &quot;#D2E544&quot;, &quot;#BC44E5&quot;, &quot;#D2E544&quot;, &quot;#4C44E5&quot;, &quot;#A544E5&quot;, &quot;#44C3E5&quot;, &quot;#4C44E5&quot;, &quot;#4C44E5&quot;, &quot;#D2E544&quot;, &quot;#62E544&quot;, &quot;#44E56A&quot;, &quot;#62E544&quot;, &quot;#E544B4&quot;, &quot;#E544CB&quot;, &quot;#4C44E5&quot;, &quot;#E544E1&quot;, &quot;#E59E44&quot;, &quot;#4453E5&quot;, &quot;#E544E1&quot;, &quot;#E54444&quot;, &quot;#44E56A&quot;, &quot;#E544E1&quot;, &quot;#A5E544&quot;, &quot;#A5E544&quot;, &quot;#E57144&quot;, &quot;#E55B44&quot;, &quot;#8F44E5&quot;, &quot;#4C44E5&quot;, &quot;#A5E544&quot;, &quot;#44ADE5&quot;, &quot;#4480E5&quot;, &quot;#44E5AD&quot;, &quot;#E544B4&quot;, &quot;#44E553&quot;, &quot;#44E5DA&quot;, &quot;#79E544&quot;, &quot;#4480E5&quot;, &quot;#4453E5&quot;, &quot;#4CE544&quot;, &quot;#E54471&quot;, &quot;#D2E544&quot;, &quot;#E544E1&quot;, &quot;#6244E5&quot;, &quot;#BC44E5&quot;, &quot;#E544CB&quot;, &quot;#A5E544&quot;, &quot;#A5E544&quot;, &quot;#44E5AD&quot;, &quot;#44E5AD&quot;, &quot;#44E5AD&quot;, &quot;#E544E1&quot;, &quot;#D2E544&quot;, &quot;#E544CB&quot;, &quot;#E544CB&quot;, &quot;#4C44E5&quot;, &quot;#A5E544&quot;, &quot;#E544B4&quot;, &quot;#BC44E5&quot;, &quot;#4480E5&quot;, &quot;#4480E5&quot;, &quot;#E54471&quot;, &quot;#7944E5&quot;, &quot;#E59E44&quot;, &quot;#44E553&quot;, &quot;#44E580&quot;, &quot;#44E56A&quot;, &quot;#446AE5&quot;, &quot;#44ADE5&quot;, &quot;#E544B4&quot;, &quot;#D2E544&quot;, &quot;#E54444&quot;, &quot;#E544CB&quot;, &quot;#E544B4&quot;, &quot;#E544CB&quot;, &quot;#4C44E5&quot;, &quot;#E58844&quot;, &quot;#6244E5&quot;, &quot;#44E553&quot;, &quot;#E54471&quot;, &quot;#E544CB&quot;, &quot;#44E5AD&quot;, &quot;#44E5AD&quot;, &quot;#44E553&quot;, &quot;#4480E5&quot;, &quot;#E57144&quot;, &quot;#44E553&quot;, &quot;#D2E544&quot;, &quot;#D2E544&quot;, &quot;#E57144&quot;, &quot;#E5B444&quot;, &quot;#44ADE5&quot;, &quot;#BC44E5&quot;, &quot;#D244E5&quot;, &quot;#6244E5&quot;, &quot;#44C3E5&quot;, &quot;#79E544&quot;, &quot;#E59E44&quot;, &quot;#44E553&quot;, &quot;#D244E5&quot;, &quot;#44E553&quot;, &quot;#44C3E5&quot;, &quot;#4C44E5&quot;, &quot;#44E5C3&quot;, &quot;#E5CB44&quot;, &quot;#4C44E5&quot;, &quot;#44E5AD&quot;, &quot;#44E553&quot;, &quot;#E5445B&quot;, &quot;#62E544&quot;, &quot;#D2E544&quot;, &quot;#E544E1&quot;, &quot;#44E56A&quot;, &quot;#6244E5&quot;, &quot;#A5E544&quot;, &quot;#4CE544&quot;, &quot;#E544B4&quot;, &quot;#4C44E5&quot;, &quot;#E54444&quot;, &quot;#E5B444&quot;, &quot;#4C44E5&quot;, &quot;#E544CB&quot;, &quot;#44ADE5&quot;, &quot;#D2E544&quot;, &quot;#79E544&quot;, &quot;#E54471&quot;, &quot;#44E5AD&quot;, &quot;#E5B444&quot;, &quot;#4C44E5&quot;, &quot;#A5E544&quot;, &quot;#A5E544&quot;, &quot;#E57144&quot;, &quot;#E57144&quot;, &quot;#BC44E5&quot;, &quot;#44E5AD&quot;, &quot;#E54488&quot;, &quot;#4480E5&quot;, &quot;#4C44E5&quot;, &quot;#4480E5&quot;, &quot;#4480E5&quot;, &quot;#E55B44&quot;, &quot;#E544CB&quot;, &quot;#D2E544&quot;, &quot;#4C44E5&quot;, &quot;#E5E144&quot;, &quot;#D2E544&quot;, &quot;#44E5DA&quot;, &quot;#44DAE5&quot;, &quot;#4480E5&quot;, &quot;#E544CB&quot;, &quot;#4C44E5&quot;, &quot;#8FE544&quot;, &quot;#BC44E5&quot;, &quot;#6244E5&quot;, &quot;#44E580&quot;, &quot;#E544CB&quot;, &quot;#44E5C3&quot;, &quot;#E544B4&quot;, &quot;#4C44E5&quot;, &quot;#E54444&quot;, &quot;#44ADE5&quot;, &quot;#E58844&quot;, &quot;#62E544&quot;, &quot;#4CE544&quot;, &quot;#E57144&quot;, &quot;#E5445B&quot;, &quot;#62E544&quot;, &quot;#446AE5&quot;, &quot;#4480E5&quot;, &quot;#44E5AD&quot;, &quot;#E57144&quot;, &quot;#44E5C3&quot;, &quot;#E58844&quot;, &quot;#79E544&quot;, &quot;#E5449E&quot;, &quot;#6244E5&quot;, &quot;#E55B44&quot;, &quot;#E544E1&quot;, &quot;#6244E5&quot;, &quot;#E544E1&quot;, &quot;#4480E5&quot;, &quot;#4480E5&quot;, &quot;#E544CB&quot;, &quot;#E54488&quot;, &quot;#44E580&quot;, &quot;#4C44E5&quot;, &quot;#44E553&quot;, &quot;#44E5AD&quot;, &quot;#E5445B&quot;, &quot;#E544B4&quot;, &quot;#E5445B&quot;, &quot;#4480E5&quot;, &quot;#E59E44&quot;, &quot;#D2E544&quot;, &quot;#44DAE5&quot;, &quot;#E5E144&quot;, &quot;#E5449E&quot;, &quot;#44ADE5&quot;, &quot;#44E553&quot;, &quot;#44DAE5&quot;, &quot;#E544CB&quot;, &quot;#E5449E&quot;, &quot;#4C44E5&quot;, &quot;#8FE544&quot;, &quot;#BC44E5&quot;, &quot;#44E5DA&quot;, &quot;#E5445B&quot;, &quot;#E54471&quot;, &quot;#8FE544&quot;, &quot;#E5B444&quot;, &quot;#79E544&quot;, &quot;#D2E544&quot;, &quot;#44DAE5&quot;, &quot;#4480E5&quot;, &quot;#E544E1&quot;, &quot;#44E5DA&quot;, &quot;#44E5DA&quot;, &quot;#4497E5&quot;, &quot;#4C44E5&quot;, &quot;#E544B4&quot;, &quot;#E544CB&quot;, &quot;#E57144&quot;, &quot;#E544CB&quot;, &quot;#4C44E5&quot;, &quot;#E58844&quot;, &quot;#44E56A&quot;, &quot;#44E5C3&quot;, &quot;#E54471&quot;, &quot;#4497E5&quot;, &quot;#44E553&quot;, &quot;#E54471&quot;, &quot;#4480E5&quot;, &quot;#E544B4&quot;, &quot;#E5445B&quot;, &quot;#D2E544&quot;, &quot;#E544CB&quot;, &quot;#446AE5&quot;, &quot;#A5E544&quot;, &quot;#A5E544&quot;, &quot;#D244E5&quot;, &quot;#4480E5&quot;, &quot;#E544B4&quot;, &quot;#E54488&quot;, &quot;#44E56A&quot;, &quot;#4453E5&quot;, &quot;#D2E544&quot;, &quot;#4CE544&quot;, &quot;#E5445B&quot;, &quot;#44E5C3&quot;, &quot;#E57144&quot;, &quot;#E5445B&quot;, &quot;#E58844&quot;, &quot;#44E553&quot;, &quot;#E55B44&quot;, &quot;#44E5DA&quot;, &quot;#A5E544&quot;, &quot;#4C44E5&quot;, &quot;#7944E5&quot;, &quot;#4480E5&quot;, &quot;#E54471&quot;, &quot;#4480E5&quot;, &quot;#E58844&quot;, &quot;#E58844&quot;, &quot;#E54444&quot;, &quot;#D2E544&quot;, &quot;#44ADE5&quot;, &quot;#44E5C3&quot;, &quot;#62E544&quot;, &quot;#E54444&quot;, &quot;#E5B444&quot;, &quot;#E5B444&quot;, &quot;#E57144&quot;, &quot;#E544E1&quot;, &quot;#44ADE5&quot;, &quot;#8F44E5&quot;, &quot;#44E553&quot;, &quot;#E54471&quot;, &quot;#4480E5&quot;, &quot;#446AE5&quot;, &quot;#E54471&quot;, &quot;#4C44E5&quot;, &quot;#E59E44&quot;, &quot;#446AE5&quot;, &quot;#E544CB&quot;, &quot;#44ADE5&quot;, &quot;#A5E544&quot;, &quot;#E58844&quot;, &quot;#A5E544&quot;, &quot;#44E553&quot;, &quot;#446AE5&quot;, &quot;#E544E1&quot;, &quot;#BC44E5&quot;, &quot;#62E544&quot;, &quot;#E5449E&quot;, &quot;#E5449E&quot;, &quot;#4C44E5&quot;, &quot;#44C3E5&quot;, &quot;#4CE544&quot;, &quot;#4480E5&quot;, &quot;#44E5C3&quot;, &quot;#E54488&quot;, &quot;#E5445B&quot;, &quot;#44E580&quot;, &quot;#4453E5&quot;, &quot;#E54444&quot;, &quot;#D2E544&quot;, &quot;#E54444&quot;, &quot;#E544E1&quot;, &quot;#44E5DA&quot;, &quot;#E58844&quot;, &quot;#62E544&quot;, &quot;#44DAE5&quot;, &quot;#E57144&quot;, &quot;#44E5C3&quot;, &quot;#E57144&quot;, &quot;#44E553&quot;, &quot;#4C44E5&quot;, &quot;#E544E1&quot;, &quot;#44E553&quot;, &quot;#E57144&quot;, &quot;#4480E5&quot;, &quot;#6244E5&quot;, &quot;#44C3E5&quot;, &quot;#4480E5&quot;, &quot;#4C44E5&quot;, &quot;#79E544&quot;, &quot;#4C44E5&quot;, &quot;#44DAE5&quot;, &quot;#E54444&quot;, &quot;#4C44E5&quot;, &quot;#44E553&quot;, &quot;#8F44E5&quot;, &quot;#446AE5&quot;, &quot;#E57144&quot;, &quot;#E5445B&quot;, &quot;#D2E544&quot;, &quot;#D2E544&quot;, &quot;#E54488&quot;, &quot;#4480E5&quot;, &quot;#4497E5&quot;, &quot;#44E56A&quot;, &quot;#A5E544&quot;, &quot;#E5449E&quot;, &quot;#44E56A&quot;, &quot;#4497E5&quot;, &quot;#44E580&quot;, &quot;#4C44E5&quot;, &quot;#A5E544&quot;, &quot;#44E5C3&quot;, &quot;#44ADE5&quot;, &quot;#E54444&quot;, &quot;#4C44E5&quot;, &quot;#E57144&quot;, &quot;#E5449E&quot;, &quot;#44E553&quot;, &quot;#44E553&quot;, &quot;#8FE544&quot;, &quot;#E544CB&quot;, &quot;#E54444&quot;, &quot;#E544CB&quot;, &quot;#D2E544&quot;, &quot;#44E5C3&quot;, &quot;#4480E5&quot;, &quot;#44E5AD&quot;, &quot;#44E5DA&quot;, &quot;#E54488&quot;, &quot;#44E5C3&quot;, &quot;#4480E5&quot;, &quot;#E544E1&quot;, &quot;#D2E544&quot;, &quot;#4C44E5&quot;, &quot;#BC44E5&quot;, &quot;#A5E544&quot;, &quot;#A544E5&quot;, &quot;#62E544&quot;, &quot;#44E553&quot;, &quot;#8F44E5&quot;, &quot;#A5E544&quot;, &quot;#E544CB&quot;, &quot;#44E5AD&quot;, &quot;#D2E544&quot;, &quot;#E57144&quot;, &quot;#8FE544&quot;, &quot;#8FE544&quot;, &quot;#D2E544&quot;, &quot;#44E5C3&quot;, &quot;#E57144&quot;, &quot;#44E56A&quot;, &quot;#62E544&quot;, &quot;#4480E5&quot;, &quot;#E58844&quot;, &quot;#44E580&quot;, &quot;#4480E5&quot;, &quot;#D244E5&quot;, &quot;#E5B444&quot;, &quot;#E59E44&quot;, &quot;#4C44E5&quot;, &quot;#E544B4&quot;, &quot;#E57144&quot;, &quot;#4C44E5&quot;, &quot;#79E544&quot;, &quot;#E5B444&quot;, &quot;#E5B444&quot;, &quot;#44ADE5&quot;, &quot;#44E580&quot;, &quot;#44E553&quot;, &quot;#44E553&quot;, &quot;#44E5AD&quot;, &quot;#4C44E5&quot;, &quot;#D2E544&quot;, &quot;#E54444&quot;, &quot;#4453E5&quot;, &quot;#4CE544&quot;, &quot;#4CE544&quot;, &quot;#E54471&quot;, &quot;#4480E5&quot;, &quot;#62E544&quot;, &quot;#D244E5&quot;, &quot;#E544E1&quot;, &quot;#4C44E5&quot;, &quot;#E54444&quot;, &quot;#44E580&quot;, &quot;#D2E544&quot;, &quot;#E55B44&quot;, &quot;#E5445B&quot;, &quot;#E59E44&quot;, &quot;#4C44E5&quot;, &quot;#E544B4&quot;, &quot;#E5B444&quot;, &quot;#44C3E5&quot;, &quot;#44C3E5&quot;, &quot;#44DAE5&quot;, &quot;#4C44E5&quot;, &quot;#8F44E5&quot;, &quot;#E57144&quot;, &quot;#E544CB&quot;, &quot;#A5E544&quot;, &quot;#4480E5&quot;, &quot;#E58844&quot;, &quot;#E59E44&quot;, &quot;#E59E44&quot;, &quot;#4453E5&quot;, &quot;#4CE544&quot;, &quot;#E544CB&quot;, &quot;#44DAE5&quot;, &quot;#E58844&quot;, &quot;#4453E5&quot;, &quot;#E54444&quot;, &quot;#E57144&quot;, &quot;#44E5DA&quot;, &quot;#A5E544&quot;, &quot;#4480E5&quot;, &quot;#62E544&quot;, &quot;#4C44E5&quot;, &quot;#44E5AD&quot;, &quot;#E58844&quot;, &quot;#4C44E5&quot;, &quot;#E544E1&quot;, &quot;#E57144&quot;, &quot;#4453E5&quot;, &quot;#4C44E5&quot;, &quot;#E544E1&quot;, &quot;#E57144&quot;, &quot;#44C3E5&quot;, &quot;#E57144&quot;, &quot;#D2E544&quot;, &quot;#6244E5&quot;, &quot;#79E544&quot;, &quot;#4C44E5&quot;, &quot;#4C44E5&quot;, &quot;#62E544&quot;, &quot;#44E580&quot;, &quot;#44E553&quot;, &quot;#44E56A&quot;, &quot;#44E553&quot;, &quot;#D2E544&quot;, &quot;#E54444&quot;, &quot;#4480E5&quot;, &quot;#4C44E5&quot;, &quot;#D2E544&quot;, &quot;#44E5DA&quot;, &quot;#44ADE5&quot;, &quot;#E544CB&quot;, &quot;#4C44E5&quot;, &quot;#BC44E5&quot;, &quot;#E544CB&quot;, &quot;#E5B444&quot;, &quot;#D2E544&quot;, &quot;#E59E44&quot;, &quot;#44E553&quot;, &quot;#44E5DA&quot;, &quot;#E5B444&quot;, &quot;#E54471&quot;, &quot;#44E5DA&quot;, &quot;#44ADE5&quot;, &quot;#44E5DA&quot;, &quot;#E544E1&quot;, &quot;#4CE544&quot;, &quot;#E57144&quot;, &quot;#44E5AD&quot;, &quot;#E54471&quot;, &quot;#E54488&quot;, &quot;#E54471&quot;, &quot;#4C44E5&quot;, &quot;#E5445B&quot;, &quot;#E5445B&quot;, &quot;#D2E544&quot;, &quot;#44E56A&quot;, &quot;#D2E544&quot;, &quot;#A544E5&quot;, &quot;#4480E5&quot;, &quot;#44ADE5&quot;, &quot;#E5E144&quot;, &quot;#E544E1&quot;, &quot;#4C44E5&quot;, &quot;#446AE5&quot;, &quot;#E54471&quot;, &quot;#4C44E5&quot;, &quot;#79E544&quot;, &quot;#44DAE5&quot;, &quot;#44E5AD&quot;, &quot;#44ADE5&quot;, &quot;#E544E1&quot;, &quot;#44ADE5&quot;, &quot;#4480E5&quot;, &quot;#44E56A&quot;, &quot;#4C44E5&quot;, &quot;#E5B444&quot;, &quot;#E5B444&quot;, &quot;#E55B44&quot;, &quot;#E5445B&quot;, &quot;#E544E1&quot;, &quot;#44ADE5&quot;, &quot;#E54444&quot;, &quot;#44E580&quot;, &quot;#E544CB&quot;, &quot;#E544B4&quot;, &quot;#44E5AD&quot;, &quot;#62E544&quot;, &quot;#44E5AD&quot;, &quot;#4C44E5&quot;, &quot;#D244E5&quot;, &quot;#D2E544&quot;, &quot;#E57144&quot;, &quot;#D2E544&quot;, &quot;#44ADE5&quot;, &quot;#E58844&quot;, &quot;#4C44E5&quot;, &quot;#E544E1&quot;, &quot;#D2E544&quot;, &quot;#62E544&quot;, &quot;#44E580&quot;, &quot;#4480E5&quot;, &quot;#62E544&quot;, &quot;#44E597&quot;, &quot;#A544E5&quot;, &quot;#D2E544&quot;, &quot;#E544B4&quot;, &quot;#44E5DA&quot;, &quot;#4497E5&quot;, &quot;#44ADE5&quot;, &quot;#D2E544&quot;, &quot;#4480E5&quot;, &quot;#4C44E5&quot;, &quot;#4497E5&quot;, &quot;#44E5C3&quot;, &quot;#44ADE5&quot;, &quot;#4C44E5&quot;, &quot;#E5B444&quot;, &quot;#44E5DA&quot;, &quot;#4480E5&quot;, &quot;#4480E5&quot;, &quot;#D2E544&quot;, &quot;#E58844&quot;, &quot;#44E580&quot;, &quot;#44E5C3&quot;, &quot;#E5B444&quot;, &quot;#62E544&quot;, &quot;#4C44E5&quot;, &quot;#44E580&quot;, &quot;#E5449E&quot;, &quot;#4480E5&quot;, &quot;#E59E44&quot;, &quot;#44E580&quot;, &quot;#E54444&quot;, &quot;#6244E5&quot;, &quot;#4C44E5&quot;, &quot;#44E5AD&quot;, &quot;#E5445B&quot;, &quot;#E544CB&quot;, &quot;#446AE5&quot;, &quot;#E57144&quot;, &quot;#44E5AD&quot;, &quot;#E544CB&quot;, &quot;#44E580&quot;, &quot;#44E580&quot;, &quot;#44E580&quot;, &quot;#E544B4&quot;, &quot;#E57144&quot;, &quot;#44DAE5&quot;, &quot;#E57144&quot;, &quot;#D2E544&quot;, &quot;#D2E544&quot;, &quot;#44ADE5&quot;, &quot;#44ADE5&quot;, &quot;#44C3E5&quot;, &quot;#4480E5&quot;, &quot;#E544E1&quot;, &quot;#A544E5&quot;, &quot;#4C44E5&quot;, &quot;#62E544&quot;, &quot;#E57144&quot;, &quot;#E54471&quot;, &quot;#44E580&quot;, &quot;#62E544&quot;, &quot;#E5445B&quot;, &quot;#4453E5&quot;, &quot;#D2E544&quot;, &quot;#44C3E5&quot;, &quot;#44E5AD&quot;, &quot;#E5445B&quot;, &quot;#D2E544&quot;]}], &quot;xscale&quot;: &quot;linear&quot;, &quot;bbox&quot;: [0.125, 0.125, 0.77500000000000002, 0.77500000000000002]}], &quot;height&quot;: 800.0, &quot;width&quot;: 800.0, &quot;plugins&quot;: [{&quot;type&quot;: &quot;reset&quot;}, {&quot;enabled&quot;: false, &quot;button&quot;: true, &quot;type&quot;: &quot;zoom&quot;}, {&quot;enabled&quot;: false, &quot;button&quot;: true, &quot;type&quot;: &quot;boxzoom&quot;}, {&quot;voffset&quot;: 10, &quot;labels&quot;: [&quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taylor&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;harrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;garfield&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taylor&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taylor&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taylor&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;harding&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;], &quot;type&quot;: &quot;htmltooltip&quot;, &quot;id&quot;: &quot;el315824312537616&quot;, &quot;hoffset&quot;: 0}], &quot;data&quot;: {&quot;data01&quot;: [[13.9822486601, -1.67518620516], [-7.6657585814800004, 4.71481849952], [11.953091368900001, 1.8846518066599998], [-13.1931826876, -3.79026693306], [-20.8249744703, -0.29194208632], [-8.594116441639999, 19.991891939400002], [12.309062528399998, -4.552673785990001], [-8.94829926874, 17.655247944], [-14.5263100772, 3.05026940556], [14.0227108417, 18.6225906915], [-16.015264146099998, 9.79425475463], [4.72954452716, -11.036982636500001], [-7.11436814882, -17.5198771658], [2.88921621393, -15.248046445], [10.612133581, -16.757395294000002], [-10.8832746107, 10.273649325900001], [-6.31419220637, -12.497989175599999], [2.7086229965400004, -16.7717494668], [13.0497369813, 7.793971960710001], [12.0786206237, -4.81161959997], [12.4716453732, 4.53126608523], [12.1296330899, -16.2314470571], [-15.962933168800001, -1.75710262682], [11.8410201304, 3.1407473974199998], [15.3358371148, -0.37643380398299997], [-3.80889349231, 1.7587157004400003], [20.0041258812, 2.4232439232], [14.6948589494, 9.40907397533], [-13.0792763514, 8.65925929046], [-9.25900134362, 19.8370084946], [12.0839089402, -4.80517053057], [8.27376914933, 5.99695926493], [9.59225162848, -13.7918500898], [-15.577670326700002, -0.943052346372], [18.290062783299998, -4.050509695430001], [7.523933319289999, -5.072960864090001], [0.26926697107700004, -6.0998947604], [-12.051849321199999, 12.0819010821], [-19.5358535199, -12.349213041199999], [-0.040222886027800005, -4.00495985399], [-13.9887206197, 7.2800123141499995], [13.0461921276, -3.7838725390199994], [-4.385933656080001, -11.387327068], [-0.607175925831, -5.500828276519999], [12.7207082639, 2.99843526455], [-20.9127053042, -2.40128935604], [17.1288702906, -6.203037913230001], [6.936112571839999, 3.0519798752700003], [-1.0704552929100002, -4.32544845111], [-11.3417509499, 13.2763222821], [-10.6451267122, 8.57771001018], [-0.597021446952, 14.3456902243], [-9.43192164934, 16.9778618121], [15.746253728, -0.49240967437600003], [-0.379783223893, 6.84678459844], [-7.9793151356399985, 7.48555227182], [15.749833613, -2.1953916091599996], [4.17031968615, -7.87615740065], [-19.6417280387, -7.05451767368], [11.392329265199999, -15.1593972594], [-7.9681393724300005, -12.7369948973], [-13.848040190699999, -3.33954236449], [13.3014058854, 8.66983246721], [-20.50291124, -1.1276939574299998], [-5.621035339680001, 1.3887063939500002], [13.543839731199999, 15.4397369184], [-19.3174220617, -13.0993786789], [-16.4498567401, -1.9008199408400002], [7.283635575519999, -14.3768329822], [12.9697499977, 7.7403271791199995], [-23.6290563683, 10.4989040704], [13.207952783900001, -18.9640518233], [-8.2437242748, -12.561653329], [-6.51238765676, -17.3302565204], [-24.5957788929, 10.7712732574], [26.1489116072, 0.249670216289], [-20.3128844649, -13.2767761549], [-17.4898009902, -8.25746686484], [-12.738937945899998, -7.00942738513], [-22.0800672124, -1.10947336675], [-8.67868639302, 18.8387881452], [-14.535900316700001, 2.9699036312800002], [13.2178151146, -18.8981502681], [0.5333139687139999, -5.17979745504], [-7.4897585506699995, -16.1642618443], [-21.2685991987, -1.58742508266], [16.5082824579, 13.0145805305], [18.5775529433, -2.90830102194], [2.7493575450200005, -14.9800101032], [14.958833096400001, 17.7663750232], [-15.1943963687, 8.7220917659], [-8.07420090359, 7.96617525989], [17.8736084086, -6.70959706281], [-7.579547149650001, -3.86759716007], [-3.93576525488, -12.9752090836], [-7.370567426519999, -16.9906913527], [13.4242954773, 13.0362430101], [-13.4700949224, -4.37246271365], [13.584610671300002, 16.5634780488], [27.395200862, -1.8367899865400001], [-20.0671042211, -5.41809760046], [17.1890873662, 3.8575618824699998], [12.342847421300002, 4.69407662364], [-7.49859979888, 1.77044797072], [2.7206940446599996, -16.6095387184], [-20.080510113800003, -4.91475107709], [16.9654684293, -2.368716956], [13.1429577889, -18.6172778434], [2.5601161901, -15.5817167748], [13.3551514958, 6.85835147174], [-13.3439668689, 8.39783533762], [27.129381806799998, -0.8428207117730001], [4.7454695964499995, 10.5371088068], [-7.7919798139, 5.4884216310800005], [-9.14446424789, 13.6063134348], [-22.471489992800002, -0.713937429255], [-9.16409271055, 1.707448395], [-15.828253949, -9.9416614268], [-10.3828512114, 7.465277873250001], [-9.5709953853, 14.777120937100001], [-0.485860304378, -3.41078380887], [10.3565836323, -14.6636657527], [-22.8513159007, -1.43503033257], [25.459328304499998, 0.203741631629], [-20.9413767786, -2.24706314795], [-18.6283605466, -12.2967120928], [-8.174392806839998, 19.4346119301], [6.68424428206, 3.12760289355], [-16.0180712294, 2.49937613704], [11.7256657102, -15.430330099], [-12.5493825774, -0.5860802748430001], [18.9534938211, -4.47065638941], [15.601873649100002, 1.97252945727], [18.1047062568, -3.0260944944999997], [-7.80228557214, 6.251421065800001], [14.138145663800001, 11.3192238095], [13.1148874648, 10.2253661364], [15.915219911500001, 14.431347593900002], [6.05475885524, -11.0793429266], [-13.8979753958, 13.727867455799998], [-12.0344883095, -9.131861083139999], [-16.6429682238, -6.638598254580001], [13.6823669298, 12.375505723699998], [-6.511309691159999, -17.2825946558], [0.0413917940369, -4.96996148801], [0.046361763505, -3.36090877903], [-12.9477551071, -4.74108292938], [13.2637004693, 19.2081424175], [-12.785641115999999, 14.8278833653], [12.4849148353, -19.161629103499997], [7.596456878560001, -14.289664424300001], [-23.6758579452, 8.145579699439999], [28.040073620799998, -0.578167594998], [-15.688167303800002, -1.15056995381], [-18.4512878285, -8.30597498814], [12.339534269400001, 11.6544182895], [-17.145371641300002, -10.0471748653], [-24.6592045198, 11.0004542553], [-12.6941705228, -8.58615682504], [15.1826880329, 3.59578771864], [-23.811352732, 8.85345843291], [-6.737730463019999, -14.4667764023], [-16.757154311199997, -11.1820845332], [-12.4118117723, 5.91801088238], [9.450884628189998, -13.6422037495], [17.9839719828, -7.310832670339999], [18.4648130641, 3.1894597785000003], [25.7463544657, -0.770221817036], [15.0507779384, 13.351603322599999], [-2.8052649543299997, -11.9845343125], [6.08755713585, 3.6183546567400002], [20.0774879536, -3.5550222035], [-13.9175388656, -0.35363315668000006], [5.9549580911, -5.42190331372], [6.00538500135, 1.80039326134], [-12.821089976600001, 7.99454071916], [-21.3883492985, -1.9421908479499999], [12.8580350332, -18.0021045857], [-3.8092223333800006, 1.7586813079299999], [-10.8589543442, 9.10051692151], [-8.27208407143, 19.2040416639], [-13.283533333900001, -3.9552703597199996], [10.5851955482, -12.413680033499999], [12.412999222, -18.7360743702], [16.4563611885, 13.341662317599999], [4.79476012462, -10.857486440799999], [-8.29690557899, 8.96068068832], [-15.509920991300001, 8.796334835], [17.067873357899998, 14.773709043499998], [-10.3069426169, 1.31385555918], [-7.572782481849999, 1.86474475498], [8.477087831819999, 6.4588032591], [15.315628669, -1.27293078684], [13.048671777400001, 7.198639795810001], [-7.33214881134, -17.1774085433], [-19.2334841189, -1.60225416509], [16.4683087037, 13.3121579324], [8.256708920680001, 1.8390825171400003], [-8.384587184139999, 10.502168963099999], [10.8733595684, -14.5473130172], [-13.8607098473, -9.460515181649999], [-14.0440903417, 6.9188447036500005], [-9.19968638575, 19.0227131187], [21.9070064708, 1.16396569755], [12.986791703900002, -18.4605807381], [-8.54854318453, 7.806924508430001], [-10.6823185186, 16.8688439523], [28.378011807399997, -1.19296368969], [6.945921845589999, -5.27228240837], [23.330013096, -2.54286337059], [-20.7334369959, -2.32631449318], [-6.80889052537, -17.445421224], [-9.72932570403, 14.5104148047], [-13.1175016376, 10.7159872558], [-5.35494717742, 1.41626748722], [-19.2290100289, -13.152504521], [8.50010737586, 5.34376078287], [-13.2421591022, -4.28805270054], [-1.78619217845, -8.2012279585], [21.4109124944, 1.65467078758], [-13.0645281465, -9.01736119793], [28.102621904299998, -0.603648537526], [-8.53624353228, 16.4501452398], [-8.107288445830001, 7.2379689651], [12.8631258126, -19.2128381468], [28.103476685900002, -1.74240762303], [-7.406703853630001, 7.916460740160001], [14.527618891900001, 2.8640165906299995], [-17.035327067, -10.1096338122], [13.195506701700001, -19.0028388482], [6.5306426903400006, 2.5082678169299997], [-8.575412147160002, 19.2159107716], [-12.7731888404, 14.865315419000002], [-14.737212726600001, -9.879729221729999], [16.3552536014, 9.139711354780001], [-6.631118111699999, -14.8583891074], [-9.01696969753, 17.3295337876], [-10.7387736742, 8.072976420660002], [-0.980096162187, 1.24744736155], [8.10819549439, -0.8718407270209999], [-22.9095007865, -0.8026475155509999], [14.9750000977, 14.754122909300001], [2.70958191343, -16.7669133291], [12.010939620899999, -18.4808250619], [-1.68948830461, -8.07340777205], [14.097778399000001, 4.05732795706], [-21.004079236400003, -2.0877121180300002], [12.2926816918, -17.8398129524], [13.5500189631, 18.1482171776], [-6.53206826298, -17.3773178348], [-19.5518255424, -13.765872498499998], [-0.0860091713278, -4.09896564241], [-17.6612978274, -9.39121998748], [19.8385661151, -3.6993120384199996], [-8.27409458637, 1.5451476254499998], [-8.11454163163, 8.222112749179999], [14.7168516349, 6.83650006728], [-21.184687398199998, -1.89097690838], [-6.525515138230001, -17.0156959173], [28.224768466599997, -0.755090344688], [3.6362469425099997, 10.5142585166], [-23.494730386700002, 7.6119681435699995], [-9.17719946076, 18.2394303859], [12.4667976315, -17.721253440999998], [-16.8648450063, -8.916941293310002], [-8.46415036509, -3.88063393828], [-15.3442175078, -10.2308737022], [17.114562849000002, 15.228872646300001], [-14.0146790919, 13.235793371600002], [15.050488658199999, 16.3846051124], [2.7023388915400006, -15.4398424453], [-15.6123054214, 2.36387827246], [-7.61772461215, 5.375794669480001], [-4.71956884999, -13.851182643], [13.0553404671, 4.2749381815400005], [-8.73100926639, 1.6726589168000001], [18.362039625799998, -2.86148566418], [14.939702431099999, 16.8055091799], [-12.3551387963, -9.224411340269999], [28.4378194346, -1.3671304380000002], [7.52013395135, -14.0699448621], [8.849703613460001, -10.0899091858], [-9.196496969450001, 19.909005556], [7.26840696342, -14.3647593349], [0.00429425913868, 14.145929156300001], [-23.349651403200003, 7.8712242763399995], [6.849374238080001, -4.84384494646], [-0.47607316973999997, -3.36876410607], [-11.830593648299999, 11.014850864300001], [16.7765930979, -2.17894009302], [2.7091303201300003, -16.1099199311], [-7.50680856533, -14.5001026316], [-9.48872829227, 18.5265197366], [13.895070472999999, 4.76989748074], [-13.2512122898, 5.24817227459], [-10.4692934714, 8.468934703], [13.859947036900001, 19.435842932899998], [5.06789698246, 3.51990855694], [-6.5660855396399995, -14.1021932112], [27.963315541, -1.92928922498], [-4.7829740908, -11.581203983800002], [-4.14534405019, -14.3257629122], [-23.484162327600004, 10.409074632100001], [12.7761053955, -17.6932570949], [5.08290210693, -8.0183012887], [12.2789093615, -18.1026602447], [12.163412438599998, -18.437977846], [18.6712819116, -3.3453292811799997], [18.2015598447, -6.21549475535], [0.484693821312, -4.5278277971900005], [-3.8032994633099997, 1.76282962593], [-13.9678144827, 6.983667866449999], [-19.9830919685, -13.8935055919], [28.3042493328, -1.71765325984], [2.7103642634400003, -16.7652110498], [12.3599098169, -4.4986975709], [-11.67883141, 13.0203784289], [-22.3730571452, -1.6098735120899998], [21.5366726781, 1.59192928758], [-15.1205362678, -2.5396067954599997], [12.954192266300002, 2.07966191748], [-6.35008978515, -16.7136576632], [16.0076085594, 9.60248182374], [-8.34905789731, -12.388661093800001], [12.6757377177, 3.4310924955699997], [7.15853686472, -5.09172819024], [1.08983673115, -8.782569651180001], [-6.925010240010001, -16.0479886275], [6.83134045454, 3.44917276875], [-24.5857544588, 9.71795024224], [7.25985899615, -14.3411373398], [-14.491665319500001, -1.5657092068599998], [-24.244888159600002, 9.51989578751], [-13.1905888024, 10.541280634400001], [-0.44600281107100004, -5.35244292239], [-2.00678183577, -15.7557135936], [14.3079608468, 18.504901626600002], [-15.6377856681, -1.35297317929], [19.661139988, -3.33115692924], [28.2881436063, -0.9143718205920001], [-7.41497606266, -15.1127505253], [-8.346288877580001, -3.97675920629], [-15.7421927644, 11.6220249461], [-6.70904075394, -16.6272861634], [-12.639050116099998, -8.103294440710002], [-13.5646078225, -7.83377717093], [-18.7193665425, -10.889636146199999], [6.35351818959, 2.17535568059], [-0.658218510634, -4.05128967715], [10.2576348406, -12.0077862633], [17.1712550671, 15.220341494200001], [-0.336470608522, -4.6707193807], [-2.7157973152099997, -11.982605576], [22.3022434479, 1.1918832141700002], [17.9213533449, -7.119681202050001], [6.060499279480001, 1.06090501059], [14.1955863828, 19.240049740899998], [-3.8892249796199994, -12.034442520499999], [5.94967040487, -10.9837705464], [-23.7375005125, 8.64139608946], [-5.05617113232, -14.7745041472], [5.016198834690001, -10.9901201374], [-20.2989585774, -13.420903994100001], [27.5382443225, -0.710505686976], [-0.803537339869, 14.2500687232], [-12.450580199900001, 14.743218253399998], [13.280443863199999, 9.655311914], [-4.4066653569800005, -11.2440407282], [17.9730494437, -7.31079239589], [-15.3183156876, -6.819544576959999], [-0.533351220581, -5.994279257890001], [11.0922108577, -14.673524663], [13.5926141074, 16.545565047100002], [26.676257369899997, -0.249102475204], [-24.4927791928, 11.0204360179], [14.2527028073, 19.154797903800002], [4.75931419591, 3.71936467727], [-22.441529739299998, -1.1655968360200002], [-12.2943979832, 4.34568419751], [-2.1035884887900003, -8.5383164807], [-11.855239349400001, -9.295055124520001], [15.3374619801, 6.951345391799999], [7.380317603189999, 0.914165147164], [12.0976302366, 3.6059283963199995], [27.810232462800002, -0.49429485874300005], [-24.3107958061, 8.9806713916], [-2.35223717512, -12.733819119000001], [27.795642754899998, -1.2420441869], [-8.445926433010001, 11.3930571269], [-8.44231273134, 11.4062011817], [9.72887232545, -11.2650522999], [27.123592890500003, -1.34848958778], [11.242707397, -16.532214008900002], [-13.8670297113, 3.7726605648500002], [-20.4280135223, -9.39392408627], [-23.03006319, -1.3142951543299999], [-11.4629897245, 13.7667005522], [7.4333392594, -14.2721159344], [-22.9978350244, -0.8589809925740001], [1.08971904649, -5.352188280930001], [-12.748660256600001, 5.84495315877], [7.44254567288, 2.40855798254], [-13.163852009700001, -9.18510670207], [-9.370939887210001, 19.539460146], [13.425887400699999, 10.5585113863], [-21.991273794899996, -1.06028163501], [-20.6358565098, -1.0779684654100001], [-13.999650461, 12.8031162801], [24.9488421622, -0.249917237003], [12.0751714548, -4.817001525019999], [-5.37478662342, -14.909907775399999], [18.1192403157, -6.627931769680001], [-18.914813481099998, -1.64347676811], [23.3177365998, -2.65012821565], [-6.7597495973, -17.528519972], [-10.730820461799999, 7.841755242760001], [13.1236213775, 18.933379215], [-0.8285429136139999, 14.003937371800001], [-15.7601062341, 14.5748628068], [16.709955896300002, 15.2386814077], [13.2545239145, 18.5122062512], [-8.25199545573, 19.7126889301], [-23.6389742887, 10.3749192263], [27.50729539, -0.7670827036839999], [-3.8267784540699994, -13.4152923798], [-7.98050758403, -3.76458759389], [8.06623952044, -0.638398116065], [-14.601524517, 2.85879258126], [18.0542372893, -3.7812767858300003], [-21.4649517795, -0.621518564529], [13.003456328, 8.07083356502], [18.2274158382, -5.81760393364], [-0.491921605943, -5.69817893237], [2.7365665687800003, -16.4042188148], [13.821220605399999, 2.15758913195], [-0.526013178129, -4.91964755459], [20.52723053, -1.1087139284999998], [-8.52652699579, 16.4121902022], [-10.553790894199999, 11.4707654974], [-0.472886627875, -3.36688391786], [-3.7074670610300005, -15.2182429691], [15.3333201705, -1.9680543651400002], [-14.4444189556, -0.908378791163], [24.789241252100002, -1.0384750169299999], [8.719106797030001, -11.4306327451], [-17.3388067602, -7.492272722849999], [2.7232497728099996, -16.33087042], [-19.5729762036, -13.854675690699999], [-8.46951490272, 16.7359842743], [12.5708198303, 2.74240848865], [-18.1532905291, -11.6480516877], [7.81542721757, 1.3573365866799998], [15.1352583335, 14.898732786400002], [12.438869442, -18.739812121099998], [-13.074396715799999, -8.85665290897], [-6.086841580730001, -12.392414036099998], [14.6624818308, 3.7539993159699994], [-14.353907387000001, -0.6657613731199999], [27.5626415776, -1.19398775221], [-23.7424966179, 8.567532693839999], [12.539544353399998, 5.12461372792], [10.134753417899999, -12.0318631439], [-13.376131423599999, 14.3084925115], [-20.041761968299998, -13.8477262809], [-3.8087943777599995, 1.7569684861400001], [19.541345190999998, 2.5968681618400002], [6.83167026591, 3.0609904902900005], [12.8721531845, 6.0471795021000005], [-1.55920194237, -7.69462948125], [17.35893101, 2.71185275603], [-3.8061475654000003, 1.76001759747], [20.242158148199998, -3.4690455063199996], [1.95207283458, 4.401564861040001], [-20.8241777149, -1.58399159704], [-9.095862332080001, 13.9391270032], [-15.381013859300001, 8.888459494480001], [1.0622843075, -8.67598565907], [-7.501666609189999, 1.11065340611], [-12.0983738776, 7.61948706962], [-6.46504716752, -13.434147791500001], [-18.6134151893, -13.1018111777], [-22.1750113321, -0.7746282913089999], [-14.014522333, 14.2133682698], [8.770052187380001, -12.4431029968], [-0.610563127132, 14.7347644648], [-8.77794765062, 11.2766817966], [-7.09700866702, -16.7724376139], [14.8774999104, 14.4400726639], [-7.445426775739999, -3.98266185754], [-0.364857898535, 6.849272322769999], [-12.331996370899999, 5.3320195866699995], [-11.479954601300001, -9.44662039607], [-12.7187020692, -5.57392457936], [13.006120857300001, 6.465166496849999], [13.412459757799999, 1.84755716284], [6.3188196776600005, -11.156410681099999], [6.39944777632, 2.13783100572], [-17.7394215744, -10.2154488479], [22.8539344542, -3.8223328872000004], [27.2612240781, -1.5622702247600002], [-7.120744130399999, -10.863909108900001], [-14.8048962358, 2.89343402582], [-7.3776477502399995, -17.1866655753], [13.6437634009, 19.4897057557], [-8.15154955615, 7.84356557959], [26.208864416500003, -0.8926758449850001], [-8.8952464971, 20.0176364468], [-19.1195545164, -11.5644466627], [-19.21106312, -0.353994745147], [-8.04866546476, -13.9749016726], [6.81356696144, -5.733516133659999], [-10.4725149471, 11.680433020399999], [3.8116108499699997, 10.517565259], [-19.9638051867, -13.1014011757], [-15.8086231268, -2.22414649727], [-21.810960120300003, -1.8084024376199999], [13.213612243800002, 9.9541688295], [-8.87315095938, 9.671584079430001], [-13.0495735839, 10.9110780678], [-16.9321313003, 14.6056611152], [16.4173566105, 13.2131420447], [-3.4263021963200004, -0.9669163450370001], [-0.415078964686, -4.17785233227], [8.06517455288, -12.390518211400002], [13.9727555068, 18.8809327126], [13.609603079700001, 18.2445739467], [14.1117395086, 16.2766591157], [13.4014513185, 7.716408823969999], [-9.27781732249, 19.4500840159], [16.5256278009, -2.98200029838], [0.058617175668900005, -3.37057584988], [22.3371489652, 1.1817811290200002], [-1.4577991564500001, -7.8531841161000004], [-4.647011442769999, -13.923201546600001], [-11.429347198399999, 13.1327817283], [13.646833696500002, 2.1152586511], [6.939299077799999, 3.5683124457599997], [-22.939092976799998, -1.40759529117], [12.5649514455, 3.2486040342], [18.3081338348, -3.1236742495499996], [-22.455757415100003, -0.739337343846], [-3.95172036193, -10.8737566347], [27.4831696834, -1.89010026777], [-14.525127788499999, 12.1498932974], [12.5108007025, -17.0207891316], [-7.362062560139999, -17.3184512943], [14.600160526500002, 3.28632595275], [18.3265752405, -5.95334508885], [12.0750751069, -4.81616445848], [22.940269852800004, 0.920541315379], [17.9792002475, -7.31046140177], [5.56436016255, -10.992660378499998], [-24.0932659317, 9.98301464727], [11.326834569, -14.869147091199999], [16.4036907424, 13.3621023586], [-9.966985014310001, 13.65542534], [11.274091976, -14.8585748871], [14.8041213028, -1.47871816293], [-16.501043386, 11.9207606023], [6.95808970733, 3.45988681422], [-20.0690466616, -5.37686065485], [13.4001072849, 8.54895269599], [-18.3594373287, -12.4009002641], [6.78859303987, 3.35809663718], [9.65208199906, -10.6084273001], [-8.67281694865, 17.0715651169], [-8.121384754680001, -4.823500500480001], [7.66118030671, 4.785091749059999], [12.3129123948, 4.71394941865], [-18.9901125144, -10.0109797987], [12.7585438003, -15.673248911199998], [-9.778712312160001, 17.6139773911], [-6.950605224919999, -16.1807097578], [-13.6839219954, -3.4401743222900003], [-25.1366604818, 9.05691321085], [3.52506172948, 10.5554715392], [-8.7927411579, 18.9362626118], [-1.3827341382499998, 13.7305582969], [-6.50072375472, -16.2366780989], [11.046371625799999, -14.6503613223], [-8.16081362572, 7.416664150369999], [-19.557508587, -7.818668095589999], [20.2274068895, 2.08891868582], [-23.8949829767, 9.44291665041], [13.366956330699999, 18.7865265048], [15.2855715271, 0.17290232434099997], [-3.8045207112800004, 1.7601976438599998], [2.4689886542200004, 10.5538746263], [6.88989719412, 3.09115099684], [18.5427223005, 3.20200974833], [-9.28079765603, 19.3815174712], [-11.787339875999999, 9.53021050096], [-7.15829086361, -16.693089003900003], [6.89247700582, -7.365178404], [12.6086754881, -19.219578293199998], [-8.235394753660001, 19.2384819845], [-10.6623001137, 11.093467047799999], [-6.33473949947, -10.6596758277], [-2.49817444523, -15.4017279473], [10.9303077632, -17.3791792302], [-16.0880866268, 14.0780747253], [-9.50399375895, 16.1894365221], [7.07908732863, 3.6560786122000004], [-24.5759130135, 10.588308758], [11.345273710299999, -16.7629187034], [12.5514777122, -16.9666654955], [-0.0500942948663, -3.33505385164], [13.774052099, 17.412039564100002], [-18.7296111533, -12.180125625799999], [-10.8439124768, 16.6755497979], [18.959850056, -4.49147105497], [-1.4871166408200003, -7.96312484215], [-3.74338140561, -11.1134661603], [23.1601233057, 0.851972380599], [-14.1978632021, 6.4355746601], [18.9973386245, 2.84885896383], [-13.112832727899999, -5.6264971601600005], [-0.054487956582500004, -4.5326287152699996], [12.8096998552, -17.301239462799998], [-10.5742424596, 11.4147838794], [13.246334131700001, -18.2294442746], [-21.114666347300002, -2.43274512647], [8.220068227310001, -11.6401433553], [5.29771568172, -11.006545120799998], [-14.840244907799999, -0.929138527172], [28.042385682600003, -1.8846674963999999], [-15.6621572724, -10.4108716554], [-12.552918610699999, 5.421521844730001], [10.3613634008, -12.170453430699999], [-2.35864500376, -12.8313491427], [-9.335761619169999, 18.8959346729], [13.9803482653, 18.7719221155], [-2.82936055379, -11.9857997904], [13.562508664000001, 17.4057058697], [13.106101006500001, -18.060321363499998], [-14.137217267899999, -3.1880881168700004], [11.237621781, -17.8934720028], [-6.34141751273, -12.765035573499999], [-14.0470287352, 12.8499004899], [12.732978453, 5.14008655462], [12.2955095229, 4.19680289482], [-6.69241302949, -15.1503308285], [12.4860599578, -16.7123123802], [-8.364575584439999, 19.8411317], [-9.56012806792, 16.5474118009], [15.321769163299999, 9.7300347698], [-10.6971752666, 13.6054428466], [-14.4089311821, 12.864118904200001], [21.845099752800003, 1.4281210045100001], [-7.77221080151, 17.0717491316], [-4.33396251522, -13.1039887597], [28.4241932539, -1.06437954282], [8.30384596407, 3.3142106234599997], [-23.8968384765, 8.844181614470001], [2.6580272111900003, -16.136082685399998], [-8.85377678102, 19.3572552567], [-23.5676207273, 7.976988369630001], [12.9385812952, 6.6407667346000006], [16.1527536474, 15.019525643699998], [18.7851349833, 2.81353814073], [-0.488556339528, -4.66313314264], [14.3790796148, 11.654156379000002], [-6.19379987848, -16.0196343744], [0.989613708241, -14.4268943558], [11.752745714200001, -18.0039262069], [-20.245559006500002, -13.2187157775], [-6.5810433314, -14.3116324106], [27.2749371969, -1.3673051318], [-15.549303865499999, -6.860241713330001], [14.3205967209, 17.0417620763], [13.319301474000001, 18.755331105], [13.6277744079, 10.3951739417], [-11.0102688026, 14.7762029399], [15.4236212827, 15.1331886], [13.912877520599999, 19.4262818922], [18.0600569553, -6.672627275549999], [-16.4844686111, -1.9540960970400003], [13.369790986099998, 19.2964709994], [15.2796727078, -0.5713871915300001], [-7.21558754114, -10.8707800632], [2.83558218429, -15.926985791099998], [-23.1215318763, 7.467028985680001], [17.9450087913, -7.20293526624], [-24.5471465995, 10.2623312846], [2.74034701176, -16.2754049724], [22.3234166608, 1.18203401491], [12.027180180799999, -16.1153622524], [11.648660958599999, -17.3253239233], [12.6277842927, 5.36547917572], [-12.9519244276, 8.95076300991], [13.503608825599999, 18.157032605599998], [-9.313322518560001, 19.8007344506], [-6.768005408830001, 0.9827030068970001], [10.3588142065, -16.1052505324], [-23.7366487058, 9.64941656674], [-12.0613578266, 9.40474226947], [17.3873357553, 2.16846395918], [16.3091579297, 9.14664621049], [-11.8881627327, 12.4965327793], [13.558470746300001, 17.6308540265], [-21.6913155621, -0.8203562368289999], [12.3640355678, 4.41582877154], [-16.3454589509, 11.9480249496], [-9.71071764168, 13.9679916748], [13.2673659152, 10.2935672617], [-8.82848444399, 19.9782526671], [-19.436654059200002, -13.581308103800001], [2.87620108472, 10.5350185115], [-19.0864173615, -8.340855839660001], [13.6563987793, 15.4757557103], [-3.8046355396199996, 1.76138955999], [24.7338411581, -0.454341793918], [-19.5522513449, -13.815092762], [-16.7299739227, -8.30995494786], [26.603069137, -1.3104937405], [-9.17684746798, 7.125071310730001], [-13.4779647368, 9.675881349680001], [-23.635541922399998, 7.908006888080001], [18.4968596837, -3.6920338362900003], [0.0322125724347, 14.1920575427], [4.46303894188, -11.053977834200001], [-10.964979958299999, 15.2147363194], [-3.8076049743400002, 1.7587082189200003], [-7.131391539430001, -16.2363053218], [12.8243315607, 6.39073132309], [-7.21984572411, 1.01888818942], [-23.8910798254, 10.4298857308], [15.170817435899998, 12.371940294200002], [13.670668103199999, 15.280136152599999], [-7.45470758589, -17.224294733900003], [-17.5419901401, -8.42347498477], [-6.94460985704, -17.590971156], [-12.1420681145, 5.06120859325], [14.8796764323, 17.8715578995], [-16.7536090587, 11.7985599995], [-17.3227923782, -8.32323778392], [-12.503709951400001, -9.20947082981], [-19.292347953900002, -12.676344930199999], [0.628808731165, -4.11264316231], [-16.2576391292, 2.5361871252], [-15.425528039200001, -8.80311750161], [12.1275204031, -4.749463925440001], [-15.8796288372, 2.6827874388599997], [19.0127540196, -4.38157774646], [-13.063755374200001, -9.17961926252], [16.9823283424, 3.5057663877199996], [4.36856062384, 10.5485788289], [-21.420865701, -2.2380197151499996], [23.4205379325, 0.755364135715], [12.235591488699999, 4.55655822715], [-10.6451870374, 15.1389169002], [0.060854382846, -3.42503277879], [-12.7384178974, 14.895959941300001], [23.2610993786, 0.24211542115200002], [13.487218286900001, 19.399684757], [-8.2864436583, 19.739151470699998], [15.835433638900001, -2.55199849571], [14.7198704602, 17.3199442677], [12.6717998736, -19.1021704274], [13.3054327565, 12.5675377216], [-19.6877235943, -13.2128375776], [-10.0339471063, 7.63933642218], [-12.2736631354, 9.292897068250001], [-17.4115480945, -12.369161486], [-19.4192495112, -8.81552154584], [-12.182482314100001, -9.17614875625], [-7.85204052722, 6.83762231125], [-19.3464308886, -10.2220751863], [0.0539196714076, -3.3801945682300003], [13.527656123699998, 0.608840100367], [8.549029924380001, -11.2923576594], [-9.185667245489999, 5.89599601731], [13.2593236197, 10.986644907], [27.260005377, -1.81199291936], [-19.7059664461, -6.76391815429], [13.318123576, 12.6093177762], [16.2387139724, 13.1373264298], [6.0923994635500005, -11.063182453800001], [-4.0950174882, 1.28679717482], [17.9699145931, -7.282112479049999], [-0.8496518399359999, -4.19393309435], [-8.61643266554, 10.9111642646], [-14.3120675322, 13.5477530001], [-23.6530937777, 8.31581398844], [13.1411440083, 18.9674861652], [14.7979954144, 17.857272131600002], [4.169373328480001, -6.5918779792799995], [-20.1811371645, -13.7460038108], [10.6358146761, -17.3025978094], [-2.2343646549200002, -8.71809967085], [23.3790828704, -2.42297937961], [17.590199057, 2.86420671098], [-19.3941156468, -1.55509171292], [-5.07568256232, 1.07818728999], [9.80038337337, -11.0166411941], [16.3752422168, 9.22127078416], [25.028170825900002, -0.39793928967799996], [-8.70918825096, 10.2396089191], [27.603147307399997, -0.542625749905], [-14.5657027002, -9.81654654042], [-19.6297806767, -12.801373981400001], [-7.77210299224, -12.401321720799999], [-1.49858132036, -7.546699199380001], [-22.701258937, -1.38881901868], [-4.26988221367, 1.57907788374], [17.8209320976, -6.28474435835], [-3.1184616757300003, -1.85310530003], [11.900973309600001, 4.06105754995], [17.9767802828, -7.3131937377], [-20.2805898162, -13.2188060531], [17.030256755099998, 15.163377325699999], [-6.19656851641, -15.7525191425], [-10.3740713639, 17.508367219100002], [0.38821623200800004, -4.38739131218], [28.4095451411, -1.4948299198500001], [-18.5690411492, -9.36181171572], [-12.2371471771, 6.207635535730001], [4.88951079975, -6.662342353860001], [-17.068656937300002, -11.4204869374], [-17.445769864200003, -8.12802614536], [-22.972788115500002, -0.839913967554], [-8.604905748060002, 17.694194793199998], [2.34668325753, 4.57382854591], [8.51006131552, -12.65216443], [-24.6011782264, 10.9383483372], [19.931188661300002, 2.33639984893], [-14.7196643467, 2.6864028928099994], [-23.0613136331, -1.2051970760500001], [-16.0796182141, -9.92545365215], [-14.946759039000002, -9.773499145339999], [-8.45672130423, 16.1558812867], [15.51031327, 10.7863190023], [0.638246985831, 7.61004192222], [18.4664526449, 3.25538503327], [14.258866154000001, 19.1342290547], [-24.675315685900003, 11.0510309993], [14.0313257202, 18.586835386700002], [12.789717668800002, -18.4795772887], [-8.47937307487, 19.167661704], [13.0167084547, 0.503476204328], [8.11914198126, 5.528813059249999], [16.7546103878, 12.614746139100001], [-6.33059352032, -16.699104301600002], [-23.4534203594, 7.82476767521], [27.0799577026, -0.735072414865], [-21.597601636300002, -0.945275875871], [-7.757502455089999, 1.16593997347], [24.4033357027, 0.372153264655], [-19.7723862557, -12.760980587999999], [27.6522134985, -1.93602634854], [-24.1179747269, 10.6829310593], [13.908956735599999, 10.976919309100001], [13.196204722300001, 11.017950518900001], [15.2031748898, 12.154606870699999], [18.0220676037, 0.32974664558899996], [-8.684044523719999, 20.028293505], [13.0311338617, 7.35024694593], [-0.956129983526, 13.487884043800001], [-13.4636913757, -8.13520068788], [-6.65315645403, -14.948543773199999], [-0.486347416721, -3.4321509741900003], [7.65193918307, -0.29863296826200003], [27.7095409667, -1.23954641531], [-9.75518145627, 13.8216637177], [16.043884943, -2.75612862482], [-10.8715481738, 8.59112361737], [-24.3781432027, 10.9471062491], [12.6346389423, -3.8183784571300006], [-10.6370180179, 11.2191795621], [-0.804138437853, 14.295129937], [13.4010226719, 13.038650736900001], [15.2781625892, -0.240628014113], [-19.6690611481, -13.8386023915], [-7.873703064710001, 6.7630687648], [0.73619568484, -5.2272990329199995], [8.70833696041, -10.8647421999], [11.992734903699999, -18.5598309532], [-20.2310125355, -13.5814960235], [-6.45248930506, -13.371081621300002]]}, &quot;id&quot;: &quot;el315824382290576&quot;});
   }(mpld3);
}else if(typeof define === &quot;function&quot; &amp;&amp; define.amd){
   // require.js is available: use it to load d3/mpld3
   require.config({paths: {d3: &quot;https://mpld3.github.io/js/d3.v3.min&quot;}});
   require([&quot;d3&quot;], function(d3){
      window.d3 = d3;
      mpld3_load_lib(&quot;https://mpld3.github.io/js/mpld3.v0.2.js&quot;, function(){
         
    mpld3.register_plugin(&quot;htmltooltip&quot;, HtmlTooltipPlugin);
    HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
    HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
    HtmlTooltipPlugin.prototype.requiredProps = [&quot;id&quot;];
    HtmlTooltipPlugin.prototype.defaultProps = {labels:null, hoffset:0, voffset:10};
    function HtmlTooltipPlugin(fig, props){
        mpld3.Plugin.call(this, fig, props);
    };

    HtmlTooltipPlugin.prototype.draw = function(){
       var obj = mpld3.get_element(this.props.id);
       var labels = this.props.labels;
       var tooltip = d3.select(&quot;body&quot;).append(&quot;div&quot;)
                    .attr(&quot;class&quot;, &quot;mpld3-tooltip&quot;)
                    .style(&quot;position&quot;, &quot;absolute&quot;)
                    .style(&quot;z-index&quot;, &quot;10&quot;)
                    .style(&quot;visibility&quot;, &quot;hidden&quot;);

       obj.elements()
           .on(&quot;mouseover&quot;, function(d, i){
                              tooltip.html(labels[i])
                                     .style(&quot;visibility&quot;, &quot;visible&quot;);})
           .on(&quot;mousemove&quot;, function(d, i){
                    tooltip
                      .style(&quot;top&quot;, d3.event.pageY + this.props.voffset + &quot;px&quot;)
                      .style(&quot;left&quot;,d3.event.pageX + this.props.hoffset + &quot;px&quot;);
                 }.bind(this))
           .on(&quot;mouseout&quot;,  function(d, i){
                           tooltip.style(&quot;visibility&quot;, &quot;hidden&quot;);});
    };
    
         mpld3.draw_figure(&quot;fig_el3158243822905768379654318&quot;, {&quot;axes&quot;: [{&quot;xlim&quot;: [-30.0, 40.0], &quot;yscale&quot;: &quot;linear&quot;, &quot;axesbg&quot;: &quot;#EEEEEE&quot;, &quot;texts&quot;: [{&quot;v_baseline&quot;: &quot;auto&quot;, &quot;h_anchor&quot;: &quot;middle&quot;, &quot;color&quot;: &quot;#000000&quot;, &quot;text&quot;: &quot;D3 Scatter Plot (with tooltips!)&quot;, &quot;coordinates&quot;: &quot;axes&quot;, &quot;zorder&quot;: 3, &quot;alpha&quot;: 1, &quot;fontsize&quot;: 20.0, &quot;position&quot;: [0.5, 1.0089605734767024], &quot;rotation&quot;: -0.0, &quot;id&quot;: &quot;el315824324808656&quot;}], &quot;zoomable&quot;: true, &quot;images&quot;: [], &quot;xdomain&quot;: [-30.0, 40.0], &quot;ylim&quot;: [-30.0, 30.0], &quot;paths&quot;: [], &quot;sharey&quot;: [], &quot;sharex&quot;: [], &quot;axesbgalpha&quot;: null, &quot;axes&quot;: [{&quot;scale&quot;: &quot;linear&quot;, &quot;tickformat&quot;: null, &quot;grid&quot;: {&quot;color&quot;: &quot;#FFFFFF&quot;, &quot;alpha&quot;: 1.0, &quot;dasharray&quot;: &quot;10,0&quot;, &quot;gridOn&quot;: true}, &quot;fontsize&quot;: 10.0, &quot;position&quot;: &quot;bottom&quot;, &quot;nticks&quot;: 8, &quot;tickvalues&quot;: null}, {&quot;scale&quot;: &quot;linear&quot;, &quot;tickformat&quot;: null, &quot;grid&quot;: {&quot;color&quot;: &quot;#FFFFFF&quot;, &quot;alpha&quot;: 1.0, &quot;dasharray&quot;: &quot;10,0&quot;, &quot;gridOn&quot;: true}, &quot;fontsize&quot;: 10.0, &quot;position&quot;: &quot;left&quot;, &quot;nticks&quot;: 7, &quot;tickvalues&quot;: null}], &quot;lines&quot;: [], &quot;markers&quot;: [], &quot;id&quot;: &quot;el315824383404176&quot;, &quot;ydomain&quot;: [-30.0, 30.0], &quot;collections&quot;: [{&quot;paths&quot;: [[[[0.0, -0.5], [0.13260155, -0.5], [0.25978993539242673, -0.44731684579412084], [0.3535533905932738, -0.3535533905932738], [0.44731684579412084, -0.25978993539242673], [0.5, -0.13260155], [0.5, 0.0], [0.5, 0.13260155], [0.44731684579412084, 0.25978993539242673], [0.3535533905932738, 0.3535533905932738], [0.25978993539242673, 0.44731684579412084], [0.13260155, 0.5], [0.0, 0.5], [-0.13260155, 0.5], [-0.25978993539242673, 0.44731684579412084], [-0.3535533905932738, 0.3535533905932738], [-0.44731684579412084, 0.25978993539242673], [-0.5, 0.13260155], [-0.5, 0.0], [-0.5, -0.13260155], [-0.44731684579412084, -0.25978993539242673], [-0.3535533905932738, -0.3535533905932738], [-0.25978993539242673, -0.44731684579412084], [-0.13260155, -0.5], [0.0, -0.5]], [&quot;M&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;Z&quot;]]], &quot;edgecolors&quot;: [&quot;#000000&quot;], &quot;edgewidths&quot;: [1.0], &quot;offsets&quot;: &quot;data01&quot;, &quot;yindex&quot;: 1, &quot;id&quot;: &quot;el315824312537616&quot;, &quot;pathtransforms&quot;: [[9.938079899999066, 0.0, 0.0, 9.938079899999066, 0.0, 0.0]], &quot;pathcoordinates&quot;: &quot;display&quot;, &quot;offsetcoordinates&quot;: &quot;data&quot;, &quot;zorder&quot;: 1, &quot;xindex&quot;: 0, &quot;alphas&quot;: [0.3], &quot;facecolors&quot;: [&quot;#E59E44&quot;, &quot;#4480E5&quot;, &quot;#44DAE5&quot;, &quot;#7944E5&quot;, &quot;#E544CB&quot;, &quot;#E57144&quot;, &quot;#E59E44&quot;, &quot;#4497E5&quot;, &quot;#E58844&quot;, &quot;#62E544&quot;, &quot;#E57144&quot;, &quot;#44C3E5&quot;, &quot;#44E553&quot;, &quot;#E55B44&quot;, &quot;#44E5AD&quot;, &quot;#E57144&quot;, &quot;#BC44E5&quot;, &quot;#E544B4&quot;, &quot;#E5E144&quot;, &quot;#BC44E5&quot;, &quot;#446AE5&quot;, &quot;#44C3E5&quot;, &quot;#E544CB&quot;, &quot;#E54488&quot;, &quot;#E5B444&quot;, &quot;#E544CB&quot;, &quot;#E54444&quot;, &quot;#E5449E&quot;, &quot;#4C44E5&quot;, &quot;#A544E5&quot;, &quot;#BC44E5&quot;, &quot;#E54444&quot;, &quot;#44C3E5&quot;, &quot;#E544CB&quot;, &quot;#E54444&quot;, &quot;#4453E5&quot;, &quot;#44ADE5&quot;, &quot;#4480E5&quot;, &quot;#E57144&quot;, &quot;#D2E544&quot;, &quot;#4C44E5&quot;, &quot;#44E580&quot;, &quot;#44E553&quot;, &quot;#6244E5&quot;, &quot;#446AE5&quot;, &quot;#E58844&quot;, &quot;#44E580&quot;, &quot;#79E544&quot;, &quot;#44ADE5&quot;, &quot;#E5445B&quot;, &quot;#E5445B&quot;, &quot;#4497E5&quot;, &quot;#4497E5&quot;, &quot;#44E5AD&quot;, &quot;#E544B4&quot;, &quot;#4497E5&quot;, &quot;#44DAE5&quot;, &quot;#E55B44&quot;, &quot;#4C44E5&quot;, &quot;#A5E544&quot;, &quot;#D2E544&quot;, &quot;#44E56A&quot;, &quot;#E54471&quot;, &quot;#7944E5&quot;, &quot;#4C44E5&quot;, &quot;#8F44E5&quot;, &quot;#4C44E5&quot;, &quot;#E544CB&quot;, &quot;#E55B44&quot;, &quot;#44DAE5&quot;, &quot;#E57144&quot;, &quot;#A5E544&quot;, &quot;#D2E544&quot;, &quot;#D2E544&quot;, &quot;#E544CB&quot;, &quot;#E544E1&quot;, &quot;#E5445B&quot;, &quot;#E5445B&quot;, &quot;#D2E544&quot;, &quot;#E544CB&quot;, &quot;#44E5DA&quot;, &quot;#44E5DA&quot;, &quot;#44E5AD&quot;, &quot;#D2E544&quot;, &quot;#44E5C3&quot;, &quot;#E58844&quot;, &quot;#8F44E5&quot;, &quot;#44E5AD&quot;, &quot;#44E553&quot;, &quot;#E5B444&quot;, &quot;#4C44E5&quot;, &quot;#4C44E5&quot;, &quot;#E544E1&quot;, &quot;#E57144&quot;, &quot;#6244E5&quot;, &quot;#BC44E5&quot;, &quot;#E54471&quot;, &quot;#D2E544&quot;, &quot;#62E544&quot;, &quot;#E5449E&quot;, &quot;#E5445B&quot;, &quot;#62E544&quot;, &quot;#446AE5&quot;, &quot;#E544CB&quot;, &quot;#E544B4&quot;, &quot;#E544CB&quot;, &quot;#E544E1&quot;, &quot;#44E5AD&quot;, &quot;#E544B4&quot;, &quot;#44E580&quot;, &quot;#4453E5&quot;, &quot;#44E553&quot;, &quot;#44ADE5&quot;, &quot;#E58844&quot;, &quot;#4497E5&quot;, &quot;#E544CB&quot;, &quot;#E544CB&quot;, &quot;#D2E544&quot;, &quot;#E544CB&quot;, &quot;#4480E5&quot;, &quot;#44ADE5&quot;, &quot;#E5449E&quot;, &quot;#4480E5&quot;, &quot;#44E5AD&quot;, &quot;#4480E5&quot;, &quot;#4C44E5&quot;, &quot;#44E5DA&quot;, &quot;#E5B444&quot;, &quot;#E544CB&quot;, &quot;#A5E544&quot;, &quot;#E544CB&quot;, &quot;#E5B444&quot;, &quot;#E59E44&quot;, &quot;#E544E1&quot;, &quot;#7944E5&quot;, &quot;#44E580&quot;, &quot;#44DAE5&quot;, &quot;#E54471&quot;, &quot;#44E5AD&quot;, &quot;#4480E5&quot;, &quot;#D2E544&quot;, &quot;#44E5DA&quot;, &quot;#E54471&quot;, &quot;#D2E544&quot;, &quot;#44ADE5&quot;, &quot;#44ADE5&quot;, &quot;#44E56A&quot;, &quot;#D244E5&quot;, &quot;#4480E5&quot;, &quot;#E5449E&quot;, &quot;#E55B44&quot;, &quot;#4C44E5&quot;, &quot;#44C3E5&quot;, &quot;#4C44E5&quot;, &quot;#44E5DA&quot;, &quot;#44DAE5&quot;, &quot;#4C44E5&quot;, &quot;#E5445B&quot;, &quot;#D2E544&quot;, &quot;#44DAE5&quot;, &quot;#4C44E5&quot;, &quot;#7944E5&quot;, &quot;#D2E544&quot;, &quot;#44E5DA&quot;, &quot;#44E5C3&quot;, &quot;#E5449E&quot;, &quot;#E54471&quot;, &quot;#446AE5&quot;, &quot;#62E544&quot;, &quot;#44E553&quot;, &quot;#E54471&quot;, &quot;#44E5AD&quot;, &quot;#E58844&quot;, &quot;#E55B44&quot;, &quot;#E54444&quot;, &quot;#4C44E5&quot;, &quot;#4480E5&quot;, &quot;#A5E544&quot;, &quot;#4480E5&quot;, &quot;#44E5DA&quot;, &quot;#E57144&quot;, &quot;#D2E544&quot;, &quot;#44E5AD&quot;, &quot;#E54488&quot;, &quot;#D244E5&quot;, &quot;#A5E544&quot;, &quot;#4480E5&quot;, &quot;#E57144&quot;, &quot;#62E544&quot;, &quot;#4C44E5&quot;, &quot;#E54471&quot;, &quot;#4CE544&quot;, &quot;#44DAE5&quot;, &quot;#44E580&quot;, &quot;#D2E544&quot;, &quot;#4453E5&quot;, &quot;#E5B444&quot;, &quot;#BCE544&quot;, &quot;#44E5DA&quot;, &quot;#A5E544&quot;, &quot;#E544CB&quot;, &quot;#D2E544&quot;, &quot;#A544E5&quot;, &quot;#44E580&quot;, &quot;#E54488&quot;, &quot;#4480E5&quot;, &quot;#4497E5&quot;, &quot;#E544E1&quot;, &quot;#44E56A&quot;, &quot;#44E5AD&quot;, &quot;#4480E5&quot;, &quot;#44E553&quot;, &quot;#E58844&quot;, &quot;#4480E5&quot;, &quot;#4C44E5&quot;, &quot;#4C44E5&quot;, &quot;#62E544&quot;, &quot;#44E56A&quot;, &quot;#D2E544&quot;, &quot;#44E580&quot;, &quot;#44E56A&quot;, &quot;#A5E544&quot;, &quot;#4480E5&quot;, &quot;#E544CB&quot;, &quot;#E54488&quot;, &quot;#E544E1&quot;, &quot;#44E56A&quot;, &quot;#446AE5&quot;, &quot;#D2E544&quot;, &quot;#E5449E&quot;, &quot;#D244E5&quot;, &quot;#E57144&quot;, &quot;#E57144&quot;, &quot;#D2E544&quot;, &quot;#44E580&quot;, &quot;#44E553&quot;, &quot;#4480E5&quot;, &quot;#4480E5&quot;, &quot;#E58844&quot;, &quot;#E544E1&quot;, &quot;#4453E5&quot;, &quot;#44DAE5&quot;, &quot;#E544B4&quot;, &quot;#E5449E&quot;, &quot;#D2E544&quot;, &quot;#446AE5&quot;, &quot;#4480E5&quot;, &quot;#A5E544&quot;, &quot;#E54444&quot;, &quot;#D2E544&quot;, &quot;#4480E5&quot;, &quot;#44ADE5&quot;, &quot;#4480E5&quot;, &quot;#E5449E&quot;, &quot;#E544CB&quot;, &quot;#4480E5&quot;, &quot;#E54471&quot;, &quot;#4453E5&quot;, &quot;#D2E544&quot;, &quot;#BC44E5&quot;, &quot;#D2E544&quot;, &quot;#4C44E5&quot;, &quot;#A544E5&quot;, &quot;#44C3E5&quot;, &quot;#4C44E5&quot;, &quot;#4C44E5&quot;, &quot;#D2E544&quot;, &quot;#62E544&quot;, &quot;#44E56A&quot;, &quot;#62E544&quot;, &quot;#E544B4&quot;, &quot;#E544CB&quot;, &quot;#4C44E5&quot;, &quot;#E544E1&quot;, &quot;#E59E44&quot;, &quot;#4453E5&quot;, &quot;#E544E1&quot;, &quot;#E54444&quot;, &quot;#44E56A&quot;, &quot;#E544E1&quot;, &quot;#A5E544&quot;, &quot;#A5E544&quot;, &quot;#E57144&quot;, &quot;#E55B44&quot;, &quot;#8F44E5&quot;, &quot;#4C44E5&quot;, &quot;#A5E544&quot;, &quot;#44ADE5&quot;, &quot;#4480E5&quot;, &quot;#44E5AD&quot;, &quot;#E544B4&quot;, &quot;#44E553&quot;, &quot;#44E5DA&quot;, &quot;#79E544&quot;, &quot;#4480E5&quot;, &quot;#4453E5&quot;, &quot;#4CE544&quot;, &quot;#E54471&quot;, &quot;#D2E544&quot;, &quot;#E544E1&quot;, &quot;#6244E5&quot;, &quot;#BC44E5&quot;, &quot;#E544CB&quot;, &quot;#A5E544&quot;, &quot;#A5E544&quot;, &quot;#44E5AD&quot;, &quot;#44E5AD&quot;, &quot;#44E5AD&quot;, &quot;#E544E1&quot;, &quot;#D2E544&quot;, &quot;#E544CB&quot;, &quot;#E544CB&quot;, &quot;#4C44E5&quot;, &quot;#A5E544&quot;, &quot;#E544B4&quot;, &quot;#BC44E5&quot;, &quot;#4480E5&quot;, &quot;#4480E5&quot;, &quot;#E54471&quot;, &quot;#7944E5&quot;, &quot;#E59E44&quot;, &quot;#44E553&quot;, &quot;#44E580&quot;, &quot;#44E56A&quot;, &quot;#446AE5&quot;, &quot;#44ADE5&quot;, &quot;#E544B4&quot;, &quot;#D2E544&quot;, &quot;#E54444&quot;, &quot;#E544CB&quot;, &quot;#E544B4&quot;, &quot;#E544CB&quot;, &quot;#4C44E5&quot;, &quot;#E58844&quot;, &quot;#6244E5&quot;, &quot;#44E553&quot;, &quot;#E54471&quot;, &quot;#E544CB&quot;, &quot;#44E5AD&quot;, &quot;#44E5AD&quot;, &quot;#44E553&quot;, &quot;#4480E5&quot;, &quot;#E57144&quot;, &quot;#44E553&quot;, &quot;#D2E544&quot;, &quot;#D2E544&quot;, &quot;#E57144&quot;, &quot;#E5B444&quot;, &quot;#44ADE5&quot;, &quot;#BC44E5&quot;, &quot;#D244E5&quot;, &quot;#6244E5&quot;, &quot;#44C3E5&quot;, &quot;#79E544&quot;, &quot;#E59E44&quot;, &quot;#44E553&quot;, &quot;#D244E5&quot;, &quot;#44E553&quot;, &quot;#44C3E5&quot;, &quot;#4C44E5&quot;, &quot;#44E5C3&quot;, &quot;#E5CB44&quot;, &quot;#4C44E5&quot;, &quot;#44E5AD&quot;, &quot;#44E553&quot;, &quot;#E5445B&quot;, &quot;#62E544&quot;, &quot;#D2E544&quot;, &quot;#E544E1&quot;, &quot;#44E56A&quot;, &quot;#6244E5&quot;, &quot;#A5E544&quot;, &quot;#4CE544&quot;, &quot;#E544B4&quot;, &quot;#4C44E5&quot;, &quot;#E54444&quot;, &quot;#E5B444&quot;, &quot;#4C44E5&quot;, &quot;#E544CB&quot;, &quot;#44ADE5&quot;, &quot;#D2E544&quot;, &quot;#79E544&quot;, &quot;#E54471&quot;, &quot;#44E5AD&quot;, &quot;#E5B444&quot;, &quot;#4C44E5&quot;, &quot;#A5E544&quot;, &quot;#A5E544&quot;, &quot;#E57144&quot;, &quot;#E57144&quot;, &quot;#BC44E5&quot;, &quot;#44E5AD&quot;, &quot;#E54488&quot;, &quot;#4480E5&quot;, &quot;#4C44E5&quot;, &quot;#4480E5&quot;, &quot;#4480E5&quot;, &quot;#E55B44&quot;, &quot;#E544CB&quot;, &quot;#D2E544&quot;, &quot;#4C44E5&quot;, &quot;#E5E144&quot;, &quot;#D2E544&quot;, &quot;#44E5DA&quot;, &quot;#44DAE5&quot;, &quot;#4480E5&quot;, &quot;#E544CB&quot;, &quot;#4C44E5&quot;, &quot;#8FE544&quot;, &quot;#BC44E5&quot;, &quot;#6244E5&quot;, &quot;#44E580&quot;, &quot;#E544CB&quot;, &quot;#44E5C3&quot;, &quot;#E544B4&quot;, &quot;#4C44E5&quot;, &quot;#E54444&quot;, &quot;#44ADE5&quot;, &quot;#E58844&quot;, &quot;#62E544&quot;, &quot;#4CE544&quot;, &quot;#E57144&quot;, &quot;#E5445B&quot;, &quot;#62E544&quot;, &quot;#446AE5&quot;, &quot;#4480E5&quot;, &quot;#44E5AD&quot;, &quot;#E57144&quot;, &quot;#44E5C3&quot;, &quot;#E58844&quot;, &quot;#79E544&quot;, &quot;#E5449E&quot;, &quot;#6244E5&quot;, &quot;#E55B44&quot;, &quot;#E544E1&quot;, &quot;#6244E5&quot;, &quot;#E544E1&quot;, &quot;#4480E5&quot;, &quot;#4480E5&quot;, &quot;#E544CB&quot;, &quot;#E54488&quot;, &quot;#44E580&quot;, &quot;#4C44E5&quot;, &quot;#44E553&quot;, &quot;#44E5AD&quot;, &quot;#E5445B&quot;, &quot;#E544B4&quot;, &quot;#E5445B&quot;, &quot;#4480E5&quot;, &quot;#E59E44&quot;, &quot;#D2E544&quot;, &quot;#44DAE5&quot;, &quot;#E5E144&quot;, &quot;#E5449E&quot;, &quot;#44ADE5&quot;, &quot;#44E553&quot;, &quot;#44DAE5&quot;, &quot;#E544CB&quot;, &quot;#E5449E&quot;, &quot;#4C44E5&quot;, &quot;#8FE544&quot;, &quot;#BC44E5&quot;, &quot;#44E5DA&quot;, &quot;#E5445B&quot;, &quot;#E54471&quot;, &quot;#8FE544&quot;, &quot;#E5B444&quot;, &quot;#79E544&quot;, &quot;#D2E544&quot;, &quot;#44DAE5&quot;, &quot;#4480E5&quot;, &quot;#E544E1&quot;, &quot;#44E5DA&quot;, &quot;#44E5DA&quot;, &quot;#4497E5&quot;, &quot;#4C44E5&quot;, &quot;#E544B4&quot;, &quot;#E544CB&quot;, &quot;#E57144&quot;, &quot;#E544CB&quot;, &quot;#4C44E5&quot;, &quot;#E58844&quot;, &quot;#44E56A&quot;, &quot;#44E5C3&quot;, &quot;#E54471&quot;, &quot;#4497E5&quot;, &quot;#44E553&quot;, &quot;#E54471&quot;, &quot;#4480E5&quot;, &quot;#E544B4&quot;, &quot;#E5445B&quot;, &quot;#D2E544&quot;, &quot;#E544CB&quot;, &quot;#446AE5&quot;, &quot;#A5E544&quot;, &quot;#A5E544&quot;, &quot;#D244E5&quot;, &quot;#4480E5&quot;, &quot;#E544B4&quot;, &quot;#E54488&quot;, &quot;#44E56A&quot;, &quot;#4453E5&quot;, &quot;#D2E544&quot;, &quot;#4CE544&quot;, &quot;#E5445B&quot;, &quot;#44E5C3&quot;, &quot;#E57144&quot;, &quot;#E5445B&quot;, &quot;#E58844&quot;, &quot;#44E553&quot;, &quot;#E55B44&quot;, &quot;#44E5DA&quot;, &quot;#A5E544&quot;, &quot;#4C44E5&quot;, &quot;#7944E5&quot;, &quot;#4480E5&quot;, &quot;#E54471&quot;, &quot;#4480E5&quot;, &quot;#E58844&quot;, &quot;#E58844&quot;, &quot;#E54444&quot;, &quot;#D2E544&quot;, &quot;#44ADE5&quot;, &quot;#44E5C3&quot;, &quot;#62E544&quot;, &quot;#E54444&quot;, &quot;#E5B444&quot;, &quot;#E5B444&quot;, &quot;#E57144&quot;, &quot;#E544E1&quot;, &quot;#44ADE5&quot;, &quot;#8F44E5&quot;, &quot;#44E553&quot;, &quot;#E54471&quot;, &quot;#4480E5&quot;, &quot;#446AE5&quot;, &quot;#E54471&quot;, &quot;#4C44E5&quot;, &quot;#E59E44&quot;, &quot;#446AE5&quot;, &quot;#E544CB&quot;, &quot;#44ADE5&quot;, &quot;#A5E544&quot;, &quot;#E58844&quot;, &quot;#A5E544&quot;, &quot;#44E553&quot;, &quot;#446AE5&quot;, &quot;#E544E1&quot;, &quot;#BC44E5&quot;, &quot;#62E544&quot;, &quot;#E5449E&quot;, &quot;#E5449E&quot;, &quot;#4C44E5&quot;, &quot;#44C3E5&quot;, &quot;#4CE544&quot;, &quot;#4480E5&quot;, &quot;#44E5C3&quot;, &quot;#E54488&quot;, &quot;#E5445B&quot;, &quot;#44E580&quot;, &quot;#4453E5&quot;, &quot;#E54444&quot;, &quot;#D2E544&quot;, &quot;#E54444&quot;, &quot;#E544E1&quot;, &quot;#44E5DA&quot;, &quot;#E58844&quot;, &quot;#62E544&quot;, &quot;#44DAE5&quot;, &quot;#E57144&quot;, &quot;#44E5C3&quot;, &quot;#E57144&quot;, &quot;#44E553&quot;, &quot;#4C44E5&quot;, &quot;#E544E1&quot;, &quot;#44E553&quot;, &quot;#E57144&quot;, &quot;#4480E5&quot;, &quot;#6244E5&quot;, &quot;#44C3E5&quot;, &quot;#4480E5&quot;, &quot;#4C44E5&quot;, &quot;#79E544&quot;, &quot;#4C44E5&quot;, &quot;#44DAE5&quot;, &quot;#E54444&quot;, &quot;#4C44E5&quot;, &quot;#44E553&quot;, &quot;#8F44E5&quot;, &quot;#446AE5&quot;, &quot;#E57144&quot;, &quot;#E5445B&quot;, &quot;#D2E544&quot;, &quot;#D2E544&quot;, &quot;#E54488&quot;, &quot;#4480E5&quot;, &quot;#4497E5&quot;, &quot;#44E56A&quot;, &quot;#A5E544&quot;, &quot;#E5449E&quot;, &quot;#44E56A&quot;, &quot;#4497E5&quot;, &quot;#44E580&quot;, &quot;#4C44E5&quot;, &quot;#A5E544&quot;, &quot;#44E5C3&quot;, &quot;#44ADE5&quot;, &quot;#E54444&quot;, &quot;#4C44E5&quot;, &quot;#E57144&quot;, &quot;#E5449E&quot;, &quot;#44E553&quot;, &quot;#44E553&quot;, &quot;#8FE544&quot;, &quot;#E544CB&quot;, &quot;#E54444&quot;, &quot;#E544CB&quot;, &quot;#D2E544&quot;, &quot;#44E5C3&quot;, &quot;#4480E5&quot;, &quot;#44E5AD&quot;, &quot;#44E5DA&quot;, &quot;#E54488&quot;, &quot;#44E5C3&quot;, &quot;#4480E5&quot;, &quot;#E544E1&quot;, &quot;#D2E544&quot;, &quot;#4C44E5&quot;, &quot;#BC44E5&quot;, &quot;#A5E544&quot;, &quot;#A544E5&quot;, &quot;#62E544&quot;, &quot;#44E553&quot;, &quot;#8F44E5&quot;, &quot;#A5E544&quot;, &quot;#E544CB&quot;, &quot;#44E5AD&quot;, &quot;#D2E544&quot;, &quot;#E57144&quot;, &quot;#8FE544&quot;, &quot;#8FE544&quot;, &quot;#D2E544&quot;, &quot;#44E5C3&quot;, &quot;#E57144&quot;, &quot;#44E56A&quot;, &quot;#62E544&quot;, &quot;#4480E5&quot;, &quot;#E58844&quot;, &quot;#44E580&quot;, &quot;#4480E5&quot;, &quot;#D244E5&quot;, &quot;#E5B444&quot;, &quot;#E59E44&quot;, &quot;#4C44E5&quot;, &quot;#E544B4&quot;, &quot;#E57144&quot;, &quot;#4C44E5&quot;, &quot;#79E544&quot;, &quot;#E5B444&quot;, &quot;#E5B444&quot;, &quot;#44ADE5&quot;, &quot;#44E580&quot;, &quot;#44E553&quot;, &quot;#44E553&quot;, &quot;#44E5AD&quot;, &quot;#4C44E5&quot;, &quot;#D2E544&quot;, &quot;#E54444&quot;, &quot;#4453E5&quot;, &quot;#4CE544&quot;, &quot;#4CE544&quot;, &quot;#E54471&quot;, &quot;#4480E5&quot;, &quot;#62E544&quot;, &quot;#D244E5&quot;, &quot;#E544E1&quot;, &quot;#4C44E5&quot;, &quot;#E54444&quot;, &quot;#44E580&quot;, &quot;#D2E544&quot;, &quot;#E55B44&quot;, &quot;#E5445B&quot;, &quot;#E59E44&quot;, &quot;#4C44E5&quot;, &quot;#E544B4&quot;, &quot;#E5B444&quot;, &quot;#44C3E5&quot;, &quot;#44C3E5&quot;, &quot;#44DAE5&quot;, &quot;#4C44E5&quot;, &quot;#8F44E5&quot;, &quot;#E57144&quot;, &quot;#E544CB&quot;, &quot;#A5E544&quot;, &quot;#4480E5&quot;, &quot;#E58844&quot;, &quot;#E59E44&quot;, &quot;#E59E44&quot;, &quot;#4453E5&quot;, &quot;#4CE544&quot;, &quot;#E544CB&quot;, &quot;#44DAE5&quot;, &quot;#E58844&quot;, &quot;#4453E5&quot;, &quot;#E54444&quot;, &quot;#E57144&quot;, &quot;#44E5DA&quot;, &quot;#A5E544&quot;, &quot;#4480E5&quot;, &quot;#62E544&quot;, &quot;#4C44E5&quot;, &quot;#44E5AD&quot;, &quot;#E58844&quot;, &quot;#4C44E5&quot;, &quot;#E544E1&quot;, &quot;#E57144&quot;, &quot;#4453E5&quot;, &quot;#4C44E5&quot;, &quot;#E544E1&quot;, &quot;#E57144&quot;, &quot;#44C3E5&quot;, &quot;#E57144&quot;, &quot;#D2E544&quot;, &quot;#6244E5&quot;, &quot;#79E544&quot;, &quot;#4C44E5&quot;, &quot;#4C44E5&quot;, &quot;#62E544&quot;, &quot;#44E580&quot;, &quot;#44E553&quot;, &quot;#44E56A&quot;, &quot;#44E553&quot;, &quot;#D2E544&quot;, &quot;#E54444&quot;, &quot;#4480E5&quot;, &quot;#4C44E5&quot;, &quot;#D2E544&quot;, &quot;#44E5DA&quot;, &quot;#44ADE5&quot;, &quot;#E544CB&quot;, &quot;#4C44E5&quot;, &quot;#BC44E5&quot;, &quot;#E544CB&quot;, &quot;#E5B444&quot;, &quot;#D2E544&quot;, &quot;#E59E44&quot;, &quot;#44E553&quot;, &quot;#44E5DA&quot;, &quot;#E5B444&quot;, &quot;#E54471&quot;, &quot;#44E5DA&quot;, &quot;#44ADE5&quot;, &quot;#44E5DA&quot;, &quot;#E544E1&quot;, &quot;#4CE544&quot;, &quot;#E57144&quot;, &quot;#44E5AD&quot;, &quot;#E54471&quot;, &quot;#E54488&quot;, &quot;#E54471&quot;, &quot;#4C44E5&quot;, &quot;#E5445B&quot;, &quot;#E5445B&quot;, &quot;#D2E544&quot;, &quot;#44E56A&quot;, &quot;#D2E544&quot;, &quot;#A544E5&quot;, &quot;#4480E5&quot;, &quot;#44ADE5&quot;, &quot;#E5E144&quot;, &quot;#E544E1&quot;, &quot;#4C44E5&quot;, &quot;#446AE5&quot;, &quot;#E54471&quot;, &quot;#4C44E5&quot;, &quot;#79E544&quot;, &quot;#44DAE5&quot;, &quot;#44E5AD&quot;, &quot;#44ADE5&quot;, &quot;#E544E1&quot;, &quot;#44ADE5&quot;, &quot;#4480E5&quot;, &quot;#44E56A&quot;, &quot;#4C44E5&quot;, &quot;#E5B444&quot;, &quot;#E5B444&quot;, &quot;#E55B44&quot;, &quot;#E5445B&quot;, &quot;#E544E1&quot;, &quot;#44ADE5&quot;, &quot;#E54444&quot;, &quot;#44E580&quot;, &quot;#E544CB&quot;, &quot;#E544B4&quot;, &quot;#44E5AD&quot;, &quot;#62E544&quot;, &quot;#44E5AD&quot;, &quot;#4C44E5&quot;, &quot;#D244E5&quot;, &quot;#D2E544&quot;, &quot;#E57144&quot;, &quot;#D2E544&quot;, &quot;#44ADE5&quot;, &quot;#E58844&quot;, &quot;#4C44E5&quot;, &quot;#E544E1&quot;, &quot;#D2E544&quot;, &quot;#62E544&quot;, &quot;#44E580&quot;, &quot;#4480E5&quot;, &quot;#62E544&quot;, &quot;#44E597&quot;, &quot;#A544E5&quot;, &quot;#D2E544&quot;, &quot;#E544B4&quot;, &quot;#44E5DA&quot;, &quot;#4497E5&quot;, &quot;#44ADE5&quot;, &quot;#D2E544&quot;, &quot;#4480E5&quot;, &quot;#4C44E5&quot;, &quot;#4497E5&quot;, &quot;#44E5C3&quot;, &quot;#44ADE5&quot;, &quot;#4C44E5&quot;, &quot;#E5B444&quot;, &quot;#44E5DA&quot;, &quot;#4480E5&quot;, &quot;#4480E5&quot;, &quot;#D2E544&quot;, &quot;#E58844&quot;, &quot;#44E580&quot;, &quot;#44E5C3&quot;, &quot;#E5B444&quot;, &quot;#62E544&quot;, &quot;#4C44E5&quot;, &quot;#44E580&quot;, &quot;#E5449E&quot;, &quot;#4480E5&quot;, &quot;#E59E44&quot;, &quot;#44E580&quot;, &quot;#E54444&quot;, &quot;#6244E5&quot;, &quot;#4C44E5&quot;, &quot;#44E5AD&quot;, &quot;#E5445B&quot;, &quot;#E544CB&quot;, &quot;#446AE5&quot;, &quot;#E57144&quot;, &quot;#44E5AD&quot;, &quot;#E544CB&quot;, &quot;#44E580&quot;, &quot;#44E580&quot;, &quot;#44E580&quot;, &quot;#E544B4&quot;, &quot;#E57144&quot;, &quot;#44DAE5&quot;, &quot;#E57144&quot;, &quot;#D2E544&quot;, &quot;#D2E544&quot;, &quot;#44ADE5&quot;, &quot;#44ADE5&quot;, &quot;#44C3E5&quot;, &quot;#4480E5&quot;, &quot;#E544E1&quot;, &quot;#A544E5&quot;, &quot;#4C44E5&quot;, &quot;#62E544&quot;, &quot;#E57144&quot;, &quot;#E54471&quot;, &quot;#44E580&quot;, &quot;#62E544&quot;, &quot;#E5445B&quot;, &quot;#4453E5&quot;, &quot;#D2E544&quot;, &quot;#44C3E5&quot;, &quot;#44E5AD&quot;, &quot;#E5445B&quot;, &quot;#D2E544&quot;]}], &quot;xscale&quot;: &quot;linear&quot;, &quot;bbox&quot;: [0.125, 0.125, 0.77500000000000002, 0.77500000000000002]}], &quot;height&quot;: 800.0, &quot;width&quot;: 800.0, &quot;plugins&quot;: [{&quot;type&quot;: &quot;reset&quot;}, {&quot;enabled&quot;: false, &quot;button&quot;: true, &quot;type&quot;: &quot;zoom&quot;}, {&quot;enabled&quot;: false, &quot;button&quot;: true, &quot;type&quot;: &quot;boxzoom&quot;}, {&quot;voffset&quot;: 10, &quot;labels&quot;: [&quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taylor&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;harrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;garfield&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taylor&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taylor&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taylor&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;harding&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;], &quot;type&quot;: &quot;htmltooltip&quot;, &quot;id&quot;: &quot;el315824312537616&quot;, &quot;hoffset&quot;: 0}], &quot;data&quot;: {&quot;data01&quot;: [[13.9822486601, -1.67518620516], [-7.6657585814800004, 4.71481849952], [11.953091368900001, 1.8846518066599998], [-13.1931826876, -3.79026693306], [-20.8249744703, -0.29194208632], [-8.594116441639999, 19.991891939400002], [12.309062528399998, -4.552673785990001], [-8.94829926874, 17.655247944], [-14.5263100772, 3.05026940556], [14.0227108417, 18.6225906915], [-16.015264146099998, 9.79425475463], [4.72954452716, -11.036982636500001], [-7.11436814882, -17.5198771658], [2.88921621393, -15.248046445], [10.612133581, -16.757395294000002], [-10.8832746107, 10.273649325900001], [-6.31419220637, -12.497989175599999], [2.7086229965400004, -16.7717494668], [13.0497369813, 7.793971960710001], [12.0786206237, -4.81161959997], [12.4716453732, 4.53126608523], [12.1296330899, -16.2314470571], [-15.962933168800001, -1.75710262682], [11.8410201304, 3.1407473974199998], [15.3358371148, -0.37643380398299997], [-3.80889349231, 1.7587157004400003], [20.0041258812, 2.4232439232], [14.6948589494, 9.40907397533], [-13.0792763514, 8.65925929046], [-9.25900134362, 19.8370084946], [12.0839089402, -4.80517053057], [8.27376914933, 5.99695926493], [9.59225162848, -13.7918500898], [-15.577670326700002, -0.943052346372], [18.290062783299998, -4.050509695430001], [7.523933319289999, -5.072960864090001], [0.26926697107700004, -6.0998947604], [-12.051849321199999, 12.0819010821], [-19.5358535199, -12.349213041199999], [-0.040222886027800005, -4.00495985399], [-13.9887206197, 7.2800123141499995], [13.0461921276, -3.7838725390199994], [-4.385933656080001, -11.387327068], [-0.607175925831, -5.500828276519999], [12.7207082639, 2.99843526455], [-20.9127053042, -2.40128935604], [17.1288702906, -6.203037913230001], [6.936112571839999, 3.0519798752700003], [-1.0704552929100002, -4.32544845111], [-11.3417509499, 13.2763222821], [-10.6451267122, 8.57771001018], [-0.597021446952, 14.3456902243], [-9.43192164934, 16.9778618121], [15.746253728, -0.49240967437600003], [-0.379783223893, 6.84678459844], [-7.9793151356399985, 7.48555227182], [15.749833613, -2.1953916091599996], [4.17031968615, -7.87615740065], [-19.6417280387, -7.05451767368], [11.392329265199999, -15.1593972594], [-7.9681393724300005, -12.7369948973], [-13.848040190699999, -3.33954236449], [13.3014058854, 8.66983246721], [-20.50291124, -1.1276939574299998], [-5.621035339680001, 1.3887063939500002], [13.543839731199999, 15.4397369184], [-19.3174220617, -13.0993786789], [-16.4498567401, -1.9008199408400002], [7.283635575519999, -14.3768329822], [12.9697499977, 7.7403271791199995], [-23.6290563683, 10.4989040704], [13.207952783900001, -18.9640518233], [-8.2437242748, -12.561653329], [-6.51238765676, -17.3302565204], [-24.5957788929, 10.7712732574], [26.1489116072, 0.249670216289], [-20.3128844649, -13.2767761549], [-17.4898009902, -8.25746686484], [-12.738937945899998, -7.00942738513], [-22.0800672124, -1.10947336675], [-8.67868639302, 18.8387881452], [-14.535900316700001, 2.9699036312800002], [13.2178151146, -18.8981502681], [0.5333139687139999, -5.17979745504], [-7.4897585506699995, -16.1642618443], [-21.2685991987, -1.58742508266], [16.5082824579, 13.0145805305], [18.5775529433, -2.90830102194], [2.7493575450200005, -14.9800101032], [14.958833096400001, 17.7663750232], [-15.1943963687, 8.7220917659], [-8.07420090359, 7.96617525989], [17.8736084086, -6.70959706281], [-7.579547149650001, -3.86759716007], [-3.93576525488, -12.9752090836], [-7.370567426519999, -16.9906913527], [13.4242954773, 13.0362430101], [-13.4700949224, -4.37246271365], [13.584610671300002, 16.5634780488], [27.395200862, -1.8367899865400001], [-20.0671042211, -5.41809760046], [17.1890873662, 3.8575618824699998], [12.342847421300002, 4.69407662364], [-7.49859979888, 1.77044797072], [2.7206940446599996, -16.6095387184], [-20.080510113800003, -4.91475107709], [16.9654684293, -2.368716956], [13.1429577889, -18.6172778434], [2.5601161901, -15.5817167748], [13.3551514958, 6.85835147174], [-13.3439668689, 8.39783533762], [27.129381806799998, -0.8428207117730001], [4.7454695964499995, 10.5371088068], [-7.7919798139, 5.4884216310800005], [-9.14446424789, 13.6063134348], [-22.471489992800002, -0.713937429255], [-9.16409271055, 1.707448395], [-15.828253949, -9.9416614268], [-10.3828512114, 7.465277873250001], [-9.5709953853, 14.777120937100001], [-0.485860304378, -3.41078380887], [10.3565836323, -14.6636657527], [-22.8513159007, -1.43503033257], [25.459328304499998, 0.203741631629], [-20.9413767786, -2.24706314795], [-18.6283605466, -12.2967120928], [-8.174392806839998, 19.4346119301], [6.68424428206, 3.12760289355], [-16.0180712294, 2.49937613704], [11.7256657102, -15.430330099], [-12.5493825774, -0.5860802748430001], [18.9534938211, -4.47065638941], [15.601873649100002, 1.97252945727], [18.1047062568, -3.0260944944999997], [-7.80228557214, 6.251421065800001], [14.138145663800001, 11.3192238095], [13.1148874648, 10.2253661364], [15.915219911500001, 14.431347593900002], [6.05475885524, -11.0793429266], [-13.8979753958, 13.727867455799998], [-12.0344883095, -9.131861083139999], [-16.6429682238, -6.638598254580001], [13.6823669298, 12.375505723699998], [-6.511309691159999, -17.2825946558], [0.0413917940369, -4.96996148801], [0.046361763505, -3.36090877903], [-12.9477551071, -4.74108292938], [13.2637004693, 19.2081424175], [-12.785641115999999, 14.8278833653], [12.4849148353, -19.161629103499997], [7.596456878560001, -14.289664424300001], [-23.6758579452, 8.145579699439999], [28.040073620799998, -0.578167594998], [-15.688167303800002, -1.15056995381], [-18.4512878285, -8.30597498814], [12.339534269400001, 11.6544182895], [-17.145371641300002, -10.0471748653], [-24.6592045198, 11.0004542553], [-12.6941705228, -8.58615682504], [15.1826880329, 3.59578771864], [-23.811352732, 8.85345843291], [-6.737730463019999, -14.4667764023], [-16.757154311199997, -11.1820845332], [-12.4118117723, 5.91801088238], [9.450884628189998, -13.6422037495], [17.9839719828, -7.310832670339999], [18.4648130641, 3.1894597785000003], [25.7463544657, -0.770221817036], [15.0507779384, 13.351603322599999], [-2.8052649543299997, -11.9845343125], [6.08755713585, 3.6183546567400002], [20.0774879536, -3.5550222035], [-13.9175388656, -0.35363315668000006], [5.9549580911, -5.42190331372], [6.00538500135, 1.80039326134], [-12.821089976600001, 7.99454071916], [-21.3883492985, -1.9421908479499999], [12.8580350332, -18.0021045857], [-3.8092223333800006, 1.7586813079299999], [-10.8589543442, 9.10051692151], [-8.27208407143, 19.2040416639], [-13.283533333900001, -3.9552703597199996], [10.5851955482, -12.413680033499999], [12.412999222, -18.7360743702], [16.4563611885, 13.341662317599999], [4.79476012462, -10.857486440799999], [-8.29690557899, 8.96068068832], [-15.509920991300001, 8.796334835], [17.067873357899998, 14.773709043499998], [-10.3069426169, 1.31385555918], [-7.572782481849999, 1.86474475498], [8.477087831819999, 6.4588032591], [15.315628669, -1.27293078684], [13.048671777400001, 7.198639795810001], [-7.33214881134, -17.1774085433], [-19.2334841189, -1.60225416509], [16.4683087037, 13.3121579324], [8.256708920680001, 1.8390825171400003], [-8.384587184139999, 10.502168963099999], [10.8733595684, -14.5473130172], [-13.8607098473, -9.460515181649999], [-14.0440903417, 6.9188447036500005], [-9.19968638575, 19.0227131187], [21.9070064708, 1.16396569755], [12.986791703900002, -18.4605807381], [-8.54854318453, 7.806924508430001], [-10.6823185186, 16.8688439523], [28.378011807399997, -1.19296368969], [6.945921845589999, -5.27228240837], [23.330013096, -2.54286337059], [-20.7334369959, -2.32631449318], [-6.80889052537, -17.445421224], [-9.72932570403, 14.5104148047], [-13.1175016376, 10.7159872558], [-5.35494717742, 1.41626748722], [-19.2290100289, -13.152504521], [8.50010737586, 5.34376078287], [-13.2421591022, -4.28805270054], [-1.78619217845, -8.2012279585], [21.4109124944, 1.65467078758], [-13.0645281465, -9.01736119793], [28.102621904299998, -0.603648537526], [-8.53624353228, 16.4501452398], [-8.107288445830001, 7.2379689651], [12.8631258126, -19.2128381468], [28.103476685900002, -1.74240762303], [-7.406703853630001, 7.916460740160001], [14.527618891900001, 2.8640165906299995], [-17.035327067, -10.1096338122], [13.195506701700001, -19.0028388482], [6.5306426903400006, 2.5082678169299997], [-8.575412147160002, 19.2159107716], [-12.7731888404, 14.865315419000002], [-14.737212726600001, -9.879729221729999], [16.3552536014, 9.139711354780001], [-6.631118111699999, -14.8583891074], [-9.01696969753, 17.3295337876], [-10.7387736742, 8.072976420660002], [-0.980096162187, 1.24744736155], [8.10819549439, -0.8718407270209999], [-22.9095007865, -0.8026475155509999], [14.9750000977, 14.754122909300001], [2.70958191343, -16.7669133291], [12.010939620899999, -18.4808250619], [-1.68948830461, -8.07340777205], [14.097778399000001, 4.05732795706], [-21.004079236400003, -2.0877121180300002], [12.2926816918, -17.8398129524], [13.5500189631, 18.1482171776], [-6.53206826298, -17.3773178348], [-19.5518255424, -13.765872498499998], [-0.0860091713278, -4.09896564241], [-17.6612978274, -9.39121998748], [19.8385661151, -3.6993120384199996], [-8.27409458637, 1.5451476254499998], [-8.11454163163, 8.222112749179999], [14.7168516349, 6.83650006728], [-21.184687398199998, -1.89097690838], [-6.525515138230001, -17.0156959173], [28.224768466599997, -0.755090344688], [3.6362469425099997, 10.5142585166], [-23.494730386700002, 7.6119681435699995], [-9.17719946076, 18.2394303859], [12.4667976315, -17.721253440999998], [-16.8648450063, -8.916941293310002], [-8.46415036509, -3.88063393828], [-15.3442175078, -10.2308737022], [17.114562849000002, 15.228872646300001], [-14.0146790919, 13.235793371600002], [15.050488658199999, 16.3846051124], [2.7023388915400006, -15.4398424453], [-15.6123054214, 2.36387827246], [-7.61772461215, 5.375794669480001], [-4.71956884999, -13.851182643], [13.0553404671, 4.2749381815400005], [-8.73100926639, 1.6726589168000001], [18.362039625799998, -2.86148566418], [14.939702431099999, 16.8055091799], [-12.3551387963, -9.224411340269999], [28.4378194346, -1.3671304380000002], [7.52013395135, -14.0699448621], [8.849703613460001, -10.0899091858], [-9.196496969450001, 19.909005556], [7.26840696342, -14.3647593349], [0.00429425913868, 14.145929156300001], [-23.349651403200003, 7.8712242763399995], [6.849374238080001, -4.84384494646], [-0.47607316973999997, -3.36876410607], [-11.830593648299999, 11.014850864300001], [16.7765930979, -2.17894009302], [2.7091303201300003, -16.1099199311], [-7.50680856533, -14.5001026316], [-9.48872829227, 18.5265197366], [13.895070472999999, 4.76989748074], [-13.2512122898, 5.24817227459], [-10.4692934714, 8.468934703], [13.859947036900001, 19.435842932899998], [5.06789698246, 3.51990855694], [-6.5660855396399995, -14.1021932112], [27.963315541, -1.92928922498], [-4.7829740908, -11.581203983800002], [-4.14534405019, -14.3257629122], [-23.484162327600004, 10.409074632100001], [12.7761053955, -17.6932570949], [5.08290210693, -8.0183012887], [12.2789093615, -18.1026602447], [12.163412438599998, -18.437977846], [18.6712819116, -3.3453292811799997], [18.2015598447, -6.21549475535], [0.484693821312, -4.5278277971900005], [-3.8032994633099997, 1.76282962593], [-13.9678144827, 6.983667866449999], [-19.9830919685, -13.8935055919], [28.3042493328, -1.71765325984], [2.7103642634400003, -16.7652110498], [12.3599098169, -4.4986975709], [-11.67883141, 13.0203784289], [-22.3730571452, -1.6098735120899998], [21.5366726781, 1.59192928758], [-15.1205362678, -2.5396067954599997], [12.954192266300002, 2.07966191748], [-6.35008978515, -16.7136576632], [16.0076085594, 9.60248182374], [-8.34905789731, -12.388661093800001], [12.6757377177, 3.4310924955699997], [7.15853686472, -5.09172819024], [1.08983673115, -8.782569651180001], [-6.925010240010001, -16.0479886275], [6.83134045454, 3.44917276875], [-24.5857544588, 9.71795024224], [7.25985899615, -14.3411373398], [-14.491665319500001, -1.5657092068599998], [-24.244888159600002, 9.51989578751], [-13.1905888024, 10.541280634400001], [-0.44600281107100004, -5.35244292239], [-2.00678183577, -15.7557135936], [14.3079608468, 18.504901626600002], [-15.6377856681, -1.35297317929], [19.661139988, -3.33115692924], [28.2881436063, -0.9143718205920001], [-7.41497606266, -15.1127505253], [-8.346288877580001, -3.97675920629], [-15.7421927644, 11.6220249461], [-6.70904075394, -16.6272861634], [-12.639050116099998, -8.103294440710002], [-13.5646078225, -7.83377717093], [-18.7193665425, -10.889636146199999], [6.35351818959, 2.17535568059], [-0.658218510634, -4.05128967715], [10.2576348406, -12.0077862633], [17.1712550671, 15.220341494200001], [-0.336470608522, -4.6707193807], [-2.7157973152099997, -11.982605576], [22.3022434479, 1.1918832141700002], [17.9213533449, -7.119681202050001], [6.060499279480001, 1.06090501059], [14.1955863828, 19.240049740899998], [-3.8892249796199994, -12.034442520499999], [5.94967040487, -10.9837705464], [-23.7375005125, 8.64139608946], [-5.05617113232, -14.7745041472], [5.016198834690001, -10.9901201374], [-20.2989585774, -13.420903994100001], [27.5382443225, -0.710505686976], [-0.803537339869, 14.2500687232], [-12.450580199900001, 14.743218253399998], [13.280443863199999, 9.655311914], [-4.4066653569800005, -11.2440407282], [17.9730494437, -7.31079239589], [-15.3183156876, -6.819544576959999], [-0.533351220581, -5.994279257890001], [11.0922108577, -14.673524663], [13.5926141074, 16.545565047100002], [26.676257369899997, -0.249102475204], [-24.4927791928, 11.0204360179], [14.2527028073, 19.154797903800002], [4.75931419591, 3.71936467727], [-22.441529739299998, -1.1655968360200002], [-12.2943979832, 4.34568419751], [-2.1035884887900003, -8.5383164807], [-11.855239349400001, -9.295055124520001], [15.3374619801, 6.951345391799999], [7.380317603189999, 0.914165147164], [12.0976302366, 3.6059283963199995], [27.810232462800002, -0.49429485874300005], [-24.3107958061, 8.9806713916], [-2.35223717512, -12.733819119000001], [27.795642754899998, -1.2420441869], [-8.445926433010001, 11.3930571269], [-8.44231273134, 11.4062011817], [9.72887232545, -11.2650522999], [27.123592890500003, -1.34848958778], [11.242707397, -16.532214008900002], [-13.8670297113, 3.7726605648500002], [-20.4280135223, -9.39392408627], [-23.03006319, -1.3142951543299999], [-11.4629897245, 13.7667005522], [7.4333392594, -14.2721159344], [-22.9978350244, -0.8589809925740001], [1.08971904649, -5.352188280930001], [-12.748660256600001, 5.84495315877], [7.44254567288, 2.40855798254], [-13.163852009700001, -9.18510670207], [-9.370939887210001, 19.539460146], [13.425887400699999, 10.5585113863], [-21.991273794899996, -1.06028163501], [-20.6358565098, -1.0779684654100001], [-13.999650461, 12.8031162801], [24.9488421622, -0.249917237003], [12.0751714548, -4.817001525019999], [-5.37478662342, -14.909907775399999], [18.1192403157, -6.627931769680001], [-18.914813481099998, -1.64347676811], [23.3177365998, -2.65012821565], [-6.7597495973, -17.528519972], [-10.730820461799999, 7.841755242760001], [13.1236213775, 18.933379215], [-0.8285429136139999, 14.003937371800001], [-15.7601062341, 14.5748628068], [16.709955896300002, 15.2386814077], [13.2545239145, 18.5122062512], [-8.25199545573, 19.7126889301], [-23.6389742887, 10.3749192263], [27.50729539, -0.7670827036839999], [-3.8267784540699994, -13.4152923798], [-7.98050758403, -3.76458759389], [8.06623952044, -0.638398116065], [-14.601524517, 2.85879258126], [18.0542372893, -3.7812767858300003], [-21.4649517795, -0.621518564529], [13.003456328, 8.07083356502], [18.2274158382, -5.81760393364], [-0.491921605943, -5.69817893237], [2.7365665687800003, -16.4042188148], [13.821220605399999, 2.15758913195], [-0.526013178129, -4.91964755459], [20.52723053, -1.1087139284999998], [-8.52652699579, 16.4121902022], [-10.553790894199999, 11.4707654974], [-0.472886627875, -3.36688391786], [-3.7074670610300005, -15.2182429691], [15.3333201705, -1.9680543651400002], [-14.4444189556, -0.908378791163], [24.789241252100002, -1.0384750169299999], [8.719106797030001, -11.4306327451], [-17.3388067602, -7.492272722849999], [2.7232497728099996, -16.33087042], [-19.5729762036, -13.854675690699999], [-8.46951490272, 16.7359842743], [12.5708198303, 2.74240848865], [-18.1532905291, -11.6480516877], [7.81542721757, 1.3573365866799998], [15.1352583335, 14.898732786400002], [12.438869442, -18.739812121099998], [-13.074396715799999, -8.85665290897], [-6.086841580730001, -12.392414036099998], [14.6624818308, 3.7539993159699994], [-14.353907387000001, -0.6657613731199999], [27.5626415776, -1.19398775221], [-23.7424966179, 8.567532693839999], [12.539544353399998, 5.12461372792], [10.134753417899999, -12.0318631439], [-13.376131423599999, 14.3084925115], [-20.041761968299998, -13.8477262809], [-3.8087943777599995, 1.7569684861400001], [19.541345190999998, 2.5968681618400002], [6.83167026591, 3.0609904902900005], [12.8721531845, 6.0471795021000005], [-1.55920194237, -7.69462948125], [17.35893101, 2.71185275603], [-3.8061475654000003, 1.76001759747], [20.242158148199998, -3.4690455063199996], [1.95207283458, 4.401564861040001], [-20.8241777149, -1.58399159704], [-9.095862332080001, 13.9391270032], [-15.381013859300001, 8.888459494480001], [1.0622843075, -8.67598565907], [-7.501666609189999, 1.11065340611], [-12.0983738776, 7.61948706962], [-6.46504716752, -13.434147791500001], [-18.6134151893, -13.1018111777], [-22.1750113321, -0.7746282913089999], [-14.014522333, 14.2133682698], [8.770052187380001, -12.4431029968], [-0.610563127132, 14.7347644648], [-8.77794765062, 11.2766817966], [-7.09700866702, -16.7724376139], [14.8774999104, 14.4400726639], [-7.445426775739999, -3.98266185754], [-0.364857898535, 6.849272322769999], [-12.331996370899999, 5.3320195866699995], [-11.479954601300001, -9.44662039607], [-12.7187020692, -5.57392457936], [13.006120857300001, 6.465166496849999], [13.412459757799999, 1.84755716284], [6.3188196776600005, -11.156410681099999], [6.39944777632, 2.13783100572], [-17.7394215744, -10.2154488479], [22.8539344542, -3.8223328872000004], [27.2612240781, -1.5622702247600002], [-7.120744130399999, -10.863909108900001], [-14.8048962358, 2.89343402582], [-7.3776477502399995, -17.1866655753], [13.6437634009, 19.4897057557], [-8.15154955615, 7.84356557959], [26.208864416500003, -0.8926758449850001], [-8.8952464971, 20.0176364468], [-19.1195545164, -11.5644466627], [-19.21106312, -0.353994745147], [-8.04866546476, -13.9749016726], [6.81356696144, -5.733516133659999], [-10.4725149471, 11.680433020399999], [3.8116108499699997, 10.517565259], [-19.9638051867, -13.1014011757], [-15.8086231268, -2.22414649727], [-21.810960120300003, -1.8084024376199999], [13.213612243800002, 9.9541688295], [-8.87315095938, 9.671584079430001], [-13.0495735839, 10.9110780678], [-16.9321313003, 14.6056611152], [16.4173566105, 13.2131420447], [-3.4263021963200004, -0.9669163450370001], [-0.415078964686, -4.17785233227], [8.06517455288, -12.390518211400002], [13.9727555068, 18.8809327126], [13.609603079700001, 18.2445739467], [14.1117395086, 16.2766591157], [13.4014513185, 7.716408823969999], [-9.27781732249, 19.4500840159], [16.5256278009, -2.98200029838], [0.058617175668900005, -3.37057584988], [22.3371489652, 1.1817811290200002], [-1.4577991564500001, -7.8531841161000004], [-4.647011442769999, -13.923201546600001], [-11.429347198399999, 13.1327817283], [13.646833696500002, 2.1152586511], [6.939299077799999, 3.5683124457599997], [-22.939092976799998, -1.40759529117], [12.5649514455, 3.2486040342], [18.3081338348, -3.1236742495499996], [-22.455757415100003, -0.739337343846], [-3.95172036193, -10.8737566347], [27.4831696834, -1.89010026777], [-14.525127788499999, 12.1498932974], [12.5108007025, -17.0207891316], [-7.362062560139999, -17.3184512943], [14.600160526500002, 3.28632595275], [18.3265752405, -5.95334508885], [12.0750751069, -4.81616445848], [22.940269852800004, 0.920541315379], [17.9792002475, -7.31046140177], [5.56436016255, -10.992660378499998], [-24.0932659317, 9.98301464727], [11.326834569, -14.869147091199999], [16.4036907424, 13.3621023586], [-9.966985014310001, 13.65542534], [11.274091976, -14.8585748871], [14.8041213028, -1.47871816293], [-16.501043386, 11.9207606023], [6.95808970733, 3.45988681422], [-20.0690466616, -5.37686065485], [13.4001072849, 8.54895269599], [-18.3594373287, -12.4009002641], [6.78859303987, 3.35809663718], [9.65208199906, -10.6084273001], [-8.67281694865, 17.0715651169], [-8.121384754680001, -4.823500500480001], [7.66118030671, 4.785091749059999], [12.3129123948, 4.71394941865], [-18.9901125144, -10.0109797987], [12.7585438003, -15.673248911199998], [-9.778712312160001, 17.6139773911], [-6.950605224919999, -16.1807097578], [-13.6839219954, -3.4401743222900003], [-25.1366604818, 9.05691321085], [3.52506172948, 10.5554715392], [-8.7927411579, 18.9362626118], [-1.3827341382499998, 13.7305582969], [-6.50072375472, -16.2366780989], [11.046371625799999, -14.6503613223], [-8.16081362572, 7.416664150369999], [-19.557508587, -7.818668095589999], [20.2274068895, 2.08891868582], [-23.8949829767, 9.44291665041], [13.366956330699999, 18.7865265048], [15.2855715271, 0.17290232434099997], [-3.8045207112800004, 1.7601976438599998], [2.4689886542200004, 10.5538746263], [6.88989719412, 3.09115099684], [18.5427223005, 3.20200974833], [-9.28079765603, 19.3815174712], [-11.787339875999999, 9.53021050096], [-7.15829086361, -16.693089003900003], [6.89247700582, -7.365178404], [12.6086754881, -19.219578293199998], [-8.235394753660001, 19.2384819845], [-10.6623001137, 11.093467047799999], [-6.33473949947, -10.6596758277], [-2.49817444523, -15.4017279473], [10.9303077632, -17.3791792302], [-16.0880866268, 14.0780747253], [-9.50399375895, 16.1894365221], [7.07908732863, 3.6560786122000004], [-24.5759130135, 10.588308758], [11.345273710299999, -16.7629187034], [12.5514777122, -16.9666654955], [-0.0500942948663, -3.33505385164], [13.774052099, 17.412039564100002], [-18.7296111533, -12.180125625799999], [-10.8439124768, 16.6755497979], [18.959850056, -4.49147105497], [-1.4871166408200003, -7.96312484215], [-3.74338140561, -11.1134661603], [23.1601233057, 0.851972380599], [-14.1978632021, 6.4355746601], [18.9973386245, 2.84885896383], [-13.112832727899999, -5.6264971601600005], [-0.054487956582500004, -4.5326287152699996], [12.8096998552, -17.301239462799998], [-10.5742424596, 11.4147838794], [13.246334131700001, -18.2294442746], [-21.114666347300002, -2.43274512647], [8.220068227310001, -11.6401433553], [5.29771568172, -11.006545120799998], [-14.840244907799999, -0.929138527172], [28.042385682600003, -1.8846674963999999], [-15.6621572724, -10.4108716554], [-12.552918610699999, 5.421521844730001], [10.3613634008, -12.170453430699999], [-2.35864500376, -12.8313491427], [-9.335761619169999, 18.8959346729], [13.9803482653, 18.7719221155], [-2.82936055379, -11.9857997904], [13.562508664000001, 17.4057058697], [13.106101006500001, -18.060321363499998], [-14.137217267899999, -3.1880881168700004], [11.237621781, -17.8934720028], [-6.34141751273, -12.765035573499999], [-14.0470287352, 12.8499004899], [12.732978453, 5.14008655462], [12.2955095229, 4.19680289482], [-6.69241302949, -15.1503308285], [12.4860599578, -16.7123123802], [-8.364575584439999, 19.8411317], [-9.56012806792, 16.5474118009], [15.321769163299999, 9.7300347698], [-10.6971752666, 13.6054428466], [-14.4089311821, 12.864118904200001], [21.845099752800003, 1.4281210045100001], [-7.77221080151, 17.0717491316], [-4.33396251522, -13.1039887597], [28.4241932539, -1.06437954282], [8.30384596407, 3.3142106234599997], [-23.8968384765, 8.844181614470001], [2.6580272111900003, -16.136082685399998], [-8.85377678102, 19.3572552567], [-23.5676207273, 7.976988369630001], [12.9385812952, 6.6407667346000006], [16.1527536474, 15.019525643699998], [18.7851349833, 2.81353814073], [-0.488556339528, -4.66313314264], [14.3790796148, 11.654156379000002], [-6.19379987848, -16.0196343744], [0.989613708241, -14.4268943558], [11.752745714200001, -18.0039262069], [-20.245559006500002, -13.2187157775], [-6.5810433314, -14.3116324106], [27.2749371969, -1.3673051318], [-15.549303865499999, -6.860241713330001], [14.3205967209, 17.0417620763], [13.319301474000001, 18.755331105], [13.6277744079, 10.3951739417], [-11.0102688026, 14.7762029399], [15.4236212827, 15.1331886], [13.912877520599999, 19.4262818922], [18.0600569553, -6.672627275549999], [-16.4844686111, -1.9540960970400003], [13.369790986099998, 19.2964709994], [15.2796727078, -0.5713871915300001], [-7.21558754114, -10.8707800632], [2.83558218429, -15.926985791099998], [-23.1215318763, 7.467028985680001], [17.9450087913, -7.20293526624], [-24.5471465995, 10.2623312846], [2.74034701176, -16.2754049724], [22.3234166608, 1.18203401491], [12.027180180799999, -16.1153622524], [11.648660958599999, -17.3253239233], [12.6277842927, 5.36547917572], [-12.9519244276, 8.95076300991], [13.503608825599999, 18.157032605599998], [-9.313322518560001, 19.8007344506], [-6.768005408830001, 0.9827030068970001], [10.3588142065, -16.1052505324], [-23.7366487058, 9.64941656674], [-12.0613578266, 9.40474226947], [17.3873357553, 2.16846395918], [16.3091579297, 9.14664621049], [-11.8881627327, 12.4965327793], [13.558470746300001, 17.6308540265], [-21.6913155621, -0.8203562368289999], [12.3640355678, 4.41582877154], [-16.3454589509, 11.9480249496], [-9.71071764168, 13.9679916748], [13.2673659152, 10.2935672617], [-8.82848444399, 19.9782526671], [-19.436654059200002, -13.581308103800001], [2.87620108472, 10.5350185115], [-19.0864173615, -8.340855839660001], [13.6563987793, 15.4757557103], [-3.8046355396199996, 1.76138955999], [24.7338411581, -0.454341793918], [-19.5522513449, -13.815092762], [-16.7299739227, -8.30995494786], [26.603069137, -1.3104937405], [-9.17684746798, 7.125071310730001], [-13.4779647368, 9.675881349680001], [-23.635541922399998, 7.908006888080001], [18.4968596837, -3.6920338362900003], [0.0322125724347, 14.1920575427], [4.46303894188, -11.053977834200001], [-10.964979958299999, 15.2147363194], [-3.8076049743400002, 1.7587082189200003], [-7.131391539430001, -16.2363053218], [12.8243315607, 6.39073132309], [-7.21984572411, 1.01888818942], [-23.8910798254, 10.4298857308], [15.170817435899998, 12.371940294200002], [13.670668103199999, 15.280136152599999], [-7.45470758589, -17.224294733900003], [-17.5419901401, -8.42347498477], [-6.94460985704, -17.590971156], [-12.1420681145, 5.06120859325], [14.8796764323, 17.8715578995], [-16.7536090587, 11.7985599995], [-17.3227923782, -8.32323778392], [-12.503709951400001, -9.20947082981], [-19.292347953900002, -12.676344930199999], [0.628808731165, -4.11264316231], [-16.2576391292, 2.5361871252], [-15.425528039200001, -8.80311750161], [12.1275204031, -4.749463925440001], [-15.8796288372, 2.6827874388599997], [19.0127540196, -4.38157774646], [-13.063755374200001, -9.17961926252], [16.9823283424, 3.5057663877199996], [4.36856062384, 10.5485788289], [-21.420865701, -2.2380197151499996], [23.4205379325, 0.755364135715], [12.235591488699999, 4.55655822715], [-10.6451870374, 15.1389169002], [0.060854382846, -3.42503277879], [-12.7384178974, 14.895959941300001], [23.2610993786, 0.24211542115200002], [13.487218286900001, 19.399684757], [-8.2864436583, 19.739151470699998], [15.835433638900001, -2.55199849571], [14.7198704602, 17.3199442677], [12.6717998736, -19.1021704274], [13.3054327565, 12.5675377216], [-19.6877235943, -13.2128375776], [-10.0339471063, 7.63933642218], [-12.2736631354, 9.292897068250001], [-17.4115480945, -12.369161486], [-19.4192495112, -8.81552154584], [-12.182482314100001, -9.17614875625], [-7.85204052722, 6.83762231125], [-19.3464308886, -10.2220751863], [0.0539196714076, -3.3801945682300003], [13.527656123699998, 0.608840100367], [8.549029924380001, -11.2923576594], [-9.185667245489999, 5.89599601731], [13.2593236197, 10.986644907], [27.260005377, -1.81199291936], [-19.7059664461, -6.76391815429], [13.318123576, 12.6093177762], [16.2387139724, 13.1373264298], [6.0923994635500005, -11.063182453800001], [-4.0950174882, 1.28679717482], [17.9699145931, -7.282112479049999], [-0.8496518399359999, -4.19393309435], [-8.61643266554, 10.9111642646], [-14.3120675322, 13.5477530001], [-23.6530937777, 8.31581398844], [13.1411440083, 18.9674861652], [14.7979954144, 17.857272131600002], [4.169373328480001, -6.5918779792799995], [-20.1811371645, -13.7460038108], [10.6358146761, -17.3025978094], [-2.2343646549200002, -8.71809967085], [23.3790828704, -2.42297937961], [17.590199057, 2.86420671098], [-19.3941156468, -1.55509171292], [-5.07568256232, 1.07818728999], [9.80038337337, -11.0166411941], [16.3752422168, 9.22127078416], [25.028170825900002, -0.39793928967799996], [-8.70918825096, 10.2396089191], [27.603147307399997, -0.542625749905], [-14.5657027002, -9.81654654042], [-19.6297806767, -12.801373981400001], [-7.77210299224, -12.401321720799999], [-1.49858132036, -7.546699199380001], [-22.701258937, -1.38881901868], [-4.26988221367, 1.57907788374], [17.8209320976, -6.28474435835], [-3.1184616757300003, -1.85310530003], [11.900973309600001, 4.06105754995], [17.9767802828, -7.3131937377], [-20.2805898162, -13.2188060531], [17.030256755099998, 15.163377325699999], [-6.19656851641, -15.7525191425], [-10.3740713639, 17.508367219100002], [0.38821623200800004, -4.38739131218], [28.4095451411, -1.4948299198500001], [-18.5690411492, -9.36181171572], [-12.2371471771, 6.207635535730001], [4.88951079975, -6.662342353860001], [-17.068656937300002, -11.4204869374], [-17.445769864200003, -8.12802614536], [-22.972788115500002, -0.839913967554], [-8.604905748060002, 17.694194793199998], [2.34668325753, 4.57382854591], [8.51006131552, -12.65216443], [-24.6011782264, 10.9383483372], [19.931188661300002, 2.33639984893], [-14.7196643467, 2.6864028928099994], [-23.0613136331, -1.2051970760500001], [-16.0796182141, -9.92545365215], [-14.946759039000002, -9.773499145339999], [-8.45672130423, 16.1558812867], [15.51031327, 10.7863190023], [0.638246985831, 7.61004192222], [18.4664526449, 3.25538503327], [14.258866154000001, 19.1342290547], [-24.675315685900003, 11.0510309993], [14.0313257202, 18.586835386700002], [12.789717668800002, -18.4795772887], [-8.47937307487, 19.167661704], [13.0167084547, 0.503476204328], [8.11914198126, 5.528813059249999], [16.7546103878, 12.614746139100001], [-6.33059352032, -16.699104301600002], [-23.4534203594, 7.82476767521], [27.0799577026, -0.735072414865], [-21.597601636300002, -0.945275875871], [-7.757502455089999, 1.16593997347], [24.4033357027, 0.372153264655], [-19.7723862557, -12.760980587999999], [27.6522134985, -1.93602634854], [-24.1179747269, 10.6829310593], [13.908956735599999, 10.976919309100001], [13.196204722300001, 11.017950518900001], [15.2031748898, 12.154606870699999], [18.0220676037, 0.32974664558899996], [-8.684044523719999, 20.028293505], [13.0311338617, 7.35024694593], [-0.956129983526, 13.487884043800001], [-13.4636913757, -8.13520068788], [-6.65315645403, -14.948543773199999], [-0.486347416721, -3.4321509741900003], [7.65193918307, -0.29863296826200003], [27.7095409667, -1.23954641531], [-9.75518145627, 13.8216637177], [16.043884943, -2.75612862482], [-10.8715481738, 8.59112361737], [-24.3781432027, 10.9471062491], [12.6346389423, -3.8183784571300006], [-10.6370180179, 11.2191795621], [-0.804138437853, 14.295129937], [13.4010226719, 13.038650736900001], [15.2781625892, -0.240628014113], [-19.6690611481, -13.8386023915], [-7.873703064710001, 6.7630687648], [0.73619568484, -5.2272990329199995], [8.70833696041, -10.8647421999], [11.992734903699999, -18.5598309532], [-20.2310125355, -13.5814960235], [-6.45248930506, -13.371081621300002]]}, &quot;id&quot;: &quot;el315824382290576&quot;});
      });
    });
}else{
    // require.js not available: dynamically load d3 &amp; mpld3
    mpld3_load_lib(&quot;https://mpld3.github.io/js/d3.v3.min.js&quot;, function(){
         mpld3_load_lib(&quot;https://mpld3.github.io/js/mpld3.v0.2.js&quot;, function(){
                 
    mpld3.register_plugin(&quot;htmltooltip&quot;, HtmlTooltipPlugin);
    HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
    HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
    HtmlTooltipPlugin.prototype.requiredProps = [&quot;id&quot;];
    HtmlTooltipPlugin.prototype.defaultProps = {labels:null, hoffset:0, voffset:10};
    function HtmlTooltipPlugin(fig, props){
        mpld3.Plugin.call(this, fig, props);
    };

    HtmlTooltipPlugin.prototype.draw = function(){
       var obj = mpld3.get_element(this.props.id);
       var labels = this.props.labels;
       var tooltip = d3.select(&quot;body&quot;).append(&quot;div&quot;)
                    .attr(&quot;class&quot;, &quot;mpld3-tooltip&quot;)
                    .style(&quot;position&quot;, &quot;absolute&quot;)
                    .style(&quot;z-index&quot;, &quot;10&quot;)
                    .style(&quot;visibility&quot;, &quot;hidden&quot;);

       obj.elements()
           .on(&quot;mouseover&quot;, function(d, i){
                              tooltip.html(labels[i])
                                     .style(&quot;visibility&quot;, &quot;visible&quot;);})
           .on(&quot;mousemove&quot;, function(d, i){
                    tooltip
                      .style(&quot;top&quot;, d3.event.pageY + this.props.voffset + &quot;px&quot;)
                      .style(&quot;left&quot;,d3.event.pageX + this.props.hoffset + &quot;px&quot;);
                 }.bind(this))
           .on(&quot;mouseout&quot;,  function(d, i){
                           tooltip.style(&quot;visibility&quot;, &quot;hidden&quot;);});
    };
    
                 mpld3.draw_figure(&quot;fig_el3158243822905768379654318&quot;, {&quot;axes&quot;: [{&quot;xlim&quot;: [-30.0, 40.0], &quot;yscale&quot;: &quot;linear&quot;, &quot;axesbg&quot;: &quot;#EEEEEE&quot;, &quot;texts&quot;: [{&quot;v_baseline&quot;: &quot;auto&quot;, &quot;h_anchor&quot;: &quot;middle&quot;, &quot;color&quot;: &quot;#000000&quot;, &quot;text&quot;: &quot;D3 Scatter Plot (with tooltips!)&quot;, &quot;coordinates&quot;: &quot;axes&quot;, &quot;zorder&quot;: 3, &quot;alpha&quot;: 1, &quot;fontsize&quot;: 20.0, &quot;position&quot;: [0.5, 1.0089605734767024], &quot;rotation&quot;: -0.0, &quot;id&quot;: &quot;el315824324808656&quot;}], &quot;zoomable&quot;: true, &quot;images&quot;: [], &quot;xdomain&quot;: [-30.0, 40.0], &quot;ylim&quot;: [-30.0, 30.0], &quot;paths&quot;: [], &quot;sharey&quot;: [], &quot;sharex&quot;: [], &quot;axesbgalpha&quot;: null, &quot;axes&quot;: [{&quot;scale&quot;: &quot;linear&quot;, &quot;tickformat&quot;: null, &quot;grid&quot;: {&quot;color&quot;: &quot;#FFFFFF&quot;, &quot;alpha&quot;: 1.0, &quot;dasharray&quot;: &quot;10,0&quot;, &quot;gridOn&quot;: true}, &quot;fontsize&quot;: 10.0, &quot;position&quot;: &quot;bottom&quot;, &quot;nticks&quot;: 8, &quot;tickvalues&quot;: null}, {&quot;scale&quot;: &quot;linear&quot;, &quot;tickformat&quot;: null, &quot;grid&quot;: {&quot;color&quot;: &quot;#FFFFFF&quot;, &quot;alpha&quot;: 1.0, &quot;dasharray&quot;: &quot;10,0&quot;, &quot;gridOn&quot;: true}, &quot;fontsize&quot;: 10.0, &quot;position&quot;: &quot;left&quot;, &quot;nticks&quot;: 7, &quot;tickvalues&quot;: null}], &quot;lines&quot;: [], &quot;markers&quot;: [], &quot;id&quot;: &quot;el315824383404176&quot;, &quot;ydomain&quot;: [-30.0, 30.0], &quot;collections&quot;: [{&quot;paths&quot;: [[[[0.0, -0.5], [0.13260155, -0.5], [0.25978993539242673, -0.44731684579412084], [0.3535533905932738, -0.3535533905932738], [0.44731684579412084, -0.25978993539242673], [0.5, -0.13260155], [0.5, 0.0], [0.5, 0.13260155], [0.44731684579412084, 0.25978993539242673], [0.3535533905932738, 0.3535533905932738], [0.25978993539242673, 0.44731684579412084], [0.13260155, 0.5], [0.0, 0.5], [-0.13260155, 0.5], [-0.25978993539242673, 0.44731684579412084], [-0.3535533905932738, 0.3535533905932738], [-0.44731684579412084, 0.25978993539242673], [-0.5, 0.13260155], [-0.5, 0.0], [-0.5, -0.13260155], [-0.44731684579412084, -0.25978993539242673], [-0.3535533905932738, -0.3535533905932738], [-0.25978993539242673, -0.44731684579412084], [-0.13260155, -0.5], [0.0, -0.5]], [&quot;M&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;Z&quot;]]], &quot;edgecolors&quot;: [&quot;#000000&quot;], &quot;edgewidths&quot;: [1.0], &quot;offsets&quot;: &quot;data01&quot;, &quot;yindex&quot;: 1, &quot;id&quot;: &quot;el315824312537616&quot;, &quot;pathtransforms&quot;: [[9.938079899999066, 0.0, 0.0, 9.938079899999066, 0.0, 0.0]], &quot;pathcoordinates&quot;: &quot;display&quot;, &quot;offsetcoordinates&quot;: &quot;data&quot;, &quot;zorder&quot;: 1, &quot;xindex&quot;: 0, &quot;alphas&quot;: [0.3], &quot;facecolors&quot;: [&quot;#E59E44&quot;, &quot;#4480E5&quot;, &quot;#44DAE5&quot;, &quot;#7944E5&quot;, &quot;#E544CB&quot;, &quot;#E57144&quot;, &quot;#E59E44&quot;, &quot;#4497E5&quot;, &quot;#E58844&quot;, &quot;#62E544&quot;, &quot;#E57144&quot;, &quot;#44C3E5&quot;, &quot;#44E553&quot;, &quot;#E55B44&quot;, &quot;#44E5AD&quot;, &quot;#E57144&quot;, &quot;#BC44E5&quot;, &quot;#E544B4&quot;, &quot;#E5E144&quot;, &quot;#BC44E5&quot;, &quot;#446AE5&quot;, &quot;#44C3E5&quot;, &quot;#E544CB&quot;, &quot;#E54488&quot;, &quot;#E5B444&quot;, &quot;#E544CB&quot;, &quot;#E54444&quot;, &quot;#E5449E&quot;, &quot;#4C44E5&quot;, &quot;#A544E5&quot;, &quot;#BC44E5&quot;, &quot;#E54444&quot;, &quot;#44C3E5&quot;, &quot;#E544CB&quot;, &quot;#E54444&quot;, &quot;#4453E5&quot;, &quot;#44ADE5&quot;, &quot;#4480E5&quot;, &quot;#E57144&quot;, &quot;#D2E544&quot;, &quot;#4C44E5&quot;, &quot;#44E580&quot;, &quot;#44E553&quot;, &quot;#6244E5&quot;, &quot;#446AE5&quot;, &quot;#E58844&quot;, &quot;#44E580&quot;, &quot;#79E544&quot;, &quot;#44ADE5&quot;, &quot;#E5445B&quot;, &quot;#E5445B&quot;, &quot;#4497E5&quot;, &quot;#4497E5&quot;, &quot;#44E5AD&quot;, &quot;#E544B4&quot;, &quot;#4497E5&quot;, &quot;#44DAE5&quot;, &quot;#E55B44&quot;, &quot;#4C44E5&quot;, &quot;#A5E544&quot;, &quot;#D2E544&quot;, &quot;#44E56A&quot;, &quot;#E54471&quot;, &quot;#7944E5&quot;, &quot;#4C44E5&quot;, &quot;#8F44E5&quot;, &quot;#4C44E5&quot;, &quot;#E544CB&quot;, &quot;#E55B44&quot;, &quot;#44DAE5&quot;, &quot;#E57144&quot;, &quot;#A5E544&quot;, &quot;#D2E544&quot;, &quot;#D2E544&quot;, &quot;#E544CB&quot;, &quot;#E544E1&quot;, &quot;#E5445B&quot;, &quot;#E5445B&quot;, &quot;#D2E544&quot;, &quot;#E544CB&quot;, &quot;#44E5DA&quot;, &quot;#44E5DA&quot;, &quot;#44E5AD&quot;, &quot;#D2E544&quot;, &quot;#44E5C3&quot;, &quot;#E58844&quot;, &quot;#8F44E5&quot;, &quot;#44E5AD&quot;, &quot;#44E553&quot;, &quot;#E5B444&quot;, &quot;#4C44E5&quot;, &quot;#4C44E5&quot;, &quot;#E544E1&quot;, &quot;#E57144&quot;, &quot;#6244E5&quot;, &quot;#BC44E5&quot;, &quot;#E54471&quot;, &quot;#D2E544&quot;, &quot;#62E544&quot;, &quot;#E5449E&quot;, &quot;#E5445B&quot;, &quot;#62E544&quot;, &quot;#446AE5&quot;, &quot;#E544CB&quot;, &quot;#E544B4&quot;, &quot;#E544CB&quot;, &quot;#E544E1&quot;, &quot;#44E5AD&quot;, &quot;#E544B4&quot;, &quot;#44E580&quot;, &quot;#4453E5&quot;, &quot;#44E553&quot;, &quot;#44ADE5&quot;, &quot;#E58844&quot;, &quot;#4497E5&quot;, &quot;#E544CB&quot;, &quot;#E544CB&quot;, &quot;#D2E544&quot;, &quot;#E544CB&quot;, &quot;#4480E5&quot;, &quot;#44ADE5&quot;, &quot;#E5449E&quot;, &quot;#4480E5&quot;, &quot;#44E5AD&quot;, &quot;#4480E5&quot;, &quot;#4C44E5&quot;, &quot;#44E5DA&quot;, &quot;#E5B444&quot;, &quot;#E544CB&quot;, &quot;#A5E544&quot;, &quot;#E544CB&quot;, &quot;#E5B444&quot;, &quot;#E59E44&quot;, &quot;#E544E1&quot;, &quot;#7944E5&quot;, &quot;#44E580&quot;, &quot;#44DAE5&quot;, &quot;#E54471&quot;, &quot;#44E5AD&quot;, &quot;#4480E5&quot;, &quot;#D2E544&quot;, &quot;#44E5DA&quot;, &quot;#E54471&quot;, &quot;#D2E544&quot;, &quot;#44ADE5&quot;, &quot;#44ADE5&quot;, &quot;#44E56A&quot;, &quot;#D244E5&quot;, &quot;#4480E5&quot;, &quot;#E5449E&quot;, &quot;#E55B44&quot;, &quot;#4C44E5&quot;, &quot;#44C3E5&quot;, &quot;#4C44E5&quot;, &quot;#44E5DA&quot;, &quot;#44DAE5&quot;, &quot;#4C44E5&quot;, &quot;#E5445B&quot;, &quot;#D2E544&quot;, &quot;#44DAE5&quot;, &quot;#4C44E5&quot;, &quot;#7944E5&quot;, &quot;#D2E544&quot;, &quot;#44E5DA&quot;, &quot;#44E5C3&quot;, &quot;#E5449E&quot;, &quot;#E54471&quot;, &quot;#446AE5&quot;, &quot;#62E544&quot;, &quot;#44E553&quot;, &quot;#E54471&quot;, &quot;#44E5AD&quot;, &quot;#E58844&quot;, &quot;#E55B44&quot;, &quot;#E54444&quot;, &quot;#4C44E5&quot;, &quot;#4480E5&quot;, &quot;#A5E544&quot;, &quot;#4480E5&quot;, &quot;#44E5DA&quot;, &quot;#E57144&quot;, &quot;#D2E544&quot;, &quot;#44E5AD&quot;, &quot;#E54488&quot;, &quot;#D244E5&quot;, &quot;#A5E544&quot;, &quot;#4480E5&quot;, &quot;#E57144&quot;, &quot;#62E544&quot;, &quot;#4C44E5&quot;, &quot;#E54471&quot;, &quot;#4CE544&quot;, &quot;#44DAE5&quot;, &quot;#44E580&quot;, &quot;#D2E544&quot;, &quot;#4453E5&quot;, &quot;#E5B444&quot;, &quot;#BCE544&quot;, &quot;#44E5DA&quot;, &quot;#A5E544&quot;, &quot;#E544CB&quot;, &quot;#D2E544&quot;, &quot;#A544E5&quot;, &quot;#44E580&quot;, &quot;#E54488&quot;, &quot;#4480E5&quot;, &quot;#4497E5&quot;, &quot;#E544E1&quot;, &quot;#44E56A&quot;, &quot;#44E5AD&quot;, &quot;#4480E5&quot;, &quot;#44E553&quot;, &quot;#E58844&quot;, &quot;#4480E5&quot;, &quot;#4C44E5&quot;, &quot;#4C44E5&quot;, &quot;#62E544&quot;, &quot;#44E56A&quot;, &quot;#D2E544&quot;, &quot;#44E580&quot;, &quot;#44E56A&quot;, &quot;#A5E544&quot;, &quot;#4480E5&quot;, &quot;#E544CB&quot;, &quot;#E54488&quot;, &quot;#E544E1&quot;, &quot;#44E56A&quot;, &quot;#446AE5&quot;, &quot;#D2E544&quot;, &quot;#E5449E&quot;, &quot;#D244E5&quot;, &quot;#E57144&quot;, &quot;#E57144&quot;, &quot;#D2E544&quot;, &quot;#44E580&quot;, &quot;#44E553&quot;, &quot;#4480E5&quot;, &quot;#4480E5&quot;, &quot;#E58844&quot;, &quot;#E544E1&quot;, &quot;#4453E5&quot;, &quot;#44DAE5&quot;, &quot;#E544B4&quot;, &quot;#E5449E&quot;, &quot;#D2E544&quot;, &quot;#446AE5&quot;, &quot;#4480E5&quot;, &quot;#A5E544&quot;, &quot;#E54444&quot;, &quot;#D2E544&quot;, &quot;#4480E5&quot;, &quot;#44ADE5&quot;, &quot;#4480E5&quot;, &quot;#E5449E&quot;, &quot;#E544CB&quot;, &quot;#4480E5&quot;, &quot;#E54471&quot;, &quot;#4453E5&quot;, &quot;#D2E544&quot;, &quot;#BC44E5&quot;, &quot;#D2E544&quot;, &quot;#4C44E5&quot;, &quot;#A544E5&quot;, &quot;#44C3E5&quot;, &quot;#4C44E5&quot;, &quot;#4C44E5&quot;, &quot;#D2E544&quot;, &quot;#62E544&quot;, &quot;#44E56A&quot;, &quot;#62E544&quot;, &quot;#E544B4&quot;, &quot;#E544CB&quot;, &quot;#4C44E5&quot;, &quot;#E544E1&quot;, &quot;#E59E44&quot;, &quot;#4453E5&quot;, &quot;#E544E1&quot;, &quot;#E54444&quot;, &quot;#44E56A&quot;, &quot;#E544E1&quot;, &quot;#A5E544&quot;, &quot;#A5E544&quot;, &quot;#E57144&quot;, &quot;#E55B44&quot;, &quot;#8F44E5&quot;, &quot;#4C44E5&quot;, &quot;#A5E544&quot;, &quot;#44ADE5&quot;, &quot;#4480E5&quot;, &quot;#44E5AD&quot;, &quot;#E544B4&quot;, &quot;#44E553&quot;, &quot;#44E5DA&quot;, &quot;#79E544&quot;, &quot;#4480E5&quot;, &quot;#4453E5&quot;, &quot;#4CE544&quot;, &quot;#E54471&quot;, &quot;#D2E544&quot;, &quot;#E544E1&quot;, &quot;#6244E5&quot;, &quot;#BC44E5&quot;, &quot;#E544CB&quot;, &quot;#A5E544&quot;, &quot;#A5E544&quot;, &quot;#44E5AD&quot;, &quot;#44E5AD&quot;, &quot;#44E5AD&quot;, &quot;#E544E1&quot;, &quot;#D2E544&quot;, &quot;#E544CB&quot;, &quot;#E544CB&quot;, &quot;#4C44E5&quot;, &quot;#A5E544&quot;, &quot;#E544B4&quot;, &quot;#BC44E5&quot;, &quot;#4480E5&quot;, &quot;#4480E5&quot;, &quot;#E54471&quot;, &quot;#7944E5&quot;, &quot;#E59E44&quot;, &quot;#44E553&quot;, &quot;#44E580&quot;, &quot;#44E56A&quot;, &quot;#446AE5&quot;, &quot;#44ADE5&quot;, &quot;#E544B4&quot;, &quot;#D2E544&quot;, &quot;#E54444&quot;, &quot;#E544CB&quot;, &quot;#E544B4&quot;, &quot;#E544CB&quot;, &quot;#4C44E5&quot;, &quot;#E58844&quot;, &quot;#6244E5&quot;, &quot;#44E553&quot;, &quot;#E54471&quot;, &quot;#E544CB&quot;, &quot;#44E5AD&quot;, &quot;#44E5AD&quot;, &quot;#44E553&quot;, &quot;#4480E5&quot;, &quot;#E57144&quot;, &quot;#44E553&quot;, &quot;#D2E544&quot;, &quot;#D2E544&quot;, &quot;#E57144&quot;, &quot;#E5B444&quot;, &quot;#44ADE5&quot;, &quot;#BC44E5&quot;, &quot;#D244E5&quot;, &quot;#6244E5&quot;, &quot;#44C3E5&quot;, &quot;#79E544&quot;, &quot;#E59E44&quot;, &quot;#44E553&quot;, &quot;#D244E5&quot;, &quot;#44E553&quot;, &quot;#44C3E5&quot;, &quot;#4C44E5&quot;, &quot;#44E5C3&quot;, &quot;#E5CB44&quot;, &quot;#4C44E5&quot;, &quot;#44E5AD&quot;, &quot;#44E553&quot;, &quot;#E5445B&quot;, &quot;#62E544&quot;, &quot;#D2E544&quot;, &quot;#E544E1&quot;, &quot;#44E56A&quot;, &quot;#6244E5&quot;, &quot;#A5E544&quot;, &quot;#4CE544&quot;, &quot;#E544B4&quot;, &quot;#4C44E5&quot;, &quot;#E54444&quot;, &quot;#E5B444&quot;, &quot;#4C44E5&quot;, &quot;#E544CB&quot;, &quot;#44ADE5&quot;, &quot;#D2E544&quot;, &quot;#79E544&quot;, &quot;#E54471&quot;, &quot;#44E5AD&quot;, &quot;#E5B444&quot;, &quot;#4C44E5&quot;, &quot;#A5E544&quot;, &quot;#A5E544&quot;, &quot;#E57144&quot;, &quot;#E57144&quot;, &quot;#BC44E5&quot;, &quot;#44E5AD&quot;, &quot;#E54488&quot;, &quot;#4480E5&quot;, &quot;#4C44E5&quot;, &quot;#4480E5&quot;, &quot;#4480E5&quot;, &quot;#E55B44&quot;, &quot;#E544CB&quot;, &quot;#D2E544&quot;, &quot;#4C44E5&quot;, &quot;#E5E144&quot;, &quot;#D2E544&quot;, &quot;#44E5DA&quot;, &quot;#44DAE5&quot;, &quot;#4480E5&quot;, &quot;#E544CB&quot;, &quot;#4C44E5&quot;, &quot;#8FE544&quot;, &quot;#BC44E5&quot;, &quot;#6244E5&quot;, &quot;#44E580&quot;, &quot;#E544CB&quot;, &quot;#44E5C3&quot;, &quot;#E544B4&quot;, &quot;#4C44E5&quot;, &quot;#E54444&quot;, &quot;#44ADE5&quot;, &quot;#E58844&quot;, &quot;#62E544&quot;, &quot;#4CE544&quot;, &quot;#E57144&quot;, &quot;#E5445B&quot;, &quot;#62E544&quot;, &quot;#446AE5&quot;, &quot;#4480E5&quot;, &quot;#44E5AD&quot;, &quot;#E57144&quot;, &quot;#44E5C3&quot;, &quot;#E58844&quot;, &quot;#79E544&quot;, &quot;#E5449E&quot;, &quot;#6244E5&quot;, &quot;#E55B44&quot;, &quot;#E544E1&quot;, &quot;#6244E5&quot;, &quot;#E544E1&quot;, &quot;#4480E5&quot;, &quot;#4480E5&quot;, &quot;#E544CB&quot;, &quot;#E54488&quot;, &quot;#44E580&quot;, &quot;#4C44E5&quot;, &quot;#44E553&quot;, &quot;#44E5AD&quot;, &quot;#E5445B&quot;, &quot;#E544B4&quot;, &quot;#E5445B&quot;, &quot;#4480E5&quot;, &quot;#E59E44&quot;, &quot;#D2E544&quot;, &quot;#44DAE5&quot;, &quot;#E5E144&quot;, &quot;#E5449E&quot;, &quot;#44ADE5&quot;, &quot;#44E553&quot;, &quot;#44DAE5&quot;, &quot;#E544CB&quot;, &quot;#E5449E&quot;, &quot;#4C44E5&quot;, &quot;#8FE544&quot;, &quot;#BC44E5&quot;, &quot;#44E5DA&quot;, &quot;#E5445B&quot;, &quot;#E54471&quot;, &quot;#8FE544&quot;, &quot;#E5B444&quot;, &quot;#79E544&quot;, &quot;#D2E544&quot;, &quot;#44DAE5&quot;, &quot;#4480E5&quot;, &quot;#E544E1&quot;, &quot;#44E5DA&quot;, &quot;#44E5DA&quot;, &quot;#4497E5&quot;, &quot;#4C44E5&quot;, &quot;#E544B4&quot;, &quot;#E544CB&quot;, &quot;#E57144&quot;, &quot;#E544CB&quot;, &quot;#4C44E5&quot;, &quot;#E58844&quot;, &quot;#44E56A&quot;, &quot;#44E5C3&quot;, &quot;#E54471&quot;, &quot;#4497E5&quot;, &quot;#44E553&quot;, &quot;#E54471&quot;, &quot;#4480E5&quot;, &quot;#E544B4&quot;, &quot;#E5445B&quot;, &quot;#D2E544&quot;, &quot;#E544CB&quot;, &quot;#446AE5&quot;, &quot;#A5E544&quot;, &quot;#A5E544&quot;, &quot;#D244E5&quot;, &quot;#4480E5&quot;, &quot;#E544B4&quot;, &quot;#E54488&quot;, &quot;#44E56A&quot;, &quot;#4453E5&quot;, &quot;#D2E544&quot;, &quot;#4CE544&quot;, &quot;#E5445B&quot;, &quot;#44E5C3&quot;, &quot;#E57144&quot;, &quot;#E5445B&quot;, &quot;#E58844&quot;, &quot;#44E553&quot;, &quot;#E55B44&quot;, &quot;#44E5DA&quot;, &quot;#A5E544&quot;, &quot;#4C44E5&quot;, &quot;#7944E5&quot;, &quot;#4480E5&quot;, &quot;#E54471&quot;, &quot;#4480E5&quot;, &quot;#E58844&quot;, &quot;#E58844&quot;, &quot;#E54444&quot;, &quot;#D2E544&quot;, &quot;#44ADE5&quot;, &quot;#44E5C3&quot;, &quot;#62E544&quot;, &quot;#E54444&quot;, &quot;#E5B444&quot;, &quot;#E5B444&quot;, &quot;#E57144&quot;, &quot;#E544E1&quot;, &quot;#44ADE5&quot;, &quot;#8F44E5&quot;, &quot;#44E553&quot;, &quot;#E54471&quot;, &quot;#4480E5&quot;, &quot;#446AE5&quot;, &quot;#E54471&quot;, &quot;#4C44E5&quot;, &quot;#E59E44&quot;, &quot;#446AE5&quot;, &quot;#E544CB&quot;, &quot;#44ADE5&quot;, &quot;#A5E544&quot;, &quot;#E58844&quot;, &quot;#A5E544&quot;, &quot;#44E553&quot;, &quot;#446AE5&quot;, &quot;#E544E1&quot;, &quot;#BC44E5&quot;, &quot;#62E544&quot;, &quot;#E5449E&quot;, &quot;#E5449E&quot;, &quot;#4C44E5&quot;, &quot;#44C3E5&quot;, &quot;#4CE544&quot;, &quot;#4480E5&quot;, &quot;#44E5C3&quot;, &quot;#E54488&quot;, &quot;#E5445B&quot;, &quot;#44E580&quot;, &quot;#4453E5&quot;, &quot;#E54444&quot;, &quot;#D2E544&quot;, &quot;#E54444&quot;, &quot;#E544E1&quot;, &quot;#44E5DA&quot;, &quot;#E58844&quot;, &quot;#62E544&quot;, &quot;#44DAE5&quot;, &quot;#E57144&quot;, &quot;#44E5C3&quot;, &quot;#E57144&quot;, &quot;#44E553&quot;, &quot;#4C44E5&quot;, &quot;#E544E1&quot;, &quot;#44E553&quot;, &quot;#E57144&quot;, &quot;#4480E5&quot;, &quot;#6244E5&quot;, &quot;#44C3E5&quot;, &quot;#4480E5&quot;, &quot;#4C44E5&quot;, &quot;#79E544&quot;, &quot;#4C44E5&quot;, &quot;#44DAE5&quot;, &quot;#E54444&quot;, &quot;#4C44E5&quot;, &quot;#44E553&quot;, &quot;#8F44E5&quot;, &quot;#446AE5&quot;, &quot;#E57144&quot;, &quot;#E5445B&quot;, &quot;#D2E544&quot;, &quot;#D2E544&quot;, &quot;#E54488&quot;, &quot;#4480E5&quot;, &quot;#4497E5&quot;, &quot;#44E56A&quot;, &quot;#A5E544&quot;, &quot;#E5449E&quot;, &quot;#44E56A&quot;, &quot;#4497E5&quot;, &quot;#44E580&quot;, &quot;#4C44E5&quot;, &quot;#A5E544&quot;, &quot;#44E5C3&quot;, &quot;#44ADE5&quot;, &quot;#E54444&quot;, &quot;#4C44E5&quot;, &quot;#E57144&quot;, &quot;#E5449E&quot;, &quot;#44E553&quot;, &quot;#44E553&quot;, &quot;#8FE544&quot;, &quot;#E544CB&quot;, &quot;#E54444&quot;, &quot;#E544CB&quot;, &quot;#D2E544&quot;, &quot;#44E5C3&quot;, &quot;#4480E5&quot;, &quot;#44E5AD&quot;, &quot;#44E5DA&quot;, &quot;#E54488&quot;, &quot;#44E5C3&quot;, &quot;#4480E5&quot;, &quot;#E544E1&quot;, &quot;#D2E544&quot;, &quot;#4C44E5&quot;, &quot;#BC44E5&quot;, &quot;#A5E544&quot;, &quot;#A544E5&quot;, &quot;#62E544&quot;, &quot;#44E553&quot;, &quot;#8F44E5&quot;, &quot;#A5E544&quot;, &quot;#E544CB&quot;, &quot;#44E5AD&quot;, &quot;#D2E544&quot;, &quot;#E57144&quot;, &quot;#8FE544&quot;, &quot;#8FE544&quot;, &quot;#D2E544&quot;, &quot;#44E5C3&quot;, &quot;#E57144&quot;, &quot;#44E56A&quot;, &quot;#62E544&quot;, &quot;#4480E5&quot;, &quot;#E58844&quot;, &quot;#44E580&quot;, &quot;#4480E5&quot;, &quot;#D244E5&quot;, &quot;#E5B444&quot;, &quot;#E59E44&quot;, &quot;#4C44E5&quot;, &quot;#E544B4&quot;, &quot;#E57144&quot;, &quot;#4C44E5&quot;, &quot;#79E544&quot;, &quot;#E5B444&quot;, &quot;#E5B444&quot;, &quot;#44ADE5&quot;, &quot;#44E580&quot;, &quot;#44E553&quot;, &quot;#44E553&quot;, &quot;#44E5AD&quot;, &quot;#4C44E5&quot;, &quot;#D2E544&quot;, &quot;#E54444&quot;, &quot;#4453E5&quot;, &quot;#4CE544&quot;, &quot;#4CE544&quot;, &quot;#E54471&quot;, &quot;#4480E5&quot;, &quot;#62E544&quot;, &quot;#D244E5&quot;, &quot;#E544E1&quot;, &quot;#4C44E5&quot;, &quot;#E54444&quot;, &quot;#44E580&quot;, &quot;#D2E544&quot;, &quot;#E55B44&quot;, &quot;#E5445B&quot;, &quot;#E59E44&quot;, &quot;#4C44E5&quot;, &quot;#E544B4&quot;, &quot;#E5B444&quot;, &quot;#44C3E5&quot;, &quot;#44C3E5&quot;, &quot;#44DAE5&quot;, &quot;#4C44E5&quot;, &quot;#8F44E5&quot;, &quot;#E57144&quot;, &quot;#E544CB&quot;, &quot;#A5E544&quot;, &quot;#4480E5&quot;, &quot;#E58844&quot;, &quot;#E59E44&quot;, &quot;#E59E44&quot;, &quot;#4453E5&quot;, &quot;#4CE544&quot;, &quot;#E544CB&quot;, &quot;#44DAE5&quot;, &quot;#E58844&quot;, &quot;#4453E5&quot;, &quot;#E54444&quot;, &quot;#E57144&quot;, &quot;#44E5DA&quot;, &quot;#A5E544&quot;, &quot;#4480E5&quot;, &quot;#62E544&quot;, &quot;#4C44E5&quot;, &quot;#44E5AD&quot;, &quot;#E58844&quot;, &quot;#4C44E5&quot;, &quot;#E544E1&quot;, &quot;#E57144&quot;, &quot;#4453E5&quot;, &quot;#4C44E5&quot;, &quot;#E544E1&quot;, &quot;#E57144&quot;, &quot;#44C3E5&quot;, &quot;#E57144&quot;, &quot;#D2E544&quot;, &quot;#6244E5&quot;, &quot;#79E544&quot;, &quot;#4C44E5&quot;, &quot;#4C44E5&quot;, &quot;#62E544&quot;, &quot;#44E580&quot;, &quot;#44E553&quot;, &quot;#44E56A&quot;, &quot;#44E553&quot;, &quot;#D2E544&quot;, &quot;#E54444&quot;, &quot;#4480E5&quot;, &quot;#4C44E5&quot;, &quot;#D2E544&quot;, &quot;#44E5DA&quot;, &quot;#44ADE5&quot;, &quot;#E544CB&quot;, &quot;#4C44E5&quot;, &quot;#BC44E5&quot;, &quot;#E544CB&quot;, &quot;#E5B444&quot;, &quot;#D2E544&quot;, &quot;#E59E44&quot;, &quot;#44E553&quot;, &quot;#44E5DA&quot;, &quot;#E5B444&quot;, &quot;#E54471&quot;, &quot;#44E5DA&quot;, &quot;#44ADE5&quot;, &quot;#44E5DA&quot;, &quot;#E544E1&quot;, &quot;#4CE544&quot;, &quot;#E57144&quot;, &quot;#44E5AD&quot;, &quot;#E54471&quot;, &quot;#E54488&quot;, &quot;#E54471&quot;, &quot;#4C44E5&quot;, &quot;#E5445B&quot;, &quot;#E5445B&quot;, &quot;#D2E544&quot;, &quot;#44E56A&quot;, &quot;#D2E544&quot;, &quot;#A544E5&quot;, &quot;#4480E5&quot;, &quot;#44ADE5&quot;, &quot;#E5E144&quot;, &quot;#E544E1&quot;, &quot;#4C44E5&quot;, &quot;#446AE5&quot;, &quot;#E54471&quot;, &quot;#4C44E5&quot;, &quot;#79E544&quot;, &quot;#44DAE5&quot;, &quot;#44E5AD&quot;, &quot;#44ADE5&quot;, &quot;#E544E1&quot;, &quot;#44ADE5&quot;, &quot;#4480E5&quot;, &quot;#44E56A&quot;, &quot;#4C44E5&quot;, &quot;#E5B444&quot;, &quot;#E5B444&quot;, &quot;#E55B44&quot;, &quot;#E5445B&quot;, &quot;#E544E1&quot;, &quot;#44ADE5&quot;, &quot;#E54444&quot;, &quot;#44E580&quot;, &quot;#E544CB&quot;, &quot;#E544B4&quot;, &quot;#44E5AD&quot;, &quot;#62E544&quot;, &quot;#44E5AD&quot;, &quot;#4C44E5&quot;, &quot;#D244E5&quot;, &quot;#D2E544&quot;, &quot;#E57144&quot;, &quot;#D2E544&quot;, &quot;#44ADE5&quot;, &quot;#E58844&quot;, &quot;#4C44E5&quot;, &quot;#E544E1&quot;, &quot;#D2E544&quot;, &quot;#62E544&quot;, &quot;#44E580&quot;, &quot;#4480E5&quot;, &quot;#62E544&quot;, &quot;#44E597&quot;, &quot;#A544E5&quot;, &quot;#D2E544&quot;, &quot;#E544B4&quot;, &quot;#44E5DA&quot;, &quot;#4497E5&quot;, &quot;#44ADE5&quot;, &quot;#D2E544&quot;, &quot;#4480E5&quot;, &quot;#4C44E5&quot;, &quot;#4497E5&quot;, &quot;#44E5C3&quot;, &quot;#44ADE5&quot;, &quot;#4C44E5&quot;, &quot;#E5B444&quot;, &quot;#44E5DA&quot;, &quot;#4480E5&quot;, &quot;#4480E5&quot;, &quot;#D2E544&quot;, &quot;#E58844&quot;, &quot;#44E580&quot;, &quot;#44E5C3&quot;, &quot;#E5B444&quot;, &quot;#62E544&quot;, &quot;#4C44E5&quot;, &quot;#44E580&quot;, &quot;#E5449E&quot;, &quot;#4480E5&quot;, &quot;#E59E44&quot;, &quot;#44E580&quot;, &quot;#E54444&quot;, &quot;#6244E5&quot;, &quot;#4C44E5&quot;, &quot;#44E5AD&quot;, &quot;#E5445B&quot;, &quot;#E544CB&quot;, &quot;#446AE5&quot;, &quot;#E57144&quot;, &quot;#44E5AD&quot;, &quot;#E544CB&quot;, &quot;#44E580&quot;, &quot;#44E580&quot;, &quot;#44E580&quot;, &quot;#E544B4&quot;, &quot;#E57144&quot;, &quot;#44DAE5&quot;, &quot;#E57144&quot;, &quot;#D2E544&quot;, &quot;#D2E544&quot;, &quot;#44ADE5&quot;, &quot;#44ADE5&quot;, &quot;#44C3E5&quot;, &quot;#4480E5&quot;, &quot;#E544E1&quot;, &quot;#A544E5&quot;, &quot;#4C44E5&quot;, &quot;#62E544&quot;, &quot;#E57144&quot;, &quot;#E54471&quot;, &quot;#44E580&quot;, &quot;#62E544&quot;, &quot;#E5445B&quot;, &quot;#4453E5&quot;, &quot;#D2E544&quot;, &quot;#44C3E5&quot;, &quot;#44E5AD&quot;, &quot;#E5445B&quot;, &quot;#D2E544&quot;]}], &quot;xscale&quot;: &quot;linear&quot;, &quot;bbox&quot;: [0.125, 0.125, 0.77500000000000002, 0.77500000000000002]}], &quot;height&quot;: 800.0, &quot;width&quot;: 800.0, &quot;plugins&quot;: [{&quot;type&quot;: &quot;reset&quot;}, {&quot;enabled&quot;: false, &quot;button&quot;: true, &quot;type&quot;: &quot;zoom&quot;}, {&quot;enabled&quot;: false, &quot;button&quot;: true, &quot;type&quot;: &quot;boxzoom&quot;}, {&quot;voffset&quot;: 10, &quot;labels&quot;: [&quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taylor&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;harrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;garfield&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taylor&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taylor&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taylor&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;harding&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;], &quot;type&quot;: &quot;htmltooltip&quot;, &quot;id&quot;: &quot;el315824312537616&quot;, &quot;hoffset&quot;: 0}], &quot;data&quot;: {&quot;data01&quot;: [[13.9822486601, -1.67518620516], [-7.6657585814800004, 4.71481849952], [11.953091368900001, 1.8846518066599998], [-13.1931826876, -3.79026693306], [-20.8249744703, -0.29194208632], [-8.594116441639999, 19.991891939400002], [12.309062528399998, -4.552673785990001], [-8.94829926874, 17.655247944], [-14.5263100772, 3.05026940556], [14.0227108417, 18.6225906915], [-16.015264146099998, 9.79425475463], [4.72954452716, -11.036982636500001], [-7.11436814882, -17.5198771658], [2.88921621393, -15.248046445], [10.612133581, -16.757395294000002], [-10.8832746107, 10.273649325900001], [-6.31419220637, -12.497989175599999], [2.7086229965400004, -16.7717494668], [13.0497369813, 7.793971960710001], [12.0786206237, -4.81161959997], [12.4716453732, 4.53126608523], [12.1296330899, -16.2314470571], [-15.962933168800001, -1.75710262682], [11.8410201304, 3.1407473974199998], [15.3358371148, -0.37643380398299997], [-3.80889349231, 1.7587157004400003], [20.0041258812, 2.4232439232], [14.6948589494, 9.40907397533], [-13.0792763514, 8.65925929046], [-9.25900134362, 19.8370084946], [12.0839089402, -4.80517053057], [8.27376914933, 5.99695926493], [9.59225162848, -13.7918500898], [-15.577670326700002, -0.943052346372], [18.290062783299998, -4.050509695430001], [7.523933319289999, -5.072960864090001], [0.26926697107700004, -6.0998947604], [-12.051849321199999, 12.0819010821], [-19.5358535199, -12.349213041199999], [-0.040222886027800005, -4.00495985399], [-13.9887206197, 7.2800123141499995], [13.0461921276, -3.7838725390199994], [-4.385933656080001, -11.387327068], [-0.607175925831, -5.500828276519999], [12.7207082639, 2.99843526455], [-20.9127053042, -2.40128935604], [17.1288702906, -6.203037913230001], [6.936112571839999, 3.0519798752700003], [-1.0704552929100002, -4.32544845111], [-11.3417509499, 13.2763222821], [-10.6451267122, 8.57771001018], [-0.597021446952, 14.3456902243], [-9.43192164934, 16.9778618121], [15.746253728, -0.49240967437600003], [-0.379783223893, 6.84678459844], [-7.9793151356399985, 7.48555227182], [15.749833613, -2.1953916091599996], [4.17031968615, -7.87615740065], [-19.6417280387, -7.05451767368], [11.392329265199999, -15.1593972594], [-7.9681393724300005, -12.7369948973], [-13.848040190699999, -3.33954236449], [13.3014058854, 8.66983246721], [-20.50291124, -1.1276939574299998], [-5.621035339680001, 1.3887063939500002], [13.543839731199999, 15.4397369184], [-19.3174220617, -13.0993786789], [-16.4498567401, -1.9008199408400002], [7.283635575519999, -14.3768329822], [12.9697499977, 7.7403271791199995], [-23.6290563683, 10.4989040704], [13.207952783900001, -18.9640518233], [-8.2437242748, -12.561653329], [-6.51238765676, -17.3302565204], [-24.5957788929, 10.7712732574], [26.1489116072, 0.249670216289], [-20.3128844649, -13.2767761549], [-17.4898009902, -8.25746686484], [-12.738937945899998, -7.00942738513], [-22.0800672124, -1.10947336675], [-8.67868639302, 18.8387881452], [-14.535900316700001, 2.9699036312800002], [13.2178151146, -18.8981502681], [0.5333139687139999, -5.17979745504], [-7.4897585506699995, -16.1642618443], [-21.2685991987, -1.58742508266], [16.5082824579, 13.0145805305], [18.5775529433, -2.90830102194], [2.7493575450200005, -14.9800101032], [14.958833096400001, 17.7663750232], [-15.1943963687, 8.7220917659], [-8.07420090359, 7.96617525989], [17.8736084086, -6.70959706281], [-7.579547149650001, -3.86759716007], [-3.93576525488, -12.9752090836], [-7.370567426519999, -16.9906913527], [13.4242954773, 13.0362430101], [-13.4700949224, -4.37246271365], [13.584610671300002, 16.5634780488], [27.395200862, -1.8367899865400001], [-20.0671042211, -5.41809760046], [17.1890873662, 3.8575618824699998], [12.342847421300002, 4.69407662364], [-7.49859979888, 1.77044797072], [2.7206940446599996, -16.6095387184], [-20.080510113800003, -4.91475107709], [16.9654684293, -2.368716956], [13.1429577889, -18.6172778434], [2.5601161901, -15.5817167748], [13.3551514958, 6.85835147174], [-13.3439668689, 8.39783533762], [27.129381806799998, -0.8428207117730001], [4.7454695964499995, 10.5371088068], [-7.7919798139, 5.4884216310800005], [-9.14446424789, 13.6063134348], [-22.471489992800002, -0.713937429255], [-9.16409271055, 1.707448395], [-15.828253949, -9.9416614268], [-10.3828512114, 7.465277873250001], [-9.5709953853, 14.777120937100001], [-0.485860304378, -3.41078380887], [10.3565836323, -14.6636657527], [-22.8513159007, -1.43503033257], [25.459328304499998, 0.203741631629], [-20.9413767786, -2.24706314795], [-18.6283605466, -12.2967120928], [-8.174392806839998, 19.4346119301], [6.68424428206, 3.12760289355], [-16.0180712294, 2.49937613704], [11.7256657102, -15.430330099], [-12.5493825774, -0.5860802748430001], [18.9534938211, -4.47065638941], [15.601873649100002, 1.97252945727], [18.1047062568, -3.0260944944999997], [-7.80228557214, 6.251421065800001], [14.138145663800001, 11.3192238095], [13.1148874648, 10.2253661364], [15.915219911500001, 14.431347593900002], [6.05475885524, -11.0793429266], [-13.8979753958, 13.727867455799998], [-12.0344883095, -9.131861083139999], [-16.6429682238, -6.638598254580001], [13.6823669298, 12.375505723699998], [-6.511309691159999, -17.2825946558], [0.0413917940369, -4.96996148801], [0.046361763505, -3.36090877903], [-12.9477551071, -4.74108292938], [13.2637004693, 19.2081424175], [-12.785641115999999, 14.8278833653], [12.4849148353, -19.161629103499997], [7.596456878560001, -14.289664424300001], [-23.6758579452, 8.145579699439999], [28.040073620799998, -0.578167594998], [-15.688167303800002, -1.15056995381], [-18.4512878285, -8.30597498814], [12.339534269400001, 11.6544182895], [-17.145371641300002, -10.0471748653], [-24.6592045198, 11.0004542553], [-12.6941705228, -8.58615682504], [15.1826880329, 3.59578771864], [-23.811352732, 8.85345843291], [-6.737730463019999, -14.4667764023], [-16.757154311199997, -11.1820845332], [-12.4118117723, 5.91801088238], [9.450884628189998, -13.6422037495], [17.9839719828, -7.310832670339999], [18.4648130641, 3.1894597785000003], [25.7463544657, -0.770221817036], [15.0507779384, 13.351603322599999], [-2.8052649543299997, -11.9845343125], [6.08755713585, 3.6183546567400002], [20.0774879536, -3.5550222035], [-13.9175388656, -0.35363315668000006], [5.9549580911, -5.42190331372], [6.00538500135, 1.80039326134], [-12.821089976600001, 7.99454071916], [-21.3883492985, -1.9421908479499999], [12.8580350332, -18.0021045857], [-3.8092223333800006, 1.7586813079299999], [-10.8589543442, 9.10051692151], [-8.27208407143, 19.2040416639], [-13.283533333900001, -3.9552703597199996], [10.5851955482, -12.413680033499999], [12.412999222, -18.7360743702], [16.4563611885, 13.341662317599999], [4.79476012462, -10.857486440799999], [-8.29690557899, 8.96068068832], [-15.509920991300001, 8.796334835], [17.067873357899998, 14.773709043499998], [-10.3069426169, 1.31385555918], [-7.572782481849999, 1.86474475498], [8.477087831819999, 6.4588032591], [15.315628669, -1.27293078684], [13.048671777400001, 7.198639795810001], [-7.33214881134, -17.1774085433], [-19.2334841189, -1.60225416509], [16.4683087037, 13.3121579324], [8.256708920680001, 1.8390825171400003], [-8.384587184139999, 10.502168963099999], [10.8733595684, -14.5473130172], [-13.8607098473, -9.460515181649999], [-14.0440903417, 6.9188447036500005], [-9.19968638575, 19.0227131187], [21.9070064708, 1.16396569755], [12.986791703900002, -18.4605807381], [-8.54854318453, 7.806924508430001], [-10.6823185186, 16.8688439523], [28.378011807399997, -1.19296368969], [6.945921845589999, -5.27228240837], [23.330013096, -2.54286337059], [-20.7334369959, -2.32631449318], [-6.80889052537, -17.445421224], [-9.72932570403, 14.5104148047], [-13.1175016376, 10.7159872558], [-5.35494717742, 1.41626748722], [-19.2290100289, -13.152504521], [8.50010737586, 5.34376078287], [-13.2421591022, -4.28805270054], [-1.78619217845, -8.2012279585], [21.4109124944, 1.65467078758], [-13.0645281465, -9.01736119793], [28.102621904299998, -0.603648537526], [-8.53624353228, 16.4501452398], [-8.107288445830001, 7.2379689651], [12.8631258126, -19.2128381468], [28.103476685900002, -1.74240762303], [-7.406703853630001, 7.916460740160001], [14.527618891900001, 2.8640165906299995], [-17.035327067, -10.1096338122], [13.195506701700001, -19.0028388482], [6.5306426903400006, 2.5082678169299997], [-8.575412147160002, 19.2159107716], [-12.7731888404, 14.865315419000002], [-14.737212726600001, -9.879729221729999], [16.3552536014, 9.139711354780001], [-6.631118111699999, -14.8583891074], [-9.01696969753, 17.3295337876], [-10.7387736742, 8.072976420660002], [-0.980096162187, 1.24744736155], [8.10819549439, -0.8718407270209999], [-22.9095007865, -0.8026475155509999], [14.9750000977, 14.754122909300001], [2.70958191343, -16.7669133291], [12.010939620899999, -18.4808250619], [-1.68948830461, -8.07340777205], [14.097778399000001, 4.05732795706], [-21.004079236400003, -2.0877121180300002], [12.2926816918, -17.8398129524], [13.5500189631, 18.1482171776], [-6.53206826298, -17.3773178348], [-19.5518255424, -13.765872498499998], [-0.0860091713278, -4.09896564241], [-17.6612978274, -9.39121998748], [19.8385661151, -3.6993120384199996], [-8.27409458637, 1.5451476254499998], [-8.11454163163, 8.222112749179999], [14.7168516349, 6.83650006728], [-21.184687398199998, -1.89097690838], [-6.525515138230001, -17.0156959173], [28.224768466599997, -0.755090344688], [3.6362469425099997, 10.5142585166], [-23.494730386700002, 7.6119681435699995], [-9.17719946076, 18.2394303859], [12.4667976315, -17.721253440999998], [-16.8648450063, -8.916941293310002], [-8.46415036509, -3.88063393828], [-15.3442175078, -10.2308737022], [17.114562849000002, 15.228872646300001], [-14.0146790919, 13.235793371600002], [15.050488658199999, 16.3846051124], [2.7023388915400006, -15.4398424453], [-15.6123054214, 2.36387827246], [-7.61772461215, 5.375794669480001], [-4.71956884999, -13.851182643], [13.0553404671, 4.2749381815400005], [-8.73100926639, 1.6726589168000001], [18.362039625799998, -2.86148566418], [14.939702431099999, 16.8055091799], [-12.3551387963, -9.224411340269999], [28.4378194346, -1.3671304380000002], [7.52013395135, -14.0699448621], [8.849703613460001, -10.0899091858], [-9.196496969450001, 19.909005556], [7.26840696342, -14.3647593349], [0.00429425913868, 14.145929156300001], [-23.349651403200003, 7.8712242763399995], [6.849374238080001, -4.84384494646], [-0.47607316973999997, -3.36876410607], [-11.830593648299999, 11.014850864300001], [16.7765930979, -2.17894009302], [2.7091303201300003, -16.1099199311], [-7.50680856533, -14.5001026316], [-9.48872829227, 18.5265197366], [13.895070472999999, 4.76989748074], [-13.2512122898, 5.24817227459], [-10.4692934714, 8.468934703], [13.859947036900001, 19.435842932899998], [5.06789698246, 3.51990855694], [-6.5660855396399995, -14.1021932112], [27.963315541, -1.92928922498], [-4.7829740908, -11.581203983800002], [-4.14534405019, -14.3257629122], [-23.484162327600004, 10.409074632100001], [12.7761053955, -17.6932570949], [5.08290210693, -8.0183012887], [12.2789093615, -18.1026602447], [12.163412438599998, -18.437977846], [18.6712819116, -3.3453292811799997], [18.2015598447, -6.21549475535], [0.484693821312, -4.5278277971900005], [-3.8032994633099997, 1.76282962593], [-13.9678144827, 6.983667866449999], [-19.9830919685, -13.8935055919], [28.3042493328, -1.71765325984], [2.7103642634400003, -16.7652110498], [12.3599098169, -4.4986975709], [-11.67883141, 13.0203784289], [-22.3730571452, -1.6098735120899998], [21.5366726781, 1.59192928758], [-15.1205362678, -2.5396067954599997], [12.954192266300002, 2.07966191748], [-6.35008978515, -16.7136576632], [16.0076085594, 9.60248182374], [-8.34905789731, -12.388661093800001], [12.6757377177, 3.4310924955699997], [7.15853686472, -5.09172819024], [1.08983673115, -8.782569651180001], [-6.925010240010001, -16.0479886275], [6.83134045454, 3.44917276875], [-24.5857544588, 9.71795024224], [7.25985899615, -14.3411373398], [-14.491665319500001, -1.5657092068599998], [-24.244888159600002, 9.51989578751], [-13.1905888024, 10.541280634400001], [-0.44600281107100004, -5.35244292239], [-2.00678183577, -15.7557135936], [14.3079608468, 18.504901626600002], [-15.6377856681, -1.35297317929], [19.661139988, -3.33115692924], [28.2881436063, -0.9143718205920001], [-7.41497606266, -15.1127505253], [-8.346288877580001, -3.97675920629], [-15.7421927644, 11.6220249461], [-6.70904075394, -16.6272861634], [-12.639050116099998, -8.103294440710002], [-13.5646078225, -7.83377717093], [-18.7193665425, -10.889636146199999], [6.35351818959, 2.17535568059], [-0.658218510634, -4.05128967715], [10.2576348406, -12.0077862633], [17.1712550671, 15.220341494200001], [-0.336470608522, -4.6707193807], [-2.7157973152099997, -11.982605576], [22.3022434479, 1.1918832141700002], [17.9213533449, -7.119681202050001], [6.060499279480001, 1.06090501059], [14.1955863828, 19.240049740899998], [-3.8892249796199994, -12.034442520499999], [5.94967040487, -10.9837705464], [-23.7375005125, 8.64139608946], [-5.05617113232, -14.7745041472], [5.016198834690001, -10.9901201374], [-20.2989585774, -13.420903994100001], [27.5382443225, -0.710505686976], [-0.803537339869, 14.2500687232], [-12.450580199900001, 14.743218253399998], [13.280443863199999, 9.655311914], [-4.4066653569800005, -11.2440407282], [17.9730494437, -7.31079239589], [-15.3183156876, -6.819544576959999], [-0.533351220581, -5.994279257890001], [11.0922108577, -14.673524663], [13.5926141074, 16.545565047100002], [26.676257369899997, -0.249102475204], [-24.4927791928, 11.0204360179], [14.2527028073, 19.154797903800002], [4.75931419591, 3.71936467727], [-22.441529739299998, -1.1655968360200002], [-12.2943979832, 4.34568419751], [-2.1035884887900003, -8.5383164807], [-11.855239349400001, -9.295055124520001], [15.3374619801, 6.951345391799999], [7.380317603189999, 0.914165147164], [12.0976302366, 3.6059283963199995], [27.810232462800002, -0.49429485874300005], [-24.3107958061, 8.9806713916], [-2.35223717512, -12.733819119000001], [27.795642754899998, -1.2420441869], [-8.445926433010001, 11.3930571269], [-8.44231273134, 11.4062011817], [9.72887232545, -11.2650522999], [27.123592890500003, -1.34848958778], [11.242707397, -16.532214008900002], [-13.8670297113, 3.7726605648500002], [-20.4280135223, -9.39392408627], [-23.03006319, -1.3142951543299999], [-11.4629897245, 13.7667005522], [7.4333392594, -14.2721159344], [-22.9978350244, -0.8589809925740001], [1.08971904649, -5.352188280930001], [-12.748660256600001, 5.84495315877], [7.44254567288, 2.40855798254], [-13.163852009700001, -9.18510670207], [-9.370939887210001, 19.539460146], [13.425887400699999, 10.5585113863], [-21.991273794899996, -1.06028163501], [-20.6358565098, -1.0779684654100001], [-13.999650461, 12.8031162801], [24.9488421622, -0.249917237003], [12.0751714548, -4.817001525019999], [-5.37478662342, -14.909907775399999], [18.1192403157, -6.627931769680001], [-18.914813481099998, -1.64347676811], [23.3177365998, -2.65012821565], [-6.7597495973, -17.528519972], [-10.730820461799999, 7.841755242760001], [13.1236213775, 18.933379215], [-0.8285429136139999, 14.003937371800001], [-15.7601062341, 14.5748628068], [16.709955896300002, 15.2386814077], [13.2545239145, 18.5122062512], [-8.25199545573, 19.7126889301], [-23.6389742887, 10.3749192263], [27.50729539, -0.7670827036839999], [-3.8267784540699994, -13.4152923798], [-7.98050758403, -3.76458759389], [8.06623952044, -0.638398116065], [-14.601524517, 2.85879258126], [18.0542372893, -3.7812767858300003], [-21.4649517795, -0.621518564529], [13.003456328, 8.07083356502], [18.2274158382, -5.81760393364], [-0.491921605943, -5.69817893237], [2.7365665687800003, -16.4042188148], [13.821220605399999, 2.15758913195], [-0.526013178129, -4.91964755459], [20.52723053, -1.1087139284999998], [-8.52652699579, 16.4121902022], [-10.553790894199999, 11.4707654974], [-0.472886627875, -3.36688391786], [-3.7074670610300005, -15.2182429691], [15.3333201705, -1.9680543651400002], [-14.4444189556, -0.908378791163], [24.789241252100002, -1.0384750169299999], [8.719106797030001, -11.4306327451], [-17.3388067602, -7.492272722849999], [2.7232497728099996, -16.33087042], [-19.5729762036, -13.854675690699999], [-8.46951490272, 16.7359842743], [12.5708198303, 2.74240848865], [-18.1532905291, -11.6480516877], [7.81542721757, 1.3573365866799998], [15.1352583335, 14.898732786400002], [12.438869442, -18.739812121099998], [-13.074396715799999, -8.85665290897], [-6.086841580730001, -12.392414036099998], [14.6624818308, 3.7539993159699994], [-14.353907387000001, -0.6657613731199999], [27.5626415776, -1.19398775221], [-23.7424966179, 8.567532693839999], [12.539544353399998, 5.12461372792], [10.134753417899999, -12.0318631439], [-13.376131423599999, 14.3084925115], [-20.041761968299998, -13.8477262809], [-3.8087943777599995, 1.7569684861400001], [19.541345190999998, 2.5968681618400002], [6.83167026591, 3.0609904902900005], [12.8721531845, 6.0471795021000005], [-1.55920194237, -7.69462948125], [17.35893101, 2.71185275603], [-3.8061475654000003, 1.76001759747], [20.242158148199998, -3.4690455063199996], [1.95207283458, 4.401564861040001], [-20.8241777149, -1.58399159704], [-9.095862332080001, 13.9391270032], [-15.381013859300001, 8.888459494480001], [1.0622843075, -8.67598565907], [-7.501666609189999, 1.11065340611], [-12.0983738776, 7.61948706962], [-6.46504716752, -13.434147791500001], [-18.6134151893, -13.1018111777], [-22.1750113321, -0.7746282913089999], [-14.014522333, 14.2133682698], [8.770052187380001, -12.4431029968], [-0.610563127132, 14.7347644648], [-8.77794765062, 11.2766817966], [-7.09700866702, -16.7724376139], [14.8774999104, 14.4400726639], [-7.445426775739999, -3.98266185754], [-0.364857898535, 6.849272322769999], [-12.331996370899999, 5.3320195866699995], [-11.479954601300001, -9.44662039607], [-12.7187020692, -5.57392457936], [13.006120857300001, 6.465166496849999], [13.412459757799999, 1.84755716284], [6.3188196776600005, -11.156410681099999], [6.39944777632, 2.13783100572], [-17.7394215744, -10.2154488479], [22.8539344542, -3.8223328872000004], [27.2612240781, -1.5622702247600002], [-7.120744130399999, -10.863909108900001], [-14.8048962358, 2.89343402582], [-7.3776477502399995, -17.1866655753], [13.6437634009, 19.4897057557], [-8.15154955615, 7.84356557959], [26.208864416500003, -0.8926758449850001], [-8.8952464971, 20.0176364468], [-19.1195545164, -11.5644466627], [-19.21106312, -0.353994745147], [-8.04866546476, -13.9749016726], [6.81356696144, -5.733516133659999], [-10.4725149471, 11.680433020399999], [3.8116108499699997, 10.517565259], [-19.9638051867, -13.1014011757], [-15.8086231268, -2.22414649727], [-21.810960120300003, -1.8084024376199999], [13.213612243800002, 9.9541688295], [-8.87315095938, 9.671584079430001], [-13.0495735839, 10.9110780678], [-16.9321313003, 14.6056611152], [16.4173566105, 13.2131420447], [-3.4263021963200004, -0.9669163450370001], [-0.415078964686, -4.17785233227], [8.06517455288, -12.390518211400002], [13.9727555068, 18.8809327126], [13.609603079700001, 18.2445739467], [14.1117395086, 16.2766591157], [13.4014513185, 7.716408823969999], [-9.27781732249, 19.4500840159], [16.5256278009, -2.98200029838], [0.058617175668900005, -3.37057584988], [22.3371489652, 1.1817811290200002], [-1.4577991564500001, -7.8531841161000004], [-4.647011442769999, -13.923201546600001], [-11.429347198399999, 13.1327817283], [13.646833696500002, 2.1152586511], [6.939299077799999, 3.5683124457599997], [-22.939092976799998, -1.40759529117], [12.5649514455, 3.2486040342], [18.3081338348, -3.1236742495499996], [-22.455757415100003, -0.739337343846], [-3.95172036193, -10.8737566347], [27.4831696834, -1.89010026777], [-14.525127788499999, 12.1498932974], [12.5108007025, -17.0207891316], [-7.362062560139999, -17.3184512943], [14.600160526500002, 3.28632595275], [18.3265752405, -5.95334508885], [12.0750751069, -4.81616445848], [22.940269852800004, 0.920541315379], [17.9792002475, -7.31046140177], [5.56436016255, -10.992660378499998], [-24.0932659317, 9.98301464727], [11.326834569, -14.869147091199999], [16.4036907424, 13.3621023586], [-9.966985014310001, 13.65542534], [11.274091976, -14.8585748871], [14.8041213028, -1.47871816293], [-16.501043386, 11.9207606023], [6.95808970733, 3.45988681422], [-20.0690466616, -5.37686065485], [13.4001072849, 8.54895269599], [-18.3594373287, -12.4009002641], [6.78859303987, 3.35809663718], [9.65208199906, -10.6084273001], [-8.67281694865, 17.0715651169], [-8.121384754680001, -4.823500500480001], [7.66118030671, 4.785091749059999], [12.3129123948, 4.71394941865], [-18.9901125144, -10.0109797987], [12.7585438003, -15.673248911199998], [-9.778712312160001, 17.6139773911], [-6.950605224919999, -16.1807097578], [-13.6839219954, -3.4401743222900003], [-25.1366604818, 9.05691321085], [3.52506172948, 10.5554715392], [-8.7927411579, 18.9362626118], [-1.3827341382499998, 13.7305582969], [-6.50072375472, -16.2366780989], [11.046371625799999, -14.6503613223], [-8.16081362572, 7.416664150369999], [-19.557508587, -7.818668095589999], [20.2274068895, 2.08891868582], [-23.8949829767, 9.44291665041], [13.366956330699999, 18.7865265048], [15.2855715271, 0.17290232434099997], [-3.8045207112800004, 1.7601976438599998], [2.4689886542200004, 10.5538746263], [6.88989719412, 3.09115099684], [18.5427223005, 3.20200974833], [-9.28079765603, 19.3815174712], [-11.787339875999999, 9.53021050096], [-7.15829086361, -16.693089003900003], [6.89247700582, -7.365178404], [12.6086754881, -19.219578293199998], [-8.235394753660001, 19.2384819845], [-10.6623001137, 11.093467047799999], [-6.33473949947, -10.6596758277], [-2.49817444523, -15.4017279473], [10.9303077632, -17.3791792302], [-16.0880866268, 14.0780747253], [-9.50399375895, 16.1894365221], [7.07908732863, 3.6560786122000004], [-24.5759130135, 10.588308758], [11.345273710299999, -16.7629187034], [12.5514777122, -16.9666654955], [-0.0500942948663, -3.33505385164], [13.774052099, 17.412039564100002], [-18.7296111533, -12.180125625799999], [-10.8439124768, 16.6755497979], [18.959850056, -4.49147105497], [-1.4871166408200003, -7.96312484215], [-3.74338140561, -11.1134661603], [23.1601233057, 0.851972380599], [-14.1978632021, 6.4355746601], [18.9973386245, 2.84885896383], [-13.112832727899999, -5.6264971601600005], [-0.054487956582500004, -4.5326287152699996], [12.8096998552, -17.301239462799998], [-10.5742424596, 11.4147838794], [13.246334131700001, -18.2294442746], [-21.114666347300002, -2.43274512647], [8.220068227310001, -11.6401433553], [5.29771568172, -11.006545120799998], [-14.840244907799999, -0.929138527172], [28.042385682600003, -1.8846674963999999], [-15.6621572724, -10.4108716554], [-12.552918610699999, 5.421521844730001], [10.3613634008, -12.170453430699999], [-2.35864500376, -12.8313491427], [-9.335761619169999, 18.8959346729], [13.9803482653, 18.7719221155], [-2.82936055379, -11.9857997904], [13.562508664000001, 17.4057058697], [13.106101006500001, -18.060321363499998], [-14.137217267899999, -3.1880881168700004], [11.237621781, -17.8934720028], [-6.34141751273, -12.765035573499999], [-14.0470287352, 12.8499004899], [12.732978453, 5.14008655462], [12.2955095229, 4.19680289482], [-6.69241302949, -15.1503308285], [12.4860599578, -16.7123123802], [-8.364575584439999, 19.8411317], [-9.56012806792, 16.5474118009], [15.321769163299999, 9.7300347698], [-10.6971752666, 13.6054428466], [-14.4089311821, 12.864118904200001], [21.845099752800003, 1.4281210045100001], [-7.77221080151, 17.0717491316], [-4.33396251522, -13.1039887597], [28.4241932539, -1.06437954282], [8.30384596407, 3.3142106234599997], [-23.8968384765, 8.844181614470001], [2.6580272111900003, -16.136082685399998], [-8.85377678102, 19.3572552567], [-23.5676207273, 7.976988369630001], [12.9385812952, 6.6407667346000006], [16.1527536474, 15.019525643699998], [18.7851349833, 2.81353814073], [-0.488556339528, -4.66313314264], [14.3790796148, 11.654156379000002], [-6.19379987848, -16.0196343744], [0.989613708241, -14.4268943558], [11.752745714200001, -18.0039262069], [-20.245559006500002, -13.2187157775], [-6.5810433314, -14.3116324106], [27.2749371969, -1.3673051318], [-15.549303865499999, -6.860241713330001], [14.3205967209, 17.0417620763], [13.319301474000001, 18.755331105], [13.6277744079, 10.3951739417], [-11.0102688026, 14.7762029399], [15.4236212827, 15.1331886], [13.912877520599999, 19.4262818922], [18.0600569553, -6.672627275549999], [-16.4844686111, -1.9540960970400003], [13.369790986099998, 19.2964709994], [15.2796727078, -0.5713871915300001], [-7.21558754114, -10.8707800632], [2.83558218429, -15.926985791099998], [-23.1215318763, 7.467028985680001], [17.9450087913, -7.20293526624], [-24.5471465995, 10.2623312846], [2.74034701176, -16.2754049724], [22.3234166608, 1.18203401491], [12.027180180799999, -16.1153622524], [11.648660958599999, -17.3253239233], [12.6277842927, 5.36547917572], [-12.9519244276, 8.95076300991], [13.503608825599999, 18.157032605599998], [-9.313322518560001, 19.8007344506], [-6.768005408830001, 0.9827030068970001], [10.3588142065, -16.1052505324], [-23.7366487058, 9.64941656674], [-12.0613578266, 9.40474226947], [17.3873357553, 2.16846395918], [16.3091579297, 9.14664621049], [-11.8881627327, 12.4965327793], [13.558470746300001, 17.6308540265], [-21.6913155621, -0.8203562368289999], [12.3640355678, 4.41582877154], [-16.3454589509, 11.9480249496], [-9.71071764168, 13.9679916748], [13.2673659152, 10.2935672617], [-8.82848444399, 19.9782526671], [-19.436654059200002, -13.581308103800001], [2.87620108472, 10.5350185115], [-19.0864173615, -8.340855839660001], [13.6563987793, 15.4757557103], [-3.8046355396199996, 1.76138955999], [24.7338411581, -0.454341793918], [-19.5522513449, -13.815092762], [-16.7299739227, -8.30995494786], [26.603069137, -1.3104937405], [-9.17684746798, 7.125071310730001], [-13.4779647368, 9.675881349680001], [-23.635541922399998, 7.908006888080001], [18.4968596837, -3.6920338362900003], [0.0322125724347, 14.1920575427], [4.46303894188, -11.053977834200001], [-10.964979958299999, 15.2147363194], [-3.8076049743400002, 1.7587082189200003], [-7.131391539430001, -16.2363053218], [12.8243315607, 6.39073132309], [-7.21984572411, 1.01888818942], [-23.8910798254, 10.4298857308], [15.170817435899998, 12.371940294200002], [13.670668103199999, 15.280136152599999], [-7.45470758589, -17.224294733900003], [-17.5419901401, -8.42347498477], [-6.94460985704, -17.590971156], [-12.1420681145, 5.06120859325], [14.8796764323, 17.8715578995], [-16.7536090587, 11.7985599995], [-17.3227923782, -8.32323778392], [-12.503709951400001, -9.20947082981], [-19.292347953900002, -12.676344930199999], [0.628808731165, -4.11264316231], [-16.2576391292, 2.5361871252], [-15.425528039200001, -8.80311750161], [12.1275204031, -4.749463925440001], [-15.8796288372, 2.6827874388599997], [19.0127540196, -4.38157774646], [-13.063755374200001, -9.17961926252], [16.9823283424, 3.5057663877199996], [4.36856062384, 10.5485788289], [-21.420865701, -2.2380197151499996], [23.4205379325, 0.755364135715], [12.235591488699999, 4.55655822715], [-10.6451870374, 15.1389169002], [0.060854382846, -3.42503277879], [-12.7384178974, 14.895959941300001], [23.2610993786, 0.24211542115200002], [13.487218286900001, 19.399684757], [-8.2864436583, 19.739151470699998], [15.835433638900001, -2.55199849571], [14.7198704602, 17.3199442677], [12.6717998736, -19.1021704274], [13.3054327565, 12.5675377216], [-19.6877235943, -13.2128375776], [-10.0339471063, 7.63933642218], [-12.2736631354, 9.292897068250001], [-17.4115480945, -12.369161486], [-19.4192495112, -8.81552154584], [-12.182482314100001, -9.17614875625], [-7.85204052722, 6.83762231125], [-19.3464308886, -10.2220751863], [0.0539196714076, -3.3801945682300003], [13.527656123699998, 0.608840100367], [8.549029924380001, -11.2923576594], [-9.185667245489999, 5.89599601731], [13.2593236197, 10.986644907], [27.260005377, -1.81199291936], [-19.7059664461, -6.76391815429], [13.318123576, 12.6093177762], [16.2387139724, 13.1373264298], [6.0923994635500005, -11.063182453800001], [-4.0950174882, 1.28679717482], [17.9699145931, -7.282112479049999], [-0.8496518399359999, -4.19393309435], [-8.61643266554, 10.9111642646], [-14.3120675322, 13.5477530001], [-23.6530937777, 8.31581398844], [13.1411440083, 18.9674861652], [14.7979954144, 17.857272131600002], [4.169373328480001, -6.5918779792799995], [-20.1811371645, -13.7460038108], [10.6358146761, -17.3025978094], [-2.2343646549200002, -8.71809967085], [23.3790828704, -2.42297937961], [17.590199057, 2.86420671098], [-19.3941156468, -1.55509171292], [-5.07568256232, 1.07818728999], [9.80038337337, -11.0166411941], [16.3752422168, 9.22127078416], [25.028170825900002, -0.39793928967799996], [-8.70918825096, 10.2396089191], [27.603147307399997, -0.542625749905], [-14.5657027002, -9.81654654042], [-19.6297806767, -12.801373981400001], [-7.77210299224, -12.401321720799999], [-1.49858132036, -7.546699199380001], [-22.701258937, -1.38881901868], [-4.26988221367, 1.57907788374], [17.8209320976, -6.28474435835], [-3.1184616757300003, -1.85310530003], [11.900973309600001, 4.06105754995], [17.9767802828, -7.3131937377], [-20.2805898162, -13.2188060531], [17.030256755099998, 15.163377325699999], [-6.19656851641, -15.7525191425], [-10.3740713639, 17.508367219100002], [0.38821623200800004, -4.38739131218], [28.4095451411, -1.4948299198500001], [-18.5690411492, -9.36181171572], [-12.2371471771, 6.207635535730001], [4.88951079975, -6.662342353860001], [-17.068656937300002, -11.4204869374], [-17.445769864200003, -8.12802614536], [-22.972788115500002, -0.839913967554], [-8.604905748060002, 17.694194793199998], [2.34668325753, 4.57382854591], [8.51006131552, -12.65216443], [-24.6011782264, 10.9383483372], [19.931188661300002, 2.33639984893], [-14.7196643467, 2.6864028928099994], [-23.0613136331, -1.2051970760500001], [-16.0796182141, -9.92545365215], [-14.946759039000002, -9.773499145339999], [-8.45672130423, 16.1558812867], [15.51031327, 10.7863190023], [0.638246985831, 7.61004192222], [18.4664526449, 3.25538503327], [14.258866154000001, 19.1342290547], [-24.675315685900003, 11.0510309993], [14.0313257202, 18.586835386700002], [12.789717668800002, -18.4795772887], [-8.47937307487, 19.167661704], [13.0167084547, 0.503476204328], [8.11914198126, 5.528813059249999], [16.7546103878, 12.614746139100001], [-6.33059352032, -16.699104301600002], [-23.4534203594, 7.82476767521], [27.0799577026, -0.735072414865], [-21.597601636300002, -0.945275875871], [-7.757502455089999, 1.16593997347], [24.4033357027, 0.372153264655], [-19.7723862557, -12.760980587999999], [27.6522134985, -1.93602634854], [-24.1179747269, 10.6829310593], [13.908956735599999, 10.976919309100001], [13.196204722300001, 11.017950518900001], [15.2031748898, 12.154606870699999], [18.0220676037, 0.32974664558899996], [-8.684044523719999, 20.028293505], [13.0311338617, 7.35024694593], [-0.956129983526, 13.487884043800001], [-13.4636913757, -8.13520068788], [-6.65315645403, -14.948543773199999], [-0.486347416721, -3.4321509741900003], [7.65193918307, -0.29863296826200003], [27.7095409667, -1.23954641531], [-9.75518145627, 13.8216637177], [16.043884943, -2.75612862482], [-10.8715481738, 8.59112361737], [-24.3781432027, 10.9471062491], [12.6346389423, -3.8183784571300006], [-10.6370180179, 11.2191795621], [-0.804138437853, 14.295129937], [13.4010226719, 13.038650736900001], [15.2781625892, -0.240628014113], [-19.6690611481, -13.8386023915], [-7.873703064710001, 6.7630687648], [0.73619568484, -5.2272990329199995], [8.70833696041, -10.8647421999], [11.992734903699999, -18.5598309532], [-20.2310125355, -13.5814960235], [-6.45248930506, -13.371081621300002]]}, &quot;id&quot;: &quot;el315824382290576&quot;});
            })
         });
}
&lt;/script&gt;

&lt;hr /&gt;

&lt;h2 id=&quot;clustering-presidents&quot;&gt;Clustering presidents&lt;/h2&gt;
&lt;p&gt;Finally, we can look at how each president cluster with one another based on the entire corpus of their speeches. Since we are clustering based on their speeches, it would be reasonable to expect that presidents with similar ideologies, or that were confronted to similar historical situations such as internal or external conflicts, economic depression or periods of significant political instability, should cluster close to one another. For this exercise, we use the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;CountVectorizer&lt;/code&gt; function from the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;scikit-learn&lt;/code&gt; library to generate president-specific corpuses built using all their speeches. As a result, we obtain a term-frequency matrix where each row is a president, columns are words, and cells represents the total number of times a president used a given word. Note that I mostly relied on defaut parameters for the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;CountVectorizer&lt;/code&gt;, but we could potentially change a lot of parameters including stopwords list, minimum/maximum document-frequency, maximum number of words, n-grams generations and more…&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;n&quot;&gt;df&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pickle&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;load&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;open&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;presidential_speeches.pickle&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;s&quot;&gt;&quot;rb&quot;&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;speeches&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;transcript&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tolist&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;presidents&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;df&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;speaker&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;tolist&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;collections&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;defaultdict&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;president_words&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;defaultdict&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;list&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;president&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;enumerate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;presidents&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;):&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;president_words&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;president&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;].&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;append&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;speeches&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;n&quot;&gt;president_all_words&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[]&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;key&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;president_words&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;keys&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;():&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;president_all_words&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;append&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos; &apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;join&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;president_words&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;key&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]).&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;encode&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;utf8&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;kn&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;nn&quot;&gt;sklearn.feature_extraction.text&lt;/span&gt; &lt;span class=&quot;kn&quot;&gt;import&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;CountVectorizer&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;vectorizer&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;CountVectorizer&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;min_df&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                             &lt;span class=&quot;n&quot;&gt;ngram_range&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt;
                             &lt;span class=&quot;n&quot;&gt;strip_accents&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;unicode&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                             &lt;span class=&quot;n&quot;&gt;stop_words&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;english&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                             &lt;span class=&quot;n&quot;&gt;max_features&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;5000&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;X&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;vectorizer&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fit_transform&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;president_all_words&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;vocab&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;vectorizer&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;get_feature_names&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;print&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;X&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;shape&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# output T-SNE 2-D representation of each speech to file
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;president_clusters&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;DataFrame&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Y&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;president_clusters&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;president&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;pd&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;Series&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;([&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;str&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;president_words&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;keys&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;()],&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;index&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;president_clusters&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;index&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;print&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;president_clusters&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;head&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;president_clusters&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;to_csv&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;president_tsne_clusters.csv&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;index&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;False&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;             0           1 president
0  -504.216414 -139.964997   madison
1   129.954414  639.936735      taft
2  1452.238353 -825.087538   clinton
3   735.346376 -492.296639    carter
4  -147.329302  433.361482  buchanan
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;c1&quot;&gt;# extract unique lits of presidents
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;presidents&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;president_clusters&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;president&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]]&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;unique_presidents&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;list&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;set&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;presidents&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;N&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;len&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;unique_presidents&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;HSV_tuples&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;*&lt;/span&gt;&lt;span class=&quot;mf&quot;&gt;1.0&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;/&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;N&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mf&quot;&gt;0.5&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;mf&quot;&gt;0.9&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;range&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;N&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)]&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;RGB_tuples&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;map&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;k&quot;&gt;lambda&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;colorsys&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;hsv_to_rgb&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;*&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;HSV_tuples&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;

&lt;span class=&quot;c1&quot;&gt;# map distinct color to each president
&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;president_colors&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{}&lt;/span&gt;
&lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;p&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;nb&quot;&gt;enumerate&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;unique_presidents&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;):&lt;/span&gt;
    &lt;span class=&quot;n&quot;&gt;president_colors&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;RGB_tuples&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;i&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;span class=&quot;n&quot;&gt;fig&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;ax&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;plt&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;subplots&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;subplot_kw&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;dict&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;axisbg&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;#EEEEEE&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;),&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;figsize&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;ax&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;grid&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;white&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;linestyle&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;solid&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;scatter&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;ax&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scatter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;president_clusters&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ix&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[:,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;],&lt;/span&gt;
                  &lt;span class=&quot;n&quot;&gt;president_clusters&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;ix&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[:,&lt;/span&gt; &lt;span class=&quot;mi&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;],&lt;/span&gt;
                     &lt;span class=&quot;n&quot;&gt;s&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;80&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                     &lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;presidents&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt;
                  &lt;span class=&quot;n&quot;&gt;c&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;president_colors&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;p&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;p&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;presidents&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;])&lt;/span&gt;

&lt;span class=&quot;n&quot;&gt;ax&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;grid&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;color&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;white&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;linestyle&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;solid&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;ax&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;set_title&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&quot;Clustering presidents based on their speeches&quot;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;size&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;mi&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;labels&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;&amp;lt;h3&amp;gt;{president}&amp;lt;/h3&amp;gt;&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;nb&quot;&gt;format&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;president&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;x&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;presidents&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; 
&lt;span class=&quot;n&quot;&gt;tooltip&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;plugins&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;PointHTMLTooltip&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;scatter&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;labels&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;plugins&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;connect&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;fig&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;tooltip&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;div id=&quot;fig_el3158244478766882470314674&quot;&gt;&lt;/div&gt;
&lt;script&gt;
function mpld3_load_lib(url, callback){
  var s = document.createElement(&apos;script&apos;);
  s.src = url;
  s.async = true;
  s.onreadystatechange = s.onload = callback;
  s.onerror = function(){console.warn(&quot;failed to load library &quot; + url);};
  document.getElementsByTagName(&quot;head&quot;)[0].appendChild(s);
}

if(typeof(mpld3) !== &quot;undefined&quot; &amp;&amp; mpld3._mpld3IsLoaded){
   // already loaded: just create the figure
   !function(mpld3){
       
    mpld3.register_plugin(&quot;htmltooltip&quot;, HtmlTooltipPlugin);
    HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
    HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
    HtmlTooltipPlugin.prototype.requiredProps = [&quot;id&quot;];
    HtmlTooltipPlugin.prototype.defaultProps = {labels:null, hoffset:0, voffset:10};
    function HtmlTooltipPlugin(fig, props){
        mpld3.Plugin.call(this, fig, props);
    };

    HtmlTooltipPlugin.prototype.draw = function(){
       var obj = mpld3.get_element(this.props.id);
       var labels = this.props.labels;
       var tooltip = d3.select(&quot;body&quot;).append(&quot;div&quot;)
                    .attr(&quot;class&quot;, &quot;mpld3-tooltip&quot;)
                    .style(&quot;position&quot;, &quot;absolute&quot;)
                    .style(&quot;z-index&quot;, &quot;10&quot;)
                    .style(&quot;visibility&quot;, &quot;hidden&quot;);

       obj.elements()
           .on(&quot;mouseover&quot;, function(d, i){
                              tooltip.html(labels[i])
                                     .style(&quot;visibility&quot;, &quot;visible&quot;);})
           .on(&quot;mousemove&quot;, function(d, i){
                    tooltip
                      .style(&quot;top&quot;, d3.event.pageY + this.props.voffset + &quot;px&quot;)
                      .style(&quot;left&quot;,d3.event.pageX + this.props.hoffset + &quot;px&quot;);
                 }.bind(this))
           .on(&quot;mouseout&quot;,  function(d, i){
                           tooltip.style(&quot;visibility&quot;, &quot;hidden&quot;);});
    };
    
       mpld3.draw_figure(&quot;fig_el3158244478766882470314674&quot;, {&quot;axes&quot;: [{&quot;xlim&quot;: [-1500.0, 3000.0], &quot;yscale&quot;: &quot;linear&quot;, &quot;axesbg&quot;: &quot;#EEEEEE&quot;, &quot;texts&quot;: [{&quot;v_baseline&quot;: &quot;auto&quot;, &quot;h_anchor&quot;: &quot;middle&quot;, &quot;color&quot;: &quot;#000000&quot;, &quot;text&quot;: &quot;Clustering presidents based on their speeches&quot;, &quot;coordinates&quot;: &quot;axes&quot;, &quot;zorder&quot;: 3, &quot;alpha&quot;: 1, &quot;fontsize&quot;: 20.0, &quot;position&quot;: [0.5, 1.0089605734767024], &quot;rotation&quot;: -0.0, &quot;id&quot;: &quot;el315824388713360&quot;}], &quot;zoomable&quot;: true, &quot;images&quot;: [], &quot;xdomain&quot;: [-1500.0, 3000.0], &quot;ylim&quot;: [-1000.0, 1500.0], &quot;paths&quot;: [], &quot;sharey&quot;: [], &quot;sharex&quot;: [], &quot;axesbgalpha&quot;: null, &quot;axes&quot;: [{&quot;scale&quot;: &quot;linear&quot;, &quot;tickformat&quot;: null, &quot;grid&quot;: {&quot;color&quot;: &quot;#FFFFFF&quot;, &quot;alpha&quot;: 1.0, &quot;dasharray&quot;: &quot;10,0&quot;, &quot;gridOn&quot;: true}, &quot;fontsize&quot;: 10.0, &quot;position&quot;: &quot;bottom&quot;, &quot;nticks&quot;: 10, &quot;tickvalues&quot;: null}, {&quot;scale&quot;: &quot;linear&quot;, &quot;tickformat&quot;: null, &quot;grid&quot;: {&quot;color&quot;: &quot;#FFFFFF&quot;, &quot;alpha&quot;: 1.0, &quot;dasharray&quot;: &quot;10,0&quot;, &quot;gridOn&quot;: true}, &quot;fontsize&quot;: 10.0, &quot;position&quot;: &quot;left&quot;, &quot;nticks&quot;: 6, &quot;tickvalues&quot;: null}], &quot;lines&quot;: [], &quot;markers&quot;: [], &quot;id&quot;: &quot;el315824447653072&quot;, &quot;ydomain&quot;: [-1000.0, 1500.0], &quot;collections&quot;: [{&quot;paths&quot;: [[[[0.0, -0.5], [0.13260155, -0.5], [0.25978993539242673, -0.44731684579412084], [0.3535533905932738, -0.3535533905932738], [0.44731684579412084, -0.25978993539242673], [0.5, -0.13260155], [0.5, 0.0], [0.5, 0.13260155], [0.44731684579412084, 0.25978993539242673], [0.3535533905932738, 0.3535533905932738], [0.25978993539242673, 0.44731684579412084], [0.13260155, 0.5], [0.0, 0.5], [-0.13260155, 0.5], [-0.25978993539242673, 0.44731684579412084], [-0.3535533905932738, 0.3535533905932738], [-0.44731684579412084, 0.25978993539242673], [-0.5, 0.13260155], [-0.5, 0.0], [-0.5, -0.13260155], [-0.44731684579412084, -0.25978993539242673], [-0.3535533905932738, -0.3535533905932738], [-0.25978993539242673, -0.44731684579412084], [-0.13260155, -0.5], [0.0, -0.5]], [&quot;M&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;Z&quot;]]], &quot;edgecolors&quot;: [&quot;#000000&quot;], &quot;edgewidths&quot;: [1.0], &quot;offsets&quot;: &quot;data01&quot;, &quot;yindex&quot;: 1, &quot;id&quot;: &quot;el315824324751120&quot;, &quot;pathtransforms&quot;: [[9.938079899999066, 0.0, 0.0, 9.938079899999066, 0.0, 0.0]], &quot;pathcoordinates&quot;: &quot;display&quot;, &quot;offsetcoordinates&quot;: &quot;data&quot;, &quot;zorder&quot;: 1, &quot;xindex&quot;: 0, &quot;alphas&quot;: [null], &quot;facecolors&quot;: [&quot;#E57272&quot;, &quot;#E58272&quot;, &quot;#E59272&quot;, &quot;#E5A272&quot;, &quot;#E5B272&quot;, &quot;#E5C272&quot;, &quot;#E5D272&quot;, &quot;#E5E272&quot;, &quot;#E572C2&quot;, &quot;#C8E572&quot;, &quot;#B8E572&quot;, &quot;#A8E572&quot;, &quot;#98E572&quot;, &quot;#88E572&quot;, &quot;#78E572&quot;, &quot;#72E57D&quot;, &quot;#72E58D&quot;, &quot;#72BDE5&quot;, &quot;#72E5AD&quot;, &quot;#72E5BD&quot;, &quot;#72E5CD&quot;, &quot;#72E5DD&quot;, &quot;#E572B2&quot;, &quot;#72DDE5&quot;, &quot;#72CDE5&quot;, &quot;#72E59D&quot;, &quot;#72ADE5&quot;, &quot;#C872E5&quot;, &quot;#728DE5&quot;, &quot;#727DE5&quot;, &quot;#7872E5&quot;, &quot;#8872E5&quot;, &quot;#9872E5&quot;, &quot;#A872E5&quot;, &quot;#B872E5&quot;, &quot;#729DE5&quot;, &quot;#D872E5&quot;, &quot;#E572E2&quot;, &quot;#E572D2&quot;, &quot;#D8E572&quot;, &quot;#E57292&quot;, &quot;#E572A2&quot;, &quot;#E57282&quot;]}], &quot;xscale&quot;: &quot;linear&quot;, &quot;bbox&quot;: [0.125, 0.125, 0.77500000000000002, 0.77500000000000002]}], &quot;height&quot;: 800.0, &quot;width&quot;: 800.0, &quot;plugins&quot;: [{&quot;type&quot;: &quot;reset&quot;}, {&quot;enabled&quot;: false, &quot;button&quot;: true, &quot;type&quot;: &quot;zoom&quot;}, {&quot;enabled&quot;: false, &quot;button&quot;: true, &quot;type&quot;: &quot;boxzoom&quot;}, {&quot;voffset&quot;: 10, &quot;labels&quot;: [&quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;garfield&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taylor&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;harrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;harding&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;], &quot;type&quot;: &quot;htmltooltip&quot;, &quot;id&quot;: &quot;el315824324751120&quot;, &quot;hoffset&quot;: 0}], &quot;data&quot;: {&quot;data01&quot;: [[-503.992042491, -148.132742662], [130.70808314200002, 611.679941484], [1464.20734407, -779.256500327], [733.29835266, -481.025649865], [-161.037183639, 422.551813966], [2140.18176299, -544.619575925], [-829.268419324, -475.902741532], [-772.3729656930001, -292.538957118], [811.232901383, 1020.32049247], [-738.2910616339999, -401.62616164800005], [-29.440323177899998, 593.6218636919999], [-560.576433478, -46.450960718500006], [-409.211359634, -366.11457716800004], [-26.588192642800003, 808.263626234], [-520.421256801, 59.28219037979999], [-100.109921282, -65.2572310411], [369.661791965, 1346.15934822], [-245.416125955, -497.238407149], [24.533096064499997, 695.859703845], [-187.838172533, 201.77814935599997], [662.061548496, -585.2636698780001], [-511.657250883, -263.984604068], [-394.204162845, 144.58469971899999], [-37.7270430342, 468.943991169], [-51.9259050533, 71.6529206611], [-679.254018445, -510.436258905], [-629.795781746, -150.420439564], [-370.293848417, 327.394292644], [-284.194552918, -369.531011663], [-307.806345507, 215.98060051599998], [2813.28805566, -248.965157485], [-195.528685317, 38.1417706047], [-571.2432199259999, -434.70537751800003], [-676.951745341, -238.37973994200001], [-441.573178788, -500.500484469], [-8.23091744227, 269.51036986599996], [-622.450804007, -336.328816255], [126.341220704, 783.724676627], [1205.20991198, -263.08504096400003], [915.312302889, 17.952366609400002], [-238.28751346099997, 334.859870259], [-399.86167891199995, -16.0807661302], [110.08380981799999, -414.79002537800005]]}, &quot;id&quot;: &quot;el315824447876688&quot;});
   }(mpld3);
}else if(typeof define === &quot;function&quot; &amp;&amp; define.amd){
   // require.js is available: use it to load d3/mpld3
   require.config({paths: {d3: &quot;https://mpld3.github.io/js/d3.v3.min&quot;}});
   require([&quot;d3&quot;], function(d3){
      window.d3 = d3;
      mpld3_load_lib(&quot;https://mpld3.github.io/js/mpld3.v0.2.js&quot;, function(){
         
    mpld3.register_plugin(&quot;htmltooltip&quot;, HtmlTooltipPlugin);
    HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
    HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
    HtmlTooltipPlugin.prototype.requiredProps = [&quot;id&quot;];
    HtmlTooltipPlugin.prototype.defaultProps = {labels:null, hoffset:0, voffset:10};
    function HtmlTooltipPlugin(fig, props){
        mpld3.Plugin.call(this, fig, props);
    };

    HtmlTooltipPlugin.prototype.draw = function(){
       var obj = mpld3.get_element(this.props.id);
       var labels = this.props.labels;
       var tooltip = d3.select(&quot;body&quot;).append(&quot;div&quot;)
                    .attr(&quot;class&quot;, &quot;mpld3-tooltip&quot;)
                    .style(&quot;position&quot;, &quot;absolute&quot;)
                    .style(&quot;z-index&quot;, &quot;10&quot;)
                    .style(&quot;visibility&quot;, &quot;hidden&quot;);

       obj.elements()
           .on(&quot;mouseover&quot;, function(d, i){
                              tooltip.html(labels[i])
                                     .style(&quot;visibility&quot;, &quot;visible&quot;);})
           .on(&quot;mousemove&quot;, function(d, i){
                    tooltip
                      .style(&quot;top&quot;, d3.event.pageY + this.props.voffset + &quot;px&quot;)
                      .style(&quot;left&quot;,d3.event.pageX + this.props.hoffset + &quot;px&quot;);
                 }.bind(this))
           .on(&quot;mouseout&quot;,  function(d, i){
                           tooltip.style(&quot;visibility&quot;, &quot;hidden&quot;);});
    };
    
         mpld3.draw_figure(&quot;fig_el3158244478766882470314674&quot;, {&quot;axes&quot;: [{&quot;xlim&quot;: [-1500.0, 3000.0], &quot;yscale&quot;: &quot;linear&quot;, &quot;axesbg&quot;: &quot;#EEEEEE&quot;, &quot;texts&quot;: [{&quot;v_baseline&quot;: &quot;auto&quot;, &quot;h_anchor&quot;: &quot;middle&quot;, &quot;color&quot;: &quot;#000000&quot;, &quot;text&quot;: &quot;Clustering presidents based on their speeches&quot;, &quot;coordinates&quot;: &quot;axes&quot;, &quot;zorder&quot;: 3, &quot;alpha&quot;: 1, &quot;fontsize&quot;: 20.0, &quot;position&quot;: [0.5, 1.0089605734767024], &quot;rotation&quot;: -0.0, &quot;id&quot;: &quot;el315824388713360&quot;}], &quot;zoomable&quot;: true, &quot;images&quot;: [], &quot;xdomain&quot;: [-1500.0, 3000.0], &quot;ylim&quot;: [-1000.0, 1500.0], &quot;paths&quot;: [], &quot;sharey&quot;: [], &quot;sharex&quot;: [], &quot;axesbgalpha&quot;: null, &quot;axes&quot;: [{&quot;scale&quot;: &quot;linear&quot;, &quot;tickformat&quot;: null, &quot;grid&quot;: {&quot;color&quot;: &quot;#FFFFFF&quot;, &quot;alpha&quot;: 1.0, &quot;dasharray&quot;: &quot;10,0&quot;, &quot;gridOn&quot;: true}, &quot;fontsize&quot;: 10.0, &quot;position&quot;: &quot;bottom&quot;, &quot;nticks&quot;: 10, &quot;tickvalues&quot;: null}, {&quot;scale&quot;: &quot;linear&quot;, &quot;tickformat&quot;: null, &quot;grid&quot;: {&quot;color&quot;: &quot;#FFFFFF&quot;, &quot;alpha&quot;: 1.0, &quot;dasharray&quot;: &quot;10,0&quot;, &quot;gridOn&quot;: true}, &quot;fontsize&quot;: 10.0, &quot;position&quot;: &quot;left&quot;, &quot;nticks&quot;: 6, &quot;tickvalues&quot;: null}], &quot;lines&quot;: [], &quot;markers&quot;: [], &quot;id&quot;: &quot;el315824447653072&quot;, &quot;ydomain&quot;: [-1000.0, 1500.0], &quot;collections&quot;: [{&quot;paths&quot;: [[[[0.0, -0.5], [0.13260155, -0.5], [0.25978993539242673, -0.44731684579412084], [0.3535533905932738, -0.3535533905932738], [0.44731684579412084, -0.25978993539242673], [0.5, -0.13260155], [0.5, 0.0], [0.5, 0.13260155], [0.44731684579412084, 0.25978993539242673], [0.3535533905932738, 0.3535533905932738], [0.25978993539242673, 0.44731684579412084], [0.13260155, 0.5], [0.0, 0.5], [-0.13260155, 0.5], [-0.25978993539242673, 0.44731684579412084], [-0.3535533905932738, 0.3535533905932738], [-0.44731684579412084, 0.25978993539242673], [-0.5, 0.13260155], [-0.5, 0.0], [-0.5, -0.13260155], [-0.44731684579412084, -0.25978993539242673], [-0.3535533905932738, -0.3535533905932738], [-0.25978993539242673, -0.44731684579412084], [-0.13260155, -0.5], [0.0, -0.5]], [&quot;M&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;Z&quot;]]], &quot;edgecolors&quot;: [&quot;#000000&quot;], &quot;edgewidths&quot;: [1.0], &quot;offsets&quot;: &quot;data01&quot;, &quot;yindex&quot;: 1, &quot;id&quot;: &quot;el315824324751120&quot;, &quot;pathtransforms&quot;: [[9.938079899999066, 0.0, 0.0, 9.938079899999066, 0.0, 0.0]], &quot;pathcoordinates&quot;: &quot;display&quot;, &quot;offsetcoordinates&quot;: &quot;data&quot;, &quot;zorder&quot;: 1, &quot;xindex&quot;: 0, &quot;alphas&quot;: [null], &quot;facecolors&quot;: [&quot;#E57272&quot;, &quot;#E58272&quot;, &quot;#E59272&quot;, &quot;#E5A272&quot;, &quot;#E5B272&quot;, &quot;#E5C272&quot;, &quot;#E5D272&quot;, &quot;#E5E272&quot;, &quot;#E572C2&quot;, &quot;#C8E572&quot;, &quot;#B8E572&quot;, &quot;#A8E572&quot;, &quot;#98E572&quot;, &quot;#88E572&quot;, &quot;#78E572&quot;, &quot;#72E57D&quot;, &quot;#72E58D&quot;, &quot;#72BDE5&quot;, &quot;#72E5AD&quot;, &quot;#72E5BD&quot;, &quot;#72E5CD&quot;, &quot;#72E5DD&quot;, &quot;#E572B2&quot;, &quot;#72DDE5&quot;, &quot;#72CDE5&quot;, &quot;#72E59D&quot;, &quot;#72ADE5&quot;, &quot;#C872E5&quot;, &quot;#728DE5&quot;, &quot;#727DE5&quot;, &quot;#7872E5&quot;, &quot;#8872E5&quot;, &quot;#9872E5&quot;, &quot;#A872E5&quot;, &quot;#B872E5&quot;, &quot;#729DE5&quot;, &quot;#D872E5&quot;, &quot;#E572E2&quot;, &quot;#E572D2&quot;, &quot;#D8E572&quot;, &quot;#E57292&quot;, &quot;#E572A2&quot;, &quot;#E57282&quot;]}], &quot;xscale&quot;: &quot;linear&quot;, &quot;bbox&quot;: [0.125, 0.125, 0.77500000000000002, 0.77500000000000002]}], &quot;height&quot;: 800.0, &quot;width&quot;: 800.0, &quot;plugins&quot;: [{&quot;type&quot;: &quot;reset&quot;}, {&quot;enabled&quot;: false, &quot;button&quot;: true, &quot;type&quot;: &quot;zoom&quot;}, {&quot;enabled&quot;: false, &quot;button&quot;: true, &quot;type&quot;: &quot;boxzoom&quot;}, {&quot;voffset&quot;: 10, &quot;labels&quot;: [&quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;garfield&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taylor&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;harrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;harding&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;], &quot;type&quot;: &quot;htmltooltip&quot;, &quot;id&quot;: &quot;el315824324751120&quot;, &quot;hoffset&quot;: 0}], &quot;data&quot;: {&quot;data01&quot;: [[-503.992042491, -148.132742662], [130.70808314200002, 611.679941484], [1464.20734407, -779.256500327], [733.29835266, -481.025649865], [-161.037183639, 422.551813966], [2140.18176299, -544.619575925], [-829.268419324, -475.902741532], [-772.3729656930001, -292.538957118], [811.232901383, 1020.32049247], [-738.2910616339999, -401.62616164800005], [-29.440323177899998, 593.6218636919999], [-560.576433478, -46.450960718500006], [-409.211359634, -366.11457716800004], [-26.588192642800003, 808.263626234], [-520.421256801, 59.28219037979999], [-100.109921282, -65.2572310411], [369.661791965, 1346.15934822], [-245.416125955, -497.238407149], [24.533096064499997, 695.859703845], [-187.838172533, 201.77814935599997], [662.061548496, -585.2636698780001], [-511.657250883, -263.984604068], [-394.204162845, 144.58469971899999], [-37.7270430342, 468.943991169], [-51.9259050533, 71.6529206611], [-679.254018445, -510.436258905], [-629.795781746, -150.420439564], [-370.293848417, 327.394292644], [-284.194552918, -369.531011663], [-307.806345507, 215.98060051599998], [2813.28805566, -248.965157485], [-195.528685317, 38.1417706047], [-571.2432199259999, -434.70537751800003], [-676.951745341, -238.37973994200001], [-441.573178788, -500.500484469], [-8.23091744227, 269.51036986599996], [-622.450804007, -336.328816255], [126.341220704, 783.724676627], [1205.20991198, -263.08504096400003], [915.312302889, 17.952366609400002], [-238.28751346099997, 334.859870259], [-399.86167891199995, -16.0807661302], [110.08380981799999, -414.79002537800005]]}, &quot;id&quot;: &quot;el315824447876688&quot;});
      });
    });
}else{
    // require.js not available: dynamically load d3 &amp; mpld3
    mpld3_load_lib(&quot;https://mpld3.github.io/js/d3.v3.min.js&quot;, function(){
         mpld3_load_lib(&quot;https://mpld3.github.io/js/mpld3.v0.2.js&quot;, function(){
                 
    mpld3.register_plugin(&quot;htmltooltip&quot;, HtmlTooltipPlugin);
    HtmlTooltipPlugin.prototype = Object.create(mpld3.Plugin.prototype);
    HtmlTooltipPlugin.prototype.constructor = HtmlTooltipPlugin;
    HtmlTooltipPlugin.prototype.requiredProps = [&quot;id&quot;];
    HtmlTooltipPlugin.prototype.defaultProps = {labels:null, hoffset:0, voffset:10};
    function HtmlTooltipPlugin(fig, props){
        mpld3.Plugin.call(this, fig, props);
    };

    HtmlTooltipPlugin.prototype.draw = function(){
       var obj = mpld3.get_element(this.props.id);
       var labels = this.props.labels;
       var tooltip = d3.select(&quot;body&quot;).append(&quot;div&quot;)
                    .attr(&quot;class&quot;, &quot;mpld3-tooltip&quot;)
                    .style(&quot;position&quot;, &quot;absolute&quot;)
                    .style(&quot;z-index&quot;, &quot;10&quot;)
                    .style(&quot;visibility&quot;, &quot;hidden&quot;);

       obj.elements()
           .on(&quot;mouseover&quot;, function(d, i){
                              tooltip.html(labels[i])
                                     .style(&quot;visibility&quot;, &quot;visible&quot;);})
           .on(&quot;mousemove&quot;, function(d, i){
                    tooltip
                      .style(&quot;top&quot;, d3.event.pageY + this.props.voffset + &quot;px&quot;)
                      .style(&quot;left&quot;,d3.event.pageX + this.props.hoffset + &quot;px&quot;);
                 }.bind(this))
           .on(&quot;mouseout&quot;,  function(d, i){
                           tooltip.style(&quot;visibility&quot;, &quot;hidden&quot;);});
    };
    
                 mpld3.draw_figure(&quot;fig_el3158244478766882470314674&quot;, {&quot;axes&quot;: [{&quot;xlim&quot;: [-1500.0, 3000.0], &quot;yscale&quot;: &quot;linear&quot;, &quot;axesbg&quot;: &quot;#EEEEEE&quot;, &quot;texts&quot;: [{&quot;v_baseline&quot;: &quot;auto&quot;, &quot;h_anchor&quot;: &quot;middle&quot;, &quot;color&quot;: &quot;#000000&quot;, &quot;text&quot;: &quot;Clustering presidents based on their speeches&quot;, &quot;coordinates&quot;: &quot;axes&quot;, &quot;zorder&quot;: 3, &quot;alpha&quot;: 1, &quot;fontsize&quot;: 20.0, &quot;position&quot;: [0.5, 1.0089605734767024], &quot;rotation&quot;: -0.0, &quot;id&quot;: &quot;el315824388713360&quot;}], &quot;zoomable&quot;: true, &quot;images&quot;: [], &quot;xdomain&quot;: [-1500.0, 3000.0], &quot;ylim&quot;: [-1000.0, 1500.0], &quot;paths&quot;: [], &quot;sharey&quot;: [], &quot;sharex&quot;: [], &quot;axesbgalpha&quot;: null, &quot;axes&quot;: [{&quot;scale&quot;: &quot;linear&quot;, &quot;tickformat&quot;: null, &quot;grid&quot;: {&quot;color&quot;: &quot;#FFFFFF&quot;, &quot;alpha&quot;: 1.0, &quot;dasharray&quot;: &quot;10,0&quot;, &quot;gridOn&quot;: true}, &quot;fontsize&quot;: 10.0, &quot;position&quot;: &quot;bottom&quot;, &quot;nticks&quot;: 10, &quot;tickvalues&quot;: null}, {&quot;scale&quot;: &quot;linear&quot;, &quot;tickformat&quot;: null, &quot;grid&quot;: {&quot;color&quot;: &quot;#FFFFFF&quot;, &quot;alpha&quot;: 1.0, &quot;dasharray&quot;: &quot;10,0&quot;, &quot;gridOn&quot;: true}, &quot;fontsize&quot;: 10.0, &quot;position&quot;: &quot;left&quot;, &quot;nticks&quot;: 6, &quot;tickvalues&quot;: null}], &quot;lines&quot;: [], &quot;markers&quot;: [], &quot;id&quot;: &quot;el315824447653072&quot;, &quot;ydomain&quot;: [-1000.0, 1500.0], &quot;collections&quot;: [{&quot;paths&quot;: [[[[0.0, -0.5], [0.13260155, -0.5], [0.25978993539242673, -0.44731684579412084], [0.3535533905932738, -0.3535533905932738], [0.44731684579412084, -0.25978993539242673], [0.5, -0.13260155], [0.5, 0.0], [0.5, 0.13260155], [0.44731684579412084, 0.25978993539242673], [0.3535533905932738, 0.3535533905932738], [0.25978993539242673, 0.44731684579412084], [0.13260155, 0.5], [0.0, 0.5], [-0.13260155, 0.5], [-0.25978993539242673, 0.44731684579412084], [-0.3535533905932738, 0.3535533905932738], [-0.44731684579412084, 0.25978993539242673], [-0.5, 0.13260155], [-0.5, 0.0], [-0.5, -0.13260155], [-0.44731684579412084, -0.25978993539242673], [-0.3535533905932738, -0.3535533905932738], [-0.25978993539242673, -0.44731684579412084], [-0.13260155, -0.5], [0.0, -0.5]], [&quot;M&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;C&quot;, &quot;Z&quot;]]], &quot;edgecolors&quot;: [&quot;#000000&quot;], &quot;edgewidths&quot;: [1.0], &quot;offsets&quot;: &quot;data01&quot;, &quot;yindex&quot;: 1, &quot;id&quot;: &quot;el315824324751120&quot;, &quot;pathtransforms&quot;: [[9.938079899999066, 0.0, 0.0, 9.938079899999066, 0.0, 0.0]], &quot;pathcoordinates&quot;: &quot;display&quot;, &quot;offsetcoordinates&quot;: &quot;data&quot;, &quot;zorder&quot;: 1, &quot;xindex&quot;: 0, &quot;alphas&quot;: [null], &quot;facecolors&quot;: [&quot;#E57272&quot;, &quot;#E58272&quot;, &quot;#E59272&quot;, &quot;#E5A272&quot;, &quot;#E5B272&quot;, &quot;#E5C272&quot;, &quot;#E5D272&quot;, &quot;#E5E272&quot;, &quot;#E572C2&quot;, &quot;#C8E572&quot;, &quot;#B8E572&quot;, &quot;#A8E572&quot;, &quot;#98E572&quot;, &quot;#88E572&quot;, &quot;#78E572&quot;, &quot;#72E57D&quot;, &quot;#72E58D&quot;, &quot;#72BDE5&quot;, &quot;#72E5AD&quot;, &quot;#72E5BD&quot;, &quot;#72E5CD&quot;, &quot;#72E5DD&quot;, &quot;#E572B2&quot;, &quot;#72DDE5&quot;, &quot;#72CDE5&quot;, &quot;#72E59D&quot;, &quot;#72ADE5&quot;, &quot;#C872E5&quot;, &quot;#728DE5&quot;, &quot;#727DE5&quot;, &quot;#7872E5&quot;, &quot;#8872E5&quot;, &quot;#9872E5&quot;, &quot;#A872E5&quot;, &quot;#B872E5&quot;, &quot;#729DE5&quot;, &quot;#D872E5&quot;, &quot;#E572E2&quot;, &quot;#E572D2&quot;, &quot;#D8E572&quot;, &quot;#E57292&quot;, &quot;#E572A2&quot;, &quot;#E57282&quot;]}], &quot;xscale&quot;: &quot;linear&quot;, &quot;bbox&quot;: [0.125, 0.125, 0.77500000000000002, 0.77500000000000002]}], &quot;height&quot;: 800.0, &quot;width&quot;: 800.0, &quot;plugins&quot;: [{&quot;type&quot;: &quot;reset&quot;}, {&quot;enabled&quot;: false, &quot;button&quot;: true, &quot;type&quot;: &quot;zoom&quot;}, {&quot;enabled&quot;: false, &quot;button&quot;: true, &quot;type&quot;: &quot;boxzoom&quot;}, {&quot;voffset&quot;: 10, &quot;labels&quot;: [&quot;&lt;h3&gt;madison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taft&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;clinton&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;carter&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;buchanan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;reagan&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;garfield&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;taylor&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;roosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;harrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;cleveland&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fillmore&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;truman&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;polk&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;monroe&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;wilson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jackson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;gwbush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;grant&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bharrison&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;bush&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jefferson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;vanburen&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;mckinley&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hoover&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;harding&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;washington&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;pierce&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;ford&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;tyler&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lbjohnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;coolidge&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;eisenhower&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;jqadams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;obama&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;lincoln&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;adams&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;johnson&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;kennedy&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;fdroosevelt&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;hayes&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;arthur&lt;/h3&gt;&quot;, &quot;&lt;h3&gt;nixon&lt;/h3&gt;&quot;], &quot;type&quot;: &quot;htmltooltip&quot;, &quot;id&quot;: &quot;el315824324751120&quot;, &quot;hoffset&quot;: 0}], &quot;data&quot;: {&quot;data01&quot;: [[-503.992042491, -148.132742662], [130.70808314200002, 611.679941484], [1464.20734407, -779.256500327], [733.29835266, -481.025649865], [-161.037183639, 422.551813966], [2140.18176299, -544.619575925], [-829.268419324, -475.902741532], [-772.3729656930001, -292.538957118], [811.232901383, 1020.32049247], [-738.2910616339999, -401.62616164800005], [-29.440323177899998, 593.6218636919999], [-560.576433478, -46.450960718500006], [-409.211359634, -366.11457716800004], [-26.588192642800003, 808.263626234], [-520.421256801, 59.28219037979999], [-100.109921282, -65.2572310411], [369.661791965, 1346.15934822], [-245.416125955, -497.238407149], [24.533096064499997, 695.859703845], [-187.838172533, 201.77814935599997], [662.061548496, -585.2636698780001], [-511.657250883, -263.984604068], [-394.204162845, 144.58469971899999], [-37.7270430342, 468.943991169], [-51.9259050533, 71.6529206611], [-679.254018445, -510.436258905], [-629.795781746, -150.420439564], [-370.293848417, 327.394292644], [-284.194552918, -369.531011663], [-307.806345507, 215.98060051599998], [2813.28805566, -248.965157485], [-195.528685317, 38.1417706047], [-571.2432199259999, -434.70537751800003], [-676.951745341, -238.37973994200001], [-441.573178788, -500.500484469], [-8.23091744227, 269.51036986599996], [-622.450804007, -336.328816255], [126.341220704, 783.724676627], [1205.20991198, -263.08504096400003], [915.312302889, 17.952366609400002], [-238.28751346099997, 334.859870259], [-399.86167891199995, -16.0807661302], [110.08380981799999, -414.79002537800005]]}, &quot;id&quot;: &quot;el315824447876688&quot;});
            })
         });
}
&lt;/script&gt;

</description>
        <pubDate>Fri, 23 Oct 2015 00:00:00 +0000</pubDate>
        <link>http://tlfvincent.github.io//2015/10/23/presidential-speech-topics/</link>
        <guid isPermaLink="true">http://tlfvincent.github.io//2015/10/23/presidential-speech-topics/</guid>
        
        
      </item>
    
      <item>
        <title>Cloning a graph in Python</title>
        <description>&lt;style&gt;
.center-image
{
    margin: 0 auto;
    display: block;
}
&lt;/style&gt;

&lt;script type=&quot;text/javascript&quot; src=&quot;http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML&quot;&gt;&lt;/script&gt;

&lt;p&gt;If you have ever played around with Algorithms &amp;amp; Data Structures, then you most likely have heard of Leetcode.com, which contains a number of famous (or infamous) of technical questions. One of my favorite in there is the graph clone question, which can be shortly stated as:&lt;/p&gt;

&lt;div class=&quot;language-plaintext highlighter-rouge&quot;&gt;&lt;div class=&quot;highlight&quot;&gt;&lt;pre class=&quot;highlight&quot;&gt;&lt;code&gt;Clone an undirected graph. Each node in the graph contains a label and a list of its neighbors.
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Like most algorithms &amp;amp; data structures problems, there are usually many variants to solving this problem, but here I will go through the solution that is most typically reported. To begin, it is generally good form to define a &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Node&lt;/code&gt; class:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;table class=&quot;rouge-table&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class=&quot;gutter gl&quot;&gt;&lt;pre class=&quot;lineno&quot;&gt;1
2
3
4
5
6
7
8
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&quot;code&quot;&gt;&lt;pre&gt; 
&lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;Node&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
    &lt;span class=&quot;s&quot;&gt;&apos;&apos;&apos;
    Define a node class for our undirected graph
    &apos;&apos;&apos;&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;__init__&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;self&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;node_label&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;node_neighbors&lt;/span&gt;&lt;span class=&quot;o&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[]):&lt;/span&gt;
        &lt;span class=&quot;bp&quot;&gt;self&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;node_label&lt;/span&gt;
        &lt;span class=&quot;bp&quot;&gt;self&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;neighbors&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;node_neighbors&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;You can test the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Node&lt;/code&gt; class in your Python interpreter as below (although this would never be considered a test per-se if we are talking in engineering terms!)&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;table class=&quot;rouge-table&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class=&quot;gutter gl&quot;&gt;&lt;pre class=&quot;lineno&quot;&gt;1
2
3
4
5
6
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&quot;code&quot;&gt;&lt;pre&gt; 
&lt;span class=&quot;o&quot;&gt;&amp;gt;&amp;gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;test_node&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Node&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;s&quot;&gt;&apos;test&apos;&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
&lt;span class=&quot;o&quot;&gt;&amp;gt;&amp;gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;print&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;test_node&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;
&lt;span class=&quot;n&quot;&gt;test&lt;/span&gt;
&lt;span class=&quot;o&quot;&gt;&amp;gt;&amp;gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;k&quot;&gt;print&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;test_node&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;neighbors&lt;/span&gt;
&lt;span class=&quot;p&quot;&gt;[]&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;Finally, we can define the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Solution&lt;/code&gt; class, which will allow us to clone any graph given that we are provided at least one of its node:&lt;/p&gt;

&lt;figure class=&quot;highlight&quot;&gt;&lt;pre&gt;&lt;code class=&quot;language-python&quot; data-lang=&quot;python&quot;&gt;&lt;table class=&quot;rouge-table&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td class=&quot;gutter gl&quot;&gt;&lt;pre class=&quot;lineno&quot;&gt;1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
&lt;/pre&gt;&lt;/td&gt;&lt;td class=&quot;code&quot;&gt;&lt;pre&gt; 
&lt;span class=&quot;k&quot;&gt;class&lt;/span&gt; &lt;span class=&quot;nc&quot;&gt;Solution&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
    &lt;span class=&quot;s&quot;&gt;&apos;&apos;&apos;
    Clone undirected graph
    &apos;&apos;&apos;&lt;/span&gt;
    &lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;cloneGraph&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;self&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;node&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;):&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;nodeMap&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;p&quot;&gt;{}&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;bp&quot;&gt;self&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;cloneNode&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;node&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;nodeMap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
    
    &lt;span class=&quot;k&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;nf&quot;&gt;cloneNode&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;self&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;node&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;nodeMap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;):&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;node&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;==&lt;/span&gt; &lt;span class=&quot;bp&quot;&gt;None&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
            &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;bp&quot;&gt;None&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;node&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;nodeMap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
            &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;nodeMap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;node&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;newNode&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;Node&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;node&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;)&lt;/span&gt;
        &lt;span class=&quot;n&quot;&gt;nodeMap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;node&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;label&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;o&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;newNode&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;for&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;neighbor&lt;/span&gt; &lt;span class=&quot;ow&quot;&gt;in&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;node&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;neighbors&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;:&lt;/span&gt;
            &lt;span class=&quot;n&quot;&gt;newNode&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;neighbors&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;append&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;bp&quot;&gt;self&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;cloneNode&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;n&quot;&gt;neighbor&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;nodeMap&lt;/span&gt;&lt;span class=&quot;p&quot;&gt;))&lt;/span&gt;
        &lt;span class=&quot;k&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;n&quot;&gt;newNode&lt;/span&gt;
&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/figure&gt;

&lt;p&gt;So what does the code above do? Quite clearly, the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;cloneGraph&lt;/code&gt; function in lines 5-7 takes as input a node belonging to the graph we wish to clone, and then initializes a hash map (or dictionnary if we are talking in Python terms). Finally it invokes the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;cloneNode&lt;/code&gt; function that is defined in lines 9-18. First, the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;cloneNode&lt;/code&gt; function checks for an empty node and if this statement is met returns a &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;None&lt;/code&gt; value. The next step (lines 12-13) is to check whether the input node is already in &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;nodeMap&lt;/code&gt;, which would indicate it has already been processed. If this condition is met, then we simply return label of the node (for reasons that will become clear in the next paragraph).&lt;/p&gt;

&lt;p&gt;At this point, we get to the meaty part of our solution. Line 14 with the statement &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;newNode = Node(node.label)&lt;/code&gt; initiates a new node with the same label as the input node and no neighbors (the default for the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;Node&lt;/code&gt; class). Next, we add the newly created &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;newNode&lt;/code&gt; object to the hash map &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;nodeMap&lt;/code&gt;. Finally, we iterate through all known neighbors of the input node, and recursively append the results of calling &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;cloneNode&lt;/code&gt; to each of those neighbors. In doing so, nodes already cloned in &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;nodeMap&lt;/code&gt; will simply be appended to the neighbor list of &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;newNode&lt;/code&gt; (because of the conditional statement in lines 12-13), while all others will also be recursively added to the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;nodeMap&lt;/code&gt; hash map. This will have the direct effect of cloning the entire original graph to the &lt;code class=&quot;language-plaintext highlighter-rouge&quot;&gt;nodeMap&lt;/code&gt; hashmap! And we are done!&lt;/p&gt;
</description>
        <pubDate>Sat, 10 Oct 2015 00:00:00 +0000</pubDate>
        <link>http://tlfvincent.github.io//2015/10/10/python-clone-graph/</link>
        <guid isPermaLink="true">http://tlfvincent.github.io//2015/10/10/python-clone-graph/</guid>
        
        
      </item>
    
  </channel>
</rss>
