|
@@ -0,0 +1,6239 @@
|
|
|
+{
|
|
|
+ "cells": [
|
|
|
+ {
|
|
|
+ "cell_type": "code",
|
|
|
+ "execution_count": 1,
|
|
|
+ "metadata": {
|
|
|
+ "tags": [
|
|
|
+ "remove_input"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "outputs": [],
|
|
|
+ "source": [
|
|
|
+ "path_data = '../../data/'\n",
|
|
|
+ "\n",
|
|
|
+ "import pandas as pd\n",
|
|
|
+ "import numpy as np"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "cell_type": "markdown",
|
|
|
+ "metadata": {},
|
|
|
+ "source": [
|
|
|
+ "# Example: Population Trends\n",
|
|
|
+ "\n",
|
|
|
+ "We are now ready to work with large tables of data. The file below contains \"Annual Estimates of the Resident Population by Single Year of Age and Sex for the United States.\" Notice that `read_table` can read data directly from a URL."
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "cell_type": "code",
|
|
|
+ "execution_count": 2,
|
|
|
+ "metadata": {},
|
|
|
+ "outputs": [
|
|
|
+ {
|
|
|
+ "data": {
|
|
|
+ "text/html": [
|
|
|
+ "<div>\n",
|
|
|
+ "<style scoped>\n",
|
|
|
+ " .dataframe tbody tr th:only-of-type {\n",
|
|
|
+ " vertical-align: middle;\n",
|
|
|
+ " }\n",
|
|
|
+ "\n",
|
|
|
+ " .dataframe tbody tr th {\n",
|
|
|
+ " vertical-align: top;\n",
|
|
|
+ " }\n",
|
|
|
+ "\n",
|
|
|
+ " .dataframe thead th {\n",
|
|
|
+ " text-align: right;\n",
|
|
|
+ " }\n",
|
|
|
+ "</style>\n",
|
|
|
+ "<table border=\"1\" class=\"dataframe\">\n",
|
|
|
+ " <thead>\n",
|
|
|
+ " <tr style=\"text-align: right;\">\n",
|
|
|
+ " <th></th>\n",
|
|
|
+ " <th>SEX</th>\n",
|
|
|
+ " <th>AGE</th>\n",
|
|
|
+ " <th>CENSUS2010POP</th>\n",
|
|
|
+ " <th>ESTIMATESBASE2010</th>\n",
|
|
|
+ " <th>POPESTIMATE2010</th>\n",
|
|
|
+ " <th>POPESTIMATE2011</th>\n",
|
|
|
+ " <th>POPESTIMATE2012</th>\n",
|
|
|
+ " <th>POPESTIMATE2013</th>\n",
|
|
|
+ " <th>POPESTIMATE2014</th>\n",
|
|
|
+ " <th>POPESTIMATE2015</th>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " </thead>\n",
|
|
|
+ " <tbody>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>0</th>\n",
|
|
|
+ " <td>0</td>\n",
|
|
|
+ " <td>0</td>\n",
|
|
|
+ " <td>3944153</td>\n",
|
|
|
+ " <td>3944160</td>\n",
|
|
|
+ " <td>3951330</td>\n",
|
|
|
+ " <td>3963087</td>\n",
|
|
|
+ " <td>3926540</td>\n",
|
|
|
+ " <td>3931141</td>\n",
|
|
|
+ " <td>3949775</td>\n",
|
|
|
+ " <td>3978038</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>1</th>\n",
|
|
|
+ " <td>0</td>\n",
|
|
|
+ " <td>1</td>\n",
|
|
|
+ " <td>3978070</td>\n",
|
|
|
+ " <td>3978090</td>\n",
|
|
|
+ " <td>3957888</td>\n",
|
|
|
+ " <td>3966551</td>\n",
|
|
|
+ " <td>3977939</td>\n",
|
|
|
+ " <td>3942872</td>\n",
|
|
|
+ " <td>3949776</td>\n",
|
|
|
+ " <td>3968564</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>2</th>\n",
|
|
|
+ " <td>0</td>\n",
|
|
|
+ " <td>2</td>\n",
|
|
|
+ " <td>4096929</td>\n",
|
|
|
+ " <td>4096939</td>\n",
|
|
|
+ " <td>4090862</td>\n",
|
|
|
+ " <td>3971565</td>\n",
|
|
|
+ " <td>3980095</td>\n",
|
|
|
+ " <td>3992720</td>\n",
|
|
|
+ " <td>3959664</td>\n",
|
|
|
+ " <td>3966583</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>3</th>\n",
|
|
|
+ " <td>0</td>\n",
|
|
|
+ " <td>3</td>\n",
|
|
|
+ " <td>4119040</td>\n",
|
|
|
+ " <td>4119051</td>\n",
|
|
|
+ " <td>4111920</td>\n",
|
|
|
+ " <td>4102470</td>\n",
|
|
|
+ " <td>3983157</td>\n",
|
|
|
+ " <td>3992734</td>\n",
|
|
|
+ " <td>4007079</td>\n",
|
|
|
+ " <td>3974061</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>4</th>\n",
|
|
|
+ " <td>0</td>\n",
|
|
|
+ " <td>4</td>\n",
|
|
|
+ " <td>4063170</td>\n",
|
|
|
+ " <td>4063186</td>\n",
|
|
|
+ " <td>4077551</td>\n",
|
|
|
+ " <td>4122294</td>\n",
|
|
|
+ " <td>4112849</td>\n",
|
|
|
+ " <td>3994449</td>\n",
|
|
|
+ " <td>4005716</td>\n",
|
|
|
+ " <td>4020035</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>...</th>\n",
|
|
|
+ " <td>...</td>\n",
|
|
|
+ " <td>...</td>\n",
|
|
|
+ " <td>...</td>\n",
|
|
|
+ " <td>...</td>\n",
|
|
|
+ " <td>...</td>\n",
|
|
|
+ " <td>...</td>\n",
|
|
|
+ " <td>...</td>\n",
|
|
|
+ " <td>...</td>\n",
|
|
|
+ " <td>...</td>\n",
|
|
|
+ " <td>...</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>301</th>\n",
|
|
|
+ " <td>2</td>\n",
|
|
|
+ " <td>97</td>\n",
|
|
|
+ " <td>53582</td>\n",
|
|
|
+ " <td>53605</td>\n",
|
|
|
+ " <td>54118</td>\n",
|
|
|
+ " <td>57159</td>\n",
|
|
|
+ " <td>59533</td>\n",
|
|
|
+ " <td>61255</td>\n",
|
|
|
+ " <td>62779</td>\n",
|
|
|
+ " <td>69285</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>302</th>\n",
|
|
|
+ " <td>2</td>\n",
|
|
|
+ " <td>98</td>\n",
|
|
|
+ " <td>36641</td>\n",
|
|
|
+ " <td>36675</td>\n",
|
|
|
+ " <td>37532</td>\n",
|
|
|
+ " <td>40116</td>\n",
|
|
|
+ " <td>42857</td>\n",
|
|
|
+ " <td>44359</td>\n",
|
|
|
+ " <td>46208</td>\n",
|
|
|
+ " <td>47272</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>303</th>\n",
|
|
|
+ " <td>2</td>\n",
|
|
|
+ " <td>99</td>\n",
|
|
|
+ " <td>26193</td>\n",
|
|
|
+ " <td>26214</td>\n",
|
|
|
+ " <td>26074</td>\n",
|
|
|
+ " <td>27030</td>\n",
|
|
|
+ " <td>29320</td>\n",
|
|
|
+ " <td>31112</td>\n",
|
|
|
+ " <td>32517</td>\n",
|
|
|
+ " <td>34064</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>304</th>\n",
|
|
|
+ " <td>2</td>\n",
|
|
|
+ " <td>100</td>\n",
|
|
|
+ " <td>44202</td>\n",
|
|
|
+ " <td>44246</td>\n",
|
|
|
+ " <td>45058</td>\n",
|
|
|
+ " <td>47556</td>\n",
|
|
|
+ " <td>50661</td>\n",
|
|
|
+ " <td>53902</td>\n",
|
|
|
+ " <td>58008</td>\n",
|
|
|
+ " <td>61886</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>305</th>\n",
|
|
|
+ " <td>2</td>\n",
|
|
|
+ " <td>999</td>\n",
|
|
|
+ " <td>156964212</td>\n",
|
|
|
+ " <td>156969328</td>\n",
|
|
|
+ " <td>157258820</td>\n",
|
|
|
+ " <td>158427085</td>\n",
|
|
|
+ " <td>159581546</td>\n",
|
|
|
+ " <td>160720625</td>\n",
|
|
|
+ " <td>161952064</td>\n",
|
|
|
+ " <td>163189523</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " </tbody>\n",
|
|
|
+ "</table>\n",
|
|
|
+ "<p>306 rows × 10 columns</p>\n",
|
|
|
+ "</div>"
|
|
|
+ ],
|
|
|
+ "text/plain": [
|
|
|
+ " SEX AGE CENSUS2010POP ESTIMATESBASE2010 POPESTIMATE2010 \\\n",
|
|
|
+ "0 0 0 3944153 3944160 3951330 \n",
|
|
|
+ "1 0 1 3978070 3978090 3957888 \n",
|
|
|
+ "2 0 2 4096929 4096939 4090862 \n",
|
|
|
+ "3 0 3 4119040 4119051 4111920 \n",
|
|
|
+ "4 0 4 4063170 4063186 4077551 \n",
|
|
|
+ ".. ... ... ... ... ... \n",
|
|
|
+ "301 2 97 53582 53605 54118 \n",
|
|
|
+ "302 2 98 36641 36675 37532 \n",
|
|
|
+ "303 2 99 26193 26214 26074 \n",
|
|
|
+ "304 2 100 44202 44246 45058 \n",
|
|
|
+ "305 2 999 156964212 156969328 157258820 \n",
|
|
|
+ "\n",
|
|
|
+ " POPESTIMATE2011 POPESTIMATE2012 POPESTIMATE2013 POPESTIMATE2014 \\\n",
|
|
|
+ "0 3963087 3926540 3931141 3949775 \n",
|
|
|
+ "1 3966551 3977939 3942872 3949776 \n",
|
|
|
+ "2 3971565 3980095 3992720 3959664 \n",
|
|
|
+ "3 4102470 3983157 3992734 4007079 \n",
|
|
|
+ "4 4122294 4112849 3994449 4005716 \n",
|
|
|
+ ".. ... ... ... ... \n",
|
|
|
+ "301 57159 59533 61255 62779 \n",
|
|
|
+ "302 40116 42857 44359 46208 \n",
|
|
|
+ "303 27030 29320 31112 32517 \n",
|
|
|
+ "304 47556 50661 53902 58008 \n",
|
|
|
+ "305 158427085 159581546 160720625 161952064 \n",
|
|
|
+ "\n",
|
|
|
+ " POPESTIMATE2015 \n",
|
|
|
+ "0 3978038 \n",
|
|
|
+ "1 3968564 \n",
|
|
|
+ "2 3966583 \n",
|
|
|
+ "3 3974061 \n",
|
|
|
+ "4 4020035 \n",
|
|
|
+ ".. ... \n",
|
|
|
+ "301 69285 \n",
|
|
|
+ "302 47272 \n",
|
|
|
+ "303 34064 \n",
|
|
|
+ "304 61886 \n",
|
|
|
+ "305 163189523 \n",
|
|
|
+ "\n",
|
|
|
+ "[306 rows x 10 columns]"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "execution_count": 2,
|
|
|
+ "metadata": {},
|
|
|
+ "output_type": "execute_result"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "source": [
|
|
|
+ "# As of Jan 2017, this census file is online here: \n",
|
|
|
+ "data = 'http://www2.census.gov/programs-surveys/popest/datasets/2010-2015/national/asrh/nc-est2015-agesex-res.csv'\n",
|
|
|
+ "\n",
|
|
|
+ "# A local copy can be accessed here in case census.gov moves the file:\n",
|
|
|
+ "# data = path_data + 'nc-est2015-agesex-res.csv'\n",
|
|
|
+ "\n",
|
|
|
+ "full_census_table = pd.read_csv(data)\n",
|
|
|
+ "full_census_table"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "cell_type": "markdown",
|
|
|
+ "metadata": {},
|
|
|
+ "source": [
|
|
|
+ "Only the first 5 and last 5 rows of the DataFrame are displayed. Later we will see how to display the entire DataFrame; however, this is typically not useful with large tables.\n",
|
|
|
+ "\n",
|
|
|
+ "a [description of the table](http://www2.census.gov/programs-surveys/popest/datasets/2010-2015/national/asrh/nc-est2015-agesex-res.pdf) appears online. The `SEX` column contains numeric codes: `0` stands for the total, `1` for male, and `2` for female. The `AGE` column contains ages in completed years, but the special value `999` is a sum of the total population. The rest of the columns contain estimates of the US population.\n",
|
|
|
+ "\n",
|
|
|
+ "Typically, a public table will contain more information than necessary for a particular investigation or analysis. In this case, let us suppose that we are only interested in the population changes from 2010 to 2014. Let us `select` the relevant columns."
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "cell_type": "code",
|
|
|
+ "execution_count": 3,
|
|
|
+ "metadata": {
|
|
|
+ "scrolled": true
|
|
|
+ },
|
|
|
+ "outputs": [
|
|
|
+ {
|
|
|
+ "data": {
|
|
|
+ "text/html": [
|
|
|
+ "<div>\n",
|
|
|
+ "<style scoped>\n",
|
|
|
+ " .dataframe tbody tr th:only-of-type {\n",
|
|
|
+ " vertical-align: middle;\n",
|
|
|
+ " }\n",
|
|
|
+ "\n",
|
|
|
+ " .dataframe tbody tr th {\n",
|
|
|
+ " vertical-align: top;\n",
|
|
|
+ " }\n",
|
|
|
+ "\n",
|
|
|
+ " .dataframe thead th {\n",
|
|
|
+ " text-align: right;\n",
|
|
|
+ " }\n",
|
|
|
+ "</style>\n",
|
|
|
+ "<table border=\"1\" class=\"dataframe\">\n",
|
|
|
+ " <thead>\n",
|
|
|
+ " <tr style=\"text-align: right;\">\n",
|
|
|
+ " <th></th>\n",
|
|
|
+ " <th>SEX</th>\n",
|
|
|
+ " <th>AGE</th>\n",
|
|
|
+ " <th>POPESTIMATE2010</th>\n",
|
|
|
+ " <th>POPESTIMATE2014</th>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " </thead>\n",
|
|
|
+ " <tbody>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>0</th>\n",
|
|
|
+ " <td>0</td>\n",
|
|
|
+ " <td>0</td>\n",
|
|
|
+ " <td>3951330</td>\n",
|
|
|
+ " <td>3949775</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>1</th>\n",
|
|
|
+ " <td>0</td>\n",
|
|
|
+ " <td>1</td>\n",
|
|
|
+ " <td>3957888</td>\n",
|
|
|
+ " <td>3949776</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>2</th>\n",
|
|
|
+ " <td>0</td>\n",
|
|
|
+ " <td>2</td>\n",
|
|
|
+ " <td>4090862</td>\n",
|
|
|
+ " <td>3959664</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>3</th>\n",
|
|
|
+ " <td>0</td>\n",
|
|
|
+ " <td>3</td>\n",
|
|
|
+ " <td>4111920</td>\n",
|
|
|
+ " <td>4007079</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>4</th>\n",
|
|
|
+ " <td>0</td>\n",
|
|
|
+ " <td>4</td>\n",
|
|
|
+ " <td>4077551</td>\n",
|
|
|
+ " <td>4005716</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>...</th>\n",
|
|
|
+ " <td>...</td>\n",
|
|
|
+ " <td>...</td>\n",
|
|
|
+ " <td>...</td>\n",
|
|
|
+ " <td>...</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>301</th>\n",
|
|
|
+ " <td>2</td>\n",
|
|
|
+ " <td>97</td>\n",
|
|
|
+ " <td>54118</td>\n",
|
|
|
+ " <td>62779</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>302</th>\n",
|
|
|
+ " <td>2</td>\n",
|
|
|
+ " <td>98</td>\n",
|
|
|
+ " <td>37532</td>\n",
|
|
|
+ " <td>46208</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>303</th>\n",
|
|
|
+ " <td>2</td>\n",
|
|
|
+ " <td>99</td>\n",
|
|
|
+ " <td>26074</td>\n",
|
|
|
+ " <td>32517</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>304</th>\n",
|
|
|
+ " <td>2</td>\n",
|
|
|
+ " <td>100</td>\n",
|
|
|
+ " <td>45058</td>\n",
|
|
|
+ " <td>58008</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>305</th>\n",
|
|
|
+ " <td>2</td>\n",
|
|
|
+ " <td>999</td>\n",
|
|
|
+ " <td>157258820</td>\n",
|
|
|
+ " <td>161952064</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " </tbody>\n",
|
|
|
+ "</table>\n",
|
|
|
+ "<p>306 rows × 4 columns</p>\n",
|
|
|
+ "</div>"
|
|
|
+ ],
|
|
|
+ "text/plain": [
|
|
|
+ " SEX AGE POPESTIMATE2010 POPESTIMATE2014\n",
|
|
|
+ "0 0 0 3951330 3949775\n",
|
|
|
+ "1 0 1 3957888 3949776\n",
|
|
|
+ "2 0 2 4090862 3959664\n",
|
|
|
+ "3 0 3 4111920 4007079\n",
|
|
|
+ "4 0 4 4077551 4005716\n",
|
|
|
+ ".. ... ... ... ...\n",
|
|
|
+ "301 2 97 54118 62779\n",
|
|
|
+ "302 2 98 37532 46208\n",
|
|
|
+ "303 2 99 26074 32517\n",
|
|
|
+ "304 2 100 45058 58008\n",
|
|
|
+ "305 2 999 157258820 161952064\n",
|
|
|
+ "\n",
|
|
|
+ "[306 rows x 4 columns]"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "execution_count": 3,
|
|
|
+ "metadata": {},
|
|
|
+ "output_type": "execute_result"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "source": [
|
|
|
+ "partial_census_table = full_census_table[['SEX', 'AGE', 'POPESTIMATE2010', 'POPESTIMATE2014']]\n",
|
|
|
+ "partial_census_table"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "cell_type": "markdown",
|
|
|
+ "metadata": {},
|
|
|
+ "source": [
|
|
|
+ "We can also simplify the labels of the selected columns."
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "cell_type": "code",
|
|
|
+ "execution_count": 4,
|
|
|
+ "metadata": {},
|
|
|
+ "outputs": [
|
|
|
+ {
|
|
|
+ "data": {
|
|
|
+ "text/html": [
|
|
|
+ "<div>\n",
|
|
|
+ "<style scoped>\n",
|
|
|
+ " .dataframe tbody tr th:only-of-type {\n",
|
|
|
+ " vertical-align: middle;\n",
|
|
|
+ " }\n",
|
|
|
+ "\n",
|
|
|
+ " .dataframe tbody tr th {\n",
|
|
|
+ " vertical-align: top;\n",
|
|
|
+ " }\n",
|
|
|
+ "\n",
|
|
|
+ " .dataframe thead th {\n",
|
|
|
+ " text-align: right;\n",
|
|
|
+ " }\n",
|
|
|
+ "</style>\n",
|
|
|
+ "<table border=\"1\" class=\"dataframe\">\n",
|
|
|
+ " <thead>\n",
|
|
|
+ " <tr style=\"text-align: right;\">\n",
|
|
|
+ " <th></th>\n",
|
|
|
+ " <th>SEX</th>\n",
|
|
|
+ " <th>AGE</th>\n",
|
|
|
+ " <th>2010</th>\n",
|
|
|
+ " <th>2014</th>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " </thead>\n",
|
|
|
+ " <tbody>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>0</th>\n",
|
|
|
+ " <td>0</td>\n",
|
|
|
+ " <td>0</td>\n",
|
|
|
+ " <td>3951330</td>\n",
|
|
|
+ " <td>3949775</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>1</th>\n",
|
|
|
+ " <td>0</td>\n",
|
|
|
+ " <td>1</td>\n",
|
|
|
+ " <td>3957888</td>\n",
|
|
|
+ " <td>3949776</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>2</th>\n",
|
|
|
+ " <td>0</td>\n",
|
|
|
+ " <td>2</td>\n",
|
|
|
+ " <td>4090862</td>\n",
|
|
|
+ " <td>3959664</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>3</th>\n",
|
|
|
+ " <td>0</td>\n",
|
|
|
+ " <td>3</td>\n",
|
|
|
+ " <td>4111920</td>\n",
|
|
|
+ " <td>4007079</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>4</th>\n",
|
|
|
+ " <td>0</td>\n",
|
|
|
+ " <td>4</td>\n",
|
|
|
+ " <td>4077551</td>\n",
|
|
|
+ " <td>4005716</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>...</th>\n",
|
|
|
+ " <td>...</td>\n",
|
|
|
+ " <td>...</td>\n",
|
|
|
+ " <td>...</td>\n",
|
|
|
+ " <td>...</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>301</th>\n",
|
|
|
+ " <td>2</td>\n",
|
|
|
+ " <td>97</td>\n",
|
|
|
+ " <td>54118</td>\n",
|
|
|
+ " <td>62779</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>302</th>\n",
|
|
|
+ " <td>2</td>\n",
|
|
|
+ " <td>98</td>\n",
|
|
|
+ " <td>37532</td>\n",
|
|
|
+ " <td>46208</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>303</th>\n",
|
|
|
+ " <td>2</td>\n",
|
|
|
+ " <td>99</td>\n",
|
|
|
+ " <td>26074</td>\n",
|
|
|
+ " <td>32517</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>304</th>\n",
|
|
|
+ " <td>2</td>\n",
|
|
|
+ " <td>100</td>\n",
|
|
|
+ " <td>45058</td>\n",
|
|
|
+ " <td>58008</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th>305</th>\n",
|
|
|
+ " <td>2</td>\n",
|
|
|
+ " <td>999</td>\n",
|
|
|
+ " <td>157258820</td>\n",
|
|
|
+ " <td>161952064</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " </tbody>\n",
|
|
|
+ "</table>\n",
|
|
|
+ "<p>306 rows × 4 columns</p>\n",
|
|
|
+ "</div>"
|
|
|
+ ],
|
|
|
+ "text/plain": [
|
|
|
+ " SEX AGE 2010 2014\n",
|
|
|
+ "0 0 0 3951330 3949775\n",
|
|
|
+ "1 0 1 3957888 3949776\n",
|
|
|
+ "2 0 2 4090862 3959664\n",
|
|
|
+ "3 0 3 4111920 4007079\n",
|
|
|
+ "4 0 4 4077551 4005716\n",
|
|
|
+ ".. ... ... ... ...\n",
|
|
|
+ "301 2 97 54118 62779\n",
|
|
|
+ "302 2 98 37532 46208\n",
|
|
|
+ "303 2 99 26074 32517\n",
|
|
|
+ "304 2 100 45058 58008\n",
|
|
|
+ "305 2 999 157258820 161952064\n",
|
|
|
+ "\n",
|
|
|
+ "[306 rows x 4 columns]"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "execution_count": 4,
|
|
|
+ "metadata": {},
|
|
|
+ "output_type": "execute_result"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "source": [
|
|
|
+ "us_pop = partial_census_table.rename(columns={'POPESTIMATE2010': '2010', 'POPESTIMATE2014':'2014'})\n",
|
|
|
+ "us_pop"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "cell_type": "markdown",
|
|
|
+ "metadata": {},
|
|
|
+ "source": [
|
|
|
+ "We now have a table that is easy to work with. Each column of the table is an array of the same length, and so columns can be combined using arithmetic. Here is the change in population between 2010 and 2014."
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "cell_type": "code",
|
|
|
+ "execution_count": 5,
|
|
|
+ "metadata": {},
|
|
|
+ "outputs": [
|
|
|
+ {
|
|
|
+ "data": {
|
|
|
+ "text/plain": [
|
|
|
+ "0 -1555\n",
|
|
|
+ "1 -8112\n",
|
|
|
+ "2 -131198\n",
|
|
|
+ "3 -104841\n",
|
|
|
+ "4 -71835\n",
|
|
|
+ " ... \n",
|
|
|
+ "301 8661\n",
|
|
|
+ "302 8676\n",
|
|
|
+ "303 6443\n",
|
|
|
+ "304 12950\n",
|
|
|
+ "305 4693244\n",
|
|
|
+ "Length: 306, dtype: int64"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "execution_count": 5,
|
|
|
+ "metadata": {},
|
|
|
+ "output_type": "execute_result"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "source": [
|
|
|
+ "us_pop['2014'] - us_pop['2010']"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "cell_type": "markdown",
|
|
|
+ "metadata": {},
|
|
|
+ "source": [
|
|
|
+ "Let us augment `us_pop` with a column that contains these changes, both in absolute terms and as percents relative to the value in 2010."
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "cell_type": "code",
|
|
|
+ "execution_count": 6,
|
|
|
+ "metadata": {},
|
|
|
+ "outputs": [
|
|
|
+ {
|
|
|
+ "data": {
|
|
|
+ "text/html": [
|
|
|
+ "<style type=\"text/css\" >\n",
|
|
|
+ "</style><table id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122\" ><thead> <tr> <th class=\"blank level0\" ></th> <th class=\"col_heading level0 col0\" >SEX</th> <th class=\"col_heading level0 col1\" >AGE</th> <th class=\"col_heading level0 col2\" >2010</th> <th class=\"col_heading level0 col3\" >2014</th> <th class=\"col_heading level0 col4\" >Change</th> <th class=\"col_heading level0 col5\" >Percent Change</th> </tr></thead><tbody>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row0\" class=\"row_heading level0 row0\" >0</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row0_col0\" class=\"data row0 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row0_col1\" class=\"data row0 col1\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row0_col2\" class=\"data row0 col2\" >3951330</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row0_col3\" class=\"data row0 col3\" >3949775</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row0_col4\" class=\"data row0 col4\" >-1555</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row0_col5\" class=\"data row0 col5\" >-0.04%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row1\" class=\"row_heading level0 row1\" >1</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row1_col0\" class=\"data row1 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row1_col1\" class=\"data row1 col1\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row1_col2\" class=\"data row1 col2\" >3957888</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row1_col3\" class=\"data row1 col3\" >3949776</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row1_col4\" class=\"data row1 col4\" >-8112</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row1_col5\" class=\"data row1 col5\" >-0.20%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row2\" class=\"row_heading level0 row2\" >2</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row2_col0\" class=\"data row2 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row2_col1\" class=\"data row2 col1\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row2_col2\" class=\"data row2 col2\" >4090862</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row2_col3\" class=\"data row2 col3\" >3959664</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row2_col4\" class=\"data row2 col4\" >-131198</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row2_col5\" class=\"data row2 col5\" >-3.21%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row3\" class=\"row_heading level0 row3\" >3</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row3_col0\" class=\"data row3 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row3_col1\" class=\"data row3 col1\" >3</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row3_col2\" class=\"data row3 col2\" >4111920</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row3_col3\" class=\"data row3 col3\" >4007079</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row3_col4\" class=\"data row3 col4\" >-104841</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row3_col5\" class=\"data row3 col5\" >-2.55%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row4\" class=\"row_heading level0 row4\" >4</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row4_col0\" class=\"data row4 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row4_col1\" class=\"data row4 col1\" >4</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row4_col2\" class=\"data row4 col2\" >4077551</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row4_col3\" class=\"data row4 col3\" >4005716</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row4_col4\" class=\"data row4 col4\" >-71835</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row4_col5\" class=\"data row4 col5\" >-1.76%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row5\" class=\"row_heading level0 row5\" >5</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row5_col0\" class=\"data row5 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row5_col1\" class=\"data row5 col1\" >5</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row5_col2\" class=\"data row5 col2\" >4064653</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row5_col3\" class=\"data row5 col3\" >4006900</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row5_col4\" class=\"data row5 col4\" >-57753</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row5_col5\" class=\"data row5 col5\" >-1.42%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row6\" class=\"row_heading level0 row6\" >6</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row6_col0\" class=\"data row6 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row6_col1\" class=\"data row6 col1\" >6</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row6_col2\" class=\"data row6 col2\" >4073013</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row6_col3\" class=\"data row6 col3\" >4135930</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row6_col4\" class=\"data row6 col4\" >62917</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row6_col5\" class=\"data row6 col5\" >1.54%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row7\" class=\"row_heading level0 row7\" >7</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row7_col0\" class=\"data row7 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row7_col1\" class=\"data row7 col1\" >7</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row7_col2\" class=\"data row7 col2\" >4043046</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row7_col3\" class=\"data row7 col3\" >4155326</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row7_col4\" class=\"data row7 col4\" >112280</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row7_col5\" class=\"data row7 col5\" >2.78%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row8\" class=\"row_heading level0 row8\" >8</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row8_col0\" class=\"data row8 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row8_col1\" class=\"data row8 col1\" >8</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row8_col2\" class=\"data row8 col2\" >4025604</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row8_col3\" class=\"data row8 col3\" >4120903</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row8_col4\" class=\"data row8 col4\" >95299</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row8_col5\" class=\"data row8 col5\" >2.37%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row9\" class=\"row_heading level0 row9\" >9</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row9_col0\" class=\"data row9 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row9_col1\" class=\"data row9 col1\" >9</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row9_col2\" class=\"data row9 col2\" >4125415</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row9_col3\" class=\"data row9 col3\" >4108349</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row9_col4\" class=\"data row9 col4\" >-17066</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row9_col5\" class=\"data row9 col5\" >-0.41%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row10\" class=\"row_heading level0 row10\" >10</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row10_col0\" class=\"data row10 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row10_col1\" class=\"data row10 col1\" >10</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row10_col2\" class=\"data row10 col2\" >4187062</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row10_col3\" class=\"data row10 col3\" >4116942</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row10_col4\" class=\"data row10 col4\" >-70120</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row10_col5\" class=\"data row10 col5\" >-1.67%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row11\" class=\"row_heading level0 row11\" >11</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row11_col0\" class=\"data row11 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row11_col1\" class=\"data row11 col1\" >11</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row11_col2\" class=\"data row11 col2\" >4115511</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row11_col3\" class=\"data row11 col3\" >4087402</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row11_col4\" class=\"data row11 col4\" >-28109</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row11_col5\" class=\"data row11 col5\" >-0.68%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row12\" class=\"row_heading level0 row12\" >12</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row12_col0\" class=\"data row12 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row12_col1\" class=\"data row12 col1\" >12</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row12_col2\" class=\"data row12 col2\" >4113279</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row12_col3\" class=\"data row12 col3\" >4070682</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row12_col4\" class=\"data row12 col4\" >-42597</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row12_col5\" class=\"data row12 col5\" >-1.04%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row13\" class=\"row_heading level0 row13\" >13</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row13_col0\" class=\"data row13 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row13_col1\" class=\"data row13 col1\" >13</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row13_col2\" class=\"data row13 col2\" >4119666</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row13_col3\" class=\"data row13 col3\" >4171030</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row13_col4\" class=\"data row13 col4\" >51364</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row13_col5\" class=\"data row13 col5\" >1.25%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row14\" class=\"row_heading level0 row14\" >14</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row14_col0\" class=\"data row14 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row14_col1\" class=\"data row14 col1\" >14</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row14_col2\" class=\"data row14 col2\" >4145614</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row14_col3\" class=\"data row14 col3\" >4233839</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row14_col4\" class=\"data row14 col4\" >88225</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row14_col5\" class=\"data row14 col5\" >2.13%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row15\" class=\"row_heading level0 row15\" >15</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row15_col0\" class=\"data row15 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row15_col1\" class=\"data row15 col1\" >15</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row15_col2\" class=\"data row15 col2\" >4231002</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row15_col3\" class=\"data row15 col3\" >4164796</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row15_col4\" class=\"data row15 col4\" >-66206</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row15_col5\" class=\"data row15 col5\" >-1.56%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row16\" class=\"row_heading level0 row16\" >16</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row16_col0\" class=\"data row16 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row16_col1\" class=\"data row16 col1\" >16</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row16_col2\" class=\"data row16 col2\" >4313252</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row16_col3\" class=\"data row16 col3\" >4168559</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row16_col4\" class=\"data row16 col4\" >-144693</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row16_col5\" class=\"data row16 col5\" >-3.35%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row17\" class=\"row_heading level0 row17\" >17</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row17_col0\" class=\"data row17 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row17_col1\" class=\"data row17 col1\" >17</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row17_col2\" class=\"data row17 col2\" >4376367</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row17_col3\" class=\"data row17 col3\" >4186513</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row17_col4\" class=\"data row17 col4\" >-189854</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row17_col5\" class=\"data row17 col5\" >-4.34%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row18\" class=\"row_heading level0 row18\" >18</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row18_col0\" class=\"data row18 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row18_col1\" class=\"data row18 col1\" >18</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row18_col2\" class=\"data row18 col2\" >4491005</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row18_col3\" class=\"data row18 col3\" >4227920</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row18_col4\" class=\"data row18 col4\" >-263085</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row18_col5\" class=\"data row18 col5\" >-5.86%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row19\" class=\"row_heading level0 row19\" >19</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row19_col0\" class=\"data row19 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row19_col1\" class=\"data row19 col1\" >19</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row19_col2\" class=\"data row19 col2\" >4571411</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row19_col3\" class=\"data row19 col3\" >4329038</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row19_col4\" class=\"data row19 col4\" >-242373</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row19_col5\" class=\"data row19 col5\" >-5.30%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row20\" class=\"row_heading level0 row20\" >20</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row20_col0\" class=\"data row20 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row20_col1\" class=\"data row20 col1\" >20</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row20_col2\" class=\"data row20 col2\" >4568517</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row20_col3\" class=\"data row20 col3\" >4421330</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row20_col4\" class=\"data row20 col4\" >-147187</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row20_col5\" class=\"data row20 col5\" >-3.22%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row21\" class=\"row_heading level0 row21\" >21</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row21_col0\" class=\"data row21 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row21_col1\" class=\"data row21 col1\" >21</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row21_col2\" class=\"data row21 col2\" >4387956</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row21_col3\" class=\"data row21 col3\" >4492373</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row21_col4\" class=\"data row21 col4\" >104417</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row21_col5\" class=\"data row21 col5\" >2.38%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row22\" class=\"row_heading level0 row22\" >22</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row22_col0\" class=\"data row22 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row22_col1\" class=\"data row22 col1\" >22</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row22_col2\" class=\"data row22 col2\" >4287005</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row22_col3\" class=\"data row22 col3\" >4615729</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row22_col4\" class=\"data row22 col4\" >328724</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row22_col5\" class=\"data row22 col5\" >7.67%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row23\" class=\"row_heading level0 row23\" >23</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row23_col0\" class=\"data row23 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row23_col1\" class=\"data row23 col1\" >23</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row23_col2\" class=\"data row23 col2\" >4217228</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row23_col3\" class=\"data row23 col3\" >4702156</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row23_col4\" class=\"data row23 col4\" >484928</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row23_col5\" class=\"data row23 col5\" >11.50%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row24\" class=\"row_heading level0 row24\" >24</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row24_col0\" class=\"data row24 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row24_col1\" class=\"data row24 col1\" >24</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row24_col2\" class=\"data row24 col2\" >4243602</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row24_col3\" class=\"data row24 col3\" >4695411</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row24_col4\" class=\"data row24 col4\" >451809</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row24_col5\" class=\"data row24 col5\" >10.65%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row25\" class=\"row_heading level0 row25\" >25</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row25_col0\" class=\"data row25 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row25_col1\" class=\"data row25 col1\" >25</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row25_col2\" class=\"data row25 col2\" >4289428</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row25_col3\" class=\"data row25 col3\" >4511370</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row25_col4\" class=\"data row25 col4\" >221942</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row25_col5\" class=\"data row25 col5\" >5.17%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row26\" class=\"row_heading level0 row26\" >26</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row26_col0\" class=\"data row26 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row26_col1\" class=\"data row26 col1\" >26</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row26_col2\" class=\"data row26 col2\" >4160806</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row26_col3\" class=\"data row26 col3\" >4408043</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row26_col4\" class=\"data row26 col4\" >247237</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row26_col5\" class=\"data row26 col5\" >5.94%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row27\" class=\"row_heading level0 row27\" >27</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row27_col0\" class=\"data row27 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row27_col1\" class=\"data row27 col1\" >27</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row27_col2\" class=\"data row27 col2\" >4237026</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row27_col3\" class=\"data row27 col3\" >4334806</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row27_col4\" class=\"data row27 col4\" >97780</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row27_col5\" class=\"data row27 col5\" >2.31%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row28\" class=\"row_heading level0 row28\" >28</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row28_col0\" class=\"data row28 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row28_col1\" class=\"data row28 col1\" >28</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row28_col2\" class=\"data row28 col2\" >4247541</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row28_col3\" class=\"data row28 col3\" >4355240</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row28_col4\" class=\"data row28 col4\" >107699</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row28_col5\" class=\"data row28 col5\" >2.54%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row29\" class=\"row_heading level0 row29\" >29</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row29_col0\" class=\"data row29 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row29_col1\" class=\"data row29 col1\" >29</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row29_col2\" class=\"data row29 col2\" >4210286</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row29_col3\" class=\"data row29 col3\" >4391788</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row29_col4\" class=\"data row29 col4\" >181502</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row29_col5\" class=\"data row29 col5\" >4.31%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row30\" class=\"row_heading level0 row30\" >30</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row30_col0\" class=\"data row30 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row30_col1\" class=\"data row30 col1\" >30</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row30_col2\" class=\"data row30 col2\" >4304239</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row30_col3\" class=\"data row30 col3\" >4255334</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row30_col4\" class=\"data row30 col4\" >-48905</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row30_col5\" class=\"data row30 col5\" >-1.14%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row31\" class=\"row_heading level0 row31\" >31</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row31_col0\" class=\"data row31 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row31_col1\" class=\"data row31 col1\" >31</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row31_col2\" class=\"data row31 col2\" >4042516</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row31_col3\" class=\"data row31 col3\" >4323217</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row31_col4\" class=\"data row31 col4\" >280701</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row31_col5\" class=\"data row31 col5\" >6.94%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row32\" class=\"row_heading level0 row32\" >32</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row32_col0\" class=\"data row32 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row32_col1\" class=\"data row32 col1\" >32</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row32_col2\" class=\"data row32 col2\" >3967602</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row32_col3\" class=\"data row32 col3\" >4323951</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row32_col4\" class=\"data row32 col4\" >356349</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row32_col5\" class=\"data row32 col5\" >8.98%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row33\" class=\"row_heading level0 row33\" >33</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row33_col0\" class=\"data row33 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row33_col1\" class=\"data row33 col1\" >33</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row33_col2\" class=\"data row33 col2\" >3933581</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row33_col3\" class=\"data row33 col3\" >4278664</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row33_col4\" class=\"data row33 col4\" >345083</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row33_col5\" class=\"data row33 col5\" >8.77%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row34\" class=\"row_heading level0 row34\" >34</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row34_col0\" class=\"data row34 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row34_col1\" class=\"data row34 col1\" >34</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row34_col2\" class=\"data row34 col2\" >3822189</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row34_col3\" class=\"data row34 col3\" >4364748</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row34_col4\" class=\"data row34 col4\" >542559</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row34_col5\" class=\"data row34 col5\" >14.19%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row35\" class=\"row_heading level0 row35\" >35</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row35_col0\" class=\"data row35 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row35_col1\" class=\"data row35 col1\" >35</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row35_col2\" class=\"data row35 col2\" >3948335</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row35_col3\" class=\"data row35 col3\" >4095782</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row35_col4\" class=\"data row35 col4\" >147447</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row35_col5\" class=\"data row35 col5\" >3.73%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row36\" class=\"row_heading level0 row36\" >36</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row36_col0\" class=\"data row36 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row36_col1\" class=\"data row36 col1\" >36</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row36_col2\" class=\"data row36 col2\" >3830199</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row36_col3\" class=\"data row36 col3\" >4016711</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row36_col4\" class=\"data row36 col4\" >186512</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row36_col5\" class=\"data row36 col5\" >4.87%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row37\" class=\"row_heading level0 row37\" >37</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row37_col0\" class=\"data row37 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row37_col1\" class=\"data row37 col1\" >37</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row37_col2\" class=\"data row37 col2\" >3896766</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row37_col3\" class=\"data row37 col3\" >3976750</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row37_col4\" class=\"data row37 col4\" >79984</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row37_col5\" class=\"data row37 col5\" >2.05%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row38\" class=\"row_heading level0 row38\" >38</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row38_col0\" class=\"data row38 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row38_col1\" class=\"data row38 col1\" >38</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row38_col2\" class=\"data row38 col2\" >4080228</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row38_col3\" class=\"data row38 col3\" >3861636</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row38_col4\" class=\"data row38 col4\" >-218592</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row38_col5\" class=\"data row38 col5\" >-5.36%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row39\" class=\"row_heading level0 row39\" >39</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row39_col0\" class=\"data row39 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row39_col1\" class=\"data row39 col1\" >39</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row39_col2\" class=\"data row39 col2\" >4324463</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row39_col3\" class=\"data row39 col3\" >3982507</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row39_col4\" class=\"data row39 col4\" >-341956</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row39_col5\" class=\"data row39 col5\" >-7.91%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row40\" class=\"row_heading level0 row40\" >40</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row40_col0\" class=\"data row40 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row40_col1\" class=\"data row40 col1\" >40</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row40_col2\" class=\"data row40 col2\" >4387480</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row40_col3\" class=\"data row40 col3\" >3859395</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row40_col4\" class=\"data row40 col4\" >-528085</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row40_col5\" class=\"data row40 col5\" >-12.04%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row41\" class=\"row_heading level0 row41\" >41</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row41_col0\" class=\"data row41 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row41_col1\" class=\"data row41 col1\" >41</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row41_col2\" class=\"data row41 col2\" >4163478</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row41_col3\" class=\"data row41 col3\" >3919810</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row41_col4\" class=\"data row41 col4\" >-243668</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row41_col5\" class=\"data row41 col5\" >-5.85%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row42\" class=\"row_heading level0 row42\" >42</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row42_col0\" class=\"data row42 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row42_col1\" class=\"data row42 col1\" >42</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row42_col2\" class=\"data row42 col2\" >4082712</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row42_col3\" class=\"data row42 col3\" >4097698</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row42_col4\" class=\"data row42 col4\" >14986</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row42_col5\" class=\"data row42 col5\" >0.37%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row43\" class=\"row_heading level0 row43\" >43</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row43_col0\" class=\"data row43 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row43_col1\" class=\"data row43 col1\" >43</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row43_col2\" class=\"data row43 col2\" >4093844</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row43_col3\" class=\"data row43 col3\" >4333850</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row43_col4\" class=\"data row43 col4\" >240006</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row43_col5\" class=\"data row43 col5\" >5.86%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row44\" class=\"row_heading level0 row44\" >44</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row44_col0\" class=\"data row44 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row44_col1\" class=\"data row44 col1\" >44</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row44_col2\" class=\"data row44 col2\" >4178508</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row44_col3\" class=\"data row44 col3\" >4390283</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row44_col4\" class=\"data row44 col4\" >211775</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row44_col5\" class=\"data row44 col5\" >5.07%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row45\" class=\"row_heading level0 row45\" >45</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row45_col0\" class=\"data row45 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row45_col1\" class=\"data row45 col1\" >45</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row45_col2\" class=\"data row45 col2\" >4438559</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row45_col3\" class=\"data row45 col3\" >4162629</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row45_col4\" class=\"data row45 col4\" >-275930</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row45_col5\" class=\"data row45 col5\" >-6.22%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row46\" class=\"row_heading level0 row46\" >46</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row46_col0\" class=\"data row46 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row46_col1\" class=\"data row46 col1\" >46</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row46_col2\" class=\"data row46 col2\" >4529716</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row46_col3\" class=\"data row46 col3\" >4077151</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row46_col4\" class=\"data row46 col4\" >-452565</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row46_col5\" class=\"data row46 col5\" >-9.99%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row47\" class=\"row_heading level0 row47\" >47</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row47_col0\" class=\"data row47 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row47_col1\" class=\"data row47 col1\" >47</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row47_col2\" class=\"data row47 col2\" >4535473</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row47_col3\" class=\"data row47 col3\" >4082883</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row47_col4\" class=\"data row47 col4\" >-452590</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row47_col5\" class=\"data row47 col5\" >-9.98%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row48\" class=\"row_heading level0 row48\" >48</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row48_col0\" class=\"data row48 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row48_col1\" class=\"data row48 col1\" >48</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row48_col2\" class=\"data row48 col2\" >4534663</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row48_col3\" class=\"data row48 col3\" >4159738</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row48_col4\" class=\"data row48 col4\" >-374925</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row48_col5\" class=\"data row48 col5\" >-8.27%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row49\" class=\"row_heading level0 row49\" >49</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row49_col0\" class=\"data row49 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row49_col1\" class=\"data row49 col1\" >49</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row49_col2\" class=\"data row49 col2\" >4599098</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row49_col3\" class=\"data row49 col3\" >4410246</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row49_col4\" class=\"data row49 col4\" >-188852</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row49_col5\" class=\"data row49 col5\" >-4.11%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row50\" class=\"row_heading level0 row50\" >50</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row50_col0\" class=\"data row50 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row50_col1\" class=\"data row50 col1\" >50</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row50_col2\" class=\"data row50 col2\" >4646231</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row50_col3\" class=\"data row50 col3\" >4492407</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row50_col4\" class=\"data row50 col4\" >-153824</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row50_col5\" class=\"data row50 col5\" >-3.31%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row51\" class=\"row_heading level0 row51\" >51</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row51_col0\" class=\"data row51 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row51_col1\" class=\"data row51 col1\" >51</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row51_col2\" class=\"data row51 col2\" >4498974</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row51_col3\" class=\"data row51 col3\" >4489393</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row51_col4\" class=\"data row51 col4\" >-9581</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row51_col5\" class=\"data row51 col5\" >-0.21%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row52\" class=\"row_heading level0 row52\" >52</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row52_col0\" class=\"data row52 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row52_col1\" class=\"data row52 col1\" >52</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row52_col2\" class=\"data row52 col2\" >4480584</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row52_col3\" class=\"data row52 col3\" >4480188</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row52_col4\" class=\"data row52 col4\" >-396</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row52_col5\" class=\"data row52 col5\" >-0.01%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row53\" class=\"row_heading level0 row53\" >53</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row53_col0\" class=\"data row53 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row53_col1\" class=\"data row53 col1\" >53</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row53_col2\" class=\"data row53 col2\" >4439403</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row53_col3\" class=\"data row53 col3\" >4535430</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row53_col4\" class=\"data row53 col4\" >96027</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row53_col5\" class=\"data row53 col5\" >2.16%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row54\" class=\"row_heading level0 row54\" >54</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row54_col0\" class=\"data row54 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row54_col1\" class=\"data row54 col1\" >54</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row54_col2\" class=\"data row54 col2\" >4288447</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row54_col3\" class=\"data row54 col3\" >4574760</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row54_col4\" class=\"data row54 col4\" >286313</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row54_col5\" class=\"data row54 col5\" >6.68%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row55\" class=\"row_heading level0 row55\" >55</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row55_col0\" class=\"data row55 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row55_col1\" class=\"data row55 col1\" >55</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row55_col2\" class=\"data row55 col2\" >4258970</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row55_col3\" class=\"data row55 col3\" >4421856</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row55_col4\" class=\"data row55 col4\" >162886</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row55_col5\" class=\"data row55 col5\" >3.82%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row56\" class=\"row_heading level0 row56\" >56</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row56_col0\" class=\"data row56 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row56_col1\" class=\"data row56 col1\" >56</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row56_col2\" class=\"data row56 col2\" >4093136</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row56_col3\" class=\"data row56 col3\" >4395949</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row56_col4\" class=\"data row56 col4\" >302813</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row56_col5\" class=\"data row56 col5\" >7.40%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row57\" class=\"row_heading level0 row57\" >57</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row57_col0\" class=\"data row57 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row57_col1\" class=\"data row57 col1\" >57</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row57_col2\" class=\"data row57 col2\" >3946518</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row57_col3\" class=\"data row57 col3\" >4347023</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row57_col4\" class=\"data row57 col4\" >400505</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row57_col5\" class=\"data row57 col5\" >10.15%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row58\" class=\"row_heading level0 row58\" >58</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row58_col0\" class=\"data row58 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row58_col1\" class=\"data row58 col1\" >58</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row58_col2\" class=\"data row58 col2\" >3802447</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row58_col3\" class=\"data row58 col3\" >4191360</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row58_col4\" class=\"data row58 col4\" >388913</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row58_col5\" class=\"data row58 col5\" >10.23%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row59\" class=\"row_heading level0 row59\" >59</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row59_col0\" class=\"data row59 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row59_col1\" class=\"data row59 col1\" >59</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row59_col2\" class=\"data row59 col2\" >3694254</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row59_col3\" class=\"data row59 col3\" >4155521</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row59_col4\" class=\"data row59 col4\" >461267</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row59_col5\" class=\"data row59 col5\" >12.49%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row60\" class=\"row_heading level0 row60\" >60</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row60_col0\" class=\"data row60 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row60_col1\" class=\"data row60 col1\" >60</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row60_col2\" class=\"data row60 col2\" >3616721</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row60_col3\" class=\"data row60 col3\" >3985598</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row60_col4\" class=\"data row60 col4\" >368877</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row60_col5\" class=\"data row60 col5\" >10.20%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row61\" class=\"row_heading level0 row61\" >61</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row61_col0\" class=\"data row61 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row61_col1\" class=\"data row61 col1\" >61</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row61_col2\" class=\"data row61 col2\" >3520109</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row61_col3\" class=\"data row61 col3\" >3834367</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row61_col4\" class=\"data row61 col4\" >314258</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row61_col5\" class=\"data row61 col5\" >8.93%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row62\" class=\"row_heading level0 row62\" >62</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row62_col0\" class=\"data row62 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row62_col1\" class=\"data row62 col1\" >62</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row62_col2\" class=\"data row62 col2\" >3495059</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row62_col3\" class=\"data row62 col3\" >3685282</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row62_col4\" class=\"data row62 col4\" >190223</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row62_col5\" class=\"data row62 col5\" >5.44%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row63\" class=\"row_heading level0 row63\" >63</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row63_col0\" class=\"data row63 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row63_col1\" class=\"data row63 col1\" >63</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row63_col2\" class=\"data row63 col2\" >3652167</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row63_col3\" class=\"data row63 col3\" >3571610</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row63_col4\" class=\"data row63 col4\" >-80557</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row63_col5\" class=\"data row63 col5\" >-2.21%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row64\" class=\"row_heading level0 row64\" >64</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row64_col0\" class=\"data row64 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row64_col1\" class=\"data row64 col1\" >64</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row64_col2\" class=\"data row64 col2\" >2706055</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row64_col3\" class=\"data row64 col3\" >3487559</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row64_col4\" class=\"data row64 col4\" >781504</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row64_col5\" class=\"data row64 col5\" >28.88%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row65\" class=\"row_heading level0 row65\" >65</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row65_col0\" class=\"data row65 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row65_col1\" class=\"data row65 col1\" >65</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row65_col2\" class=\"data row65 col2\" >2678525</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row65_col3\" class=\"data row65 col3\" >3382824</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row65_col4\" class=\"data row65 col4\" >704299</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row65_col5\" class=\"data row65 col5\" >26.29%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row66\" class=\"row_heading level0 row66\" >66</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row66_col0\" class=\"data row66 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row66_col1\" class=\"data row66 col1\" >66</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row66_col2\" class=\"data row66 col2\" >2621335</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row66_col3\" class=\"data row66 col3\" >3347060</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row66_col4\" class=\"data row66 col4\" >725725</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row66_col5\" class=\"data row66 col5\" >27.69%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row67\" class=\"row_heading level0 row67\" >67</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row67_col0\" class=\"data row67 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row67_col1\" class=\"data row67 col1\" >67</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row67_col2\" class=\"data row67 col2\" >2693707</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row67_col3\" class=\"data row67 col3\" >3485241</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row67_col4\" class=\"data row67 col4\" >791534</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row67_col5\" class=\"data row67 col5\" >29.38%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row68\" class=\"row_heading level0 row68\" >68</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row68_col0\" class=\"data row68 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row68_col1\" class=\"data row68 col1\" >68</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row68_col2\" class=\"data row68 col2\" >2359816</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row68_col3\" class=\"data row68 col3\" >2572359</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row68_col4\" class=\"data row68 col4\" >212543</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row68_col5\" class=\"data row68 col5\" >9.01%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row69\" class=\"row_heading level0 row69\" >69</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row69_col0\" class=\"data row69 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row69_col1\" class=\"data row69 col1\" >69</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row69_col2\" class=\"data row69 col2\" >2167830</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row69_col3\" class=\"data row69 col3\" >2534295</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row69_col4\" class=\"data row69 col4\" >366465</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row69_col5\" class=\"data row69 col5\" >16.90%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row70\" class=\"row_heading level0 row70\" >70</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row70_col0\" class=\"data row70 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row70_col1\" class=\"data row70 col1\" >70</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row70_col2\" class=\"data row70 col2\" >2062577</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row70_col3\" class=\"data row70 col3\" >2465438</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row70_col4\" class=\"data row70 col4\" >402861</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row70_col5\" class=\"data row70 col5\" >19.53%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row71\" class=\"row_heading level0 row71\" >71</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row71_col0\" class=\"data row71 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row71_col1\" class=\"data row71 col1\" >71</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row71_col2\" class=\"data row71 col2\" >1953607</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row71_col3\" class=\"data row71 col3\" >2519705</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row71_col4\" class=\"data row71 col4\" >566098</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row71_col5\" class=\"data row71 col5\" >28.98%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row72\" class=\"row_heading level0 row72\" >72</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row72_col0\" class=\"data row72 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row72_col1\" class=\"data row72 col1\" >72</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row72_col2\" class=\"data row72 col2\" >1883820</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row72_col3\" class=\"data row72 col3\" >2193945</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row72_col4\" class=\"data row72 col4\" >310125</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row72_col5\" class=\"data row72 col5\" >16.46%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row73\" class=\"row_heading level0 row73\" >73</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row73_col0\" class=\"data row73 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row73_col1\" class=\"data row73 col1\" >73</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row73_col2\" class=\"data row73 col2\" >1750304</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row73_col3\" class=\"data row73 col3\" >2001700</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row73_col4\" class=\"data row73 col4\" >251396</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row73_col5\" class=\"data row73 col5\" >14.36%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row74\" class=\"row_heading level0 row74\" >74</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row74_col0\" class=\"data row74 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row74_col1\" class=\"data row74 col1\" >74</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row74_col2\" class=\"data row74 col2\" >1685995</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row74_col3\" class=\"data row74 col3\" >1889513</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row74_col4\" class=\"data row74 col4\" >203518</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row74_col5\" class=\"data row74 col5\" >12.07%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row75\" class=\"row_heading level0 row75\" >75</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row75_col0\" class=\"data row75 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row75_col1\" class=\"data row75 col1\" >75</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row75_col2\" class=\"data row75 col2\" >1631878</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row75_col3\" class=\"data row75 col3\" >1773756</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row75_col4\" class=\"data row75 col4\" >141878</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row75_col5\" class=\"data row75 col5\" >8.69%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row76\" class=\"row_heading level0 row76\" >76</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row76_col0\" class=\"data row76 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row76_col1\" class=\"data row76 col1\" >76</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row76_col2\" class=\"data row76 col2\" >1481680</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row76_col3\" class=\"data row76 col3\" >1693674</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row76_col4\" class=\"data row76 col4\" >211994</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row76_col5\" class=\"data row76 col5\" >14.31%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row77\" class=\"row_heading level0 row77\" >77</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row77_col0\" class=\"data row77 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row77_col1\" class=\"data row77 col1\" >77</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row77_col2\" class=\"data row77 col2\" >1449173</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row77_col3\" class=\"data row77 col3\" >1556104</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row77_col4\" class=\"data row77 col4\" >106931</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row77_col5\" class=\"data row77 col5\" >7.38%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row78\" class=\"row_heading level0 row78\" >78</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row78_col0\" class=\"data row78 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row78_col1\" class=\"data row78 col1\" >78</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row78_col2\" class=\"data row78 col2\" >1402182</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row78_col3\" class=\"data row78 col3\" >1480611</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row78_col4\" class=\"data row78 col4\" >78429</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row78_col5\" class=\"data row78 col5\" >5.59%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row79\" class=\"row_heading level0 row79\" >79</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row79_col0\" class=\"data row79 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row79_col1\" class=\"data row79 col1\" >79</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row79_col2\" class=\"data row79 col2\" >1354912</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row79_col3\" class=\"data row79 col3\" >1413193</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row79_col4\" class=\"data row79 col4\" >58281</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row79_col5\" class=\"data row79 col5\" >4.30%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row80\" class=\"row_heading level0 row80\" >80</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row80_col0\" class=\"data row80 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row80_col1\" class=\"data row80 col1\" >80</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row80_col2\" class=\"data row80 col2\" >1319725</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row80_col3\" class=\"data row80 col3\" >1262537</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row80_col4\" class=\"data row80 col4\" >-57188</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row80_col5\" class=\"data row80 col5\" >-4.33%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row81\" class=\"row_heading level0 row81\" >81</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row81_col0\" class=\"data row81 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row81_col1\" class=\"data row81 col1\" >81</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row81_col2\" class=\"data row81 col2\" >1212603</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row81_col3\" class=\"data row81 col3\" >1214357</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row81_col4\" class=\"data row81 col4\" >1754</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row81_col5\" class=\"data row81 col5\" >0.14%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row82\" class=\"row_heading level0 row82\" >82</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row82_col0\" class=\"data row82 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row82_col1\" class=\"data row82 col1\" >82</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row82_col2\" class=\"data row82 col2\" >1158351</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row82_col3\" class=\"data row82 col3\" >1151677</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row82_col4\" class=\"data row82 col4\" >-6674</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row82_col5\" class=\"data row82 col5\" >-0.58%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row83\" class=\"row_heading level0 row83\" >83</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row83_col0\" class=\"data row83 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row83_col1\" class=\"data row83 col1\" >83</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row83_col2\" class=\"data row83 col2\" >1081440</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row83_col3\" class=\"data row83 col3\" >1088601</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row83_col4\" class=\"data row83 col4\" >7161</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row83_col5\" class=\"data row83 col5\" >0.66%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row84\" class=\"row_heading level0 row84\" >84</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row84_col0\" class=\"data row84 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row84_col1\" class=\"data row84 col1\" >84</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row84_col2\" class=\"data row84 col2\" >987023</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row84_col3\" class=\"data row84 col3\" >1034369</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row84_col4\" class=\"data row84 col4\" >47346</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row84_col5\" class=\"data row84 col5\" >4.80%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row85\" class=\"row_heading level0 row85\" >85</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row85_col0\" class=\"data row85 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row85_col1\" class=\"data row85 col1\" >85</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row85_col2\" class=\"data row85 col2\" >915013</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row85_col3\" class=\"data row85 col3\" >922947</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row85_col4\" class=\"data row85 col4\" >7934</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row85_col5\" class=\"data row85 col5\" >0.87%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row86\" class=\"row_heading level0 row86\" >86</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row86_col0\" class=\"data row86 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row86_col1\" class=\"data row86 col1\" >86</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row86_col2\" class=\"data row86 col2\" >821549</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row86_col3\" class=\"data row86 col3\" >853723</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row86_col4\" class=\"data row86 col4\" >32174</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row86_col5\" class=\"data row86 col5\" >3.92%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row87\" class=\"row_heading level0 row87\" >87</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row87_col0\" class=\"data row87 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row87_col1\" class=\"data row87 col1\" >87</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row87_col2\" class=\"data row87 col2\" >721196</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row87_col3\" class=\"data row87 col3\" >768676</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row87_col4\" class=\"data row87 col4\" >47480</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row87_col5\" class=\"data row87 col5\" >6.58%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row88\" class=\"row_heading level0 row88\" >88</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row88_col0\" class=\"data row88 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row88_col1\" class=\"data row88 col1\" >88</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row88_col2\" class=\"data row88 col2\" >636657</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row88_col3\" class=\"data row88 col3\" >673402</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row88_col4\" class=\"data row88 col4\" >36745</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row88_col5\" class=\"data row88 col5\" >5.77%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row89\" class=\"row_heading level0 row89\" >89</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row89_col0\" class=\"data row89 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row89_col1\" class=\"data row89 col1\" >89</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row89_col2\" class=\"data row89 col2\" >546193</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row89_col3\" class=\"data row89 col3\" >597828</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row89_col4\" class=\"data row89 col4\" >51635</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row89_col5\" class=\"data row89 col5\" >9.45%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row90\" class=\"row_heading level0 row90\" >90</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row90_col0\" class=\"data row90 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row90_col1\" class=\"data row90 col1\" >90</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row90_col2\" class=\"data row90 col2\" >448324</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row90_col3\" class=\"data row90 col3\" >511074</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row90_col4\" class=\"data row90 col4\" >62750</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row90_col5\" class=\"data row90 col5\" >14.00%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row91\" class=\"row_heading level0 row91\" >91</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row91_col0\" class=\"data row91 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row91_col1\" class=\"data row91 col1\" >91</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row91_col2\" class=\"data row91 col2\" >344442</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row91_col3\" class=\"data row91 col3\" >425314</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row91_col4\" class=\"data row91 col4\" >80872</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row91_col5\" class=\"data row91 col5\" >23.48%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row92\" class=\"row_heading level0 row92\" >92</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row92_col0\" class=\"data row92 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row92_col1\" class=\"data row92 col1\" >92</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row92_col2\" class=\"data row92 col2\" >288841</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row92_col3\" class=\"data row92 col3\" >352912</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row92_col4\" class=\"data row92 col4\" >64071</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row92_col5\" class=\"data row92 col5\" >22.18%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row93\" class=\"row_heading level0 row93\" >93</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row93_col0\" class=\"data row93 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row93_col1\" class=\"data row93 col1\" >93</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row93_col2\" class=\"data row93 col2\" >219064</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row93_col3\" class=\"data row93 col3\" >284885</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row93_col4\" class=\"data row93 col4\" >65821</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row93_col5\" class=\"data row93 col5\" >30.05%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row94\" class=\"row_heading level0 row94\" >94</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row94_col0\" class=\"data row94 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row94_col1\" class=\"data row94 col1\" >94</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row94_col2\" class=\"data row94 col2\" >170775</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row94_col3\" class=\"data row94 col3\" >217328</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row94_col4\" class=\"data row94 col4\" >46553</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row94_col5\" class=\"data row94 col5\" >27.26%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row95\" class=\"row_heading level0 row95\" >95</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row95_col0\" class=\"data row95 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row95_col1\" class=\"data row95 col1\" >95</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row95_col2\" class=\"data row95 col2\" >131077</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row95_col3\" class=\"data row95 col3\" >156288</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row95_col4\" class=\"data row95 col4\" >25211</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row95_col5\" class=\"data row95 col5\" >19.23%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row96\" class=\"row_heading level0 row96\" >96</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row96_col0\" class=\"data row96 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row96_col1\" class=\"data row96 col1\" >96</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row96_col2\" class=\"data row96 col2\" >97161</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row96_col3\" class=\"data row96 col3\" >120485</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row96_col4\" class=\"data row96 col4\" >23324</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row96_col5\" class=\"data row96 col5\" >24.01%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row97\" class=\"row_heading level0 row97\" >97</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row97_col0\" class=\"data row97 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row97_col1\" class=\"data row97 col1\" >97</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row97_col2\" class=\"data row97 col2\" >68893</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row97_col3\" class=\"data row97 col3\" >83089</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row97_col4\" class=\"data row97 col4\" >14196</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row97_col5\" class=\"data row97 col5\" >20.61%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row98\" class=\"row_heading level0 row98\" >98</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row98_col0\" class=\"data row98 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row98_col1\" class=\"data row98 col1\" >98</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row98_col2\" class=\"data row98 col2\" >47037</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row98_col3\" class=\"data row98 col3\" >59726</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row98_col4\" class=\"data row98 col4\" >12689</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row98_col5\" class=\"data row98 col5\" >26.98%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row99\" class=\"row_heading level0 row99\" >99</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row99_col0\" class=\"data row99 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row99_col1\" class=\"data row99 col1\" >99</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row99_col2\" class=\"data row99 col2\" >32178</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row99_col3\" class=\"data row99 col3\" >41468</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row99_col4\" class=\"data row99 col4\" >9290</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row99_col5\" class=\"data row99 col5\" >28.87%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row100\" class=\"row_heading level0 row100\" >100</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row100_col0\" class=\"data row100 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row100_col1\" class=\"data row100 col1\" >100</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row100_col2\" class=\"data row100 col2\" >54410</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row100_col3\" class=\"data row100 col3\" >71626</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row100_col4\" class=\"data row100 col4\" >17216</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row100_col5\" class=\"data row100 col5\" >31.64%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row101\" class=\"row_heading level0 row101\" >101</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row101_col0\" class=\"data row101 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row101_col1\" class=\"data row101 col1\" >999</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row101_col2\" class=\"data row101 col2\" >309346863</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row101_col3\" class=\"data row101 col3\" >318907401</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row101_col4\" class=\"data row101 col4\" >9560538</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row101_col5\" class=\"data row101 col5\" >3.09%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row102\" class=\"row_heading level0 row102\" >102</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row102_col0\" class=\"data row102 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row102_col1\" class=\"data row102 col1\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row102_col2\" class=\"data row102 col2\" >2018420</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row102_col3\" class=\"data row102 col3\" >2020326</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row102_col4\" class=\"data row102 col4\" >1906</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row102_col5\" class=\"data row102 col5\" >0.09%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row103\" class=\"row_heading level0 row103\" >103</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row103_col0\" class=\"data row103 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row103_col1\" class=\"data row103 col1\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row103_col2\" class=\"data row103 col2\" >2020332</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row103_col3\" class=\"data row103 col3\" >2018401</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row103_col4\" class=\"data row103 col4\" >-1931</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row103_col5\" class=\"data row103 col5\" >-0.10%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row104\" class=\"row_heading level0 row104\" >104</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row104_col0\" class=\"data row104 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row104_col1\" class=\"data row104 col1\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row104_col2\" class=\"data row104 col2\" >2088685</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row104_col3\" class=\"data row104 col3\" >2023673</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row104_col4\" class=\"data row104 col4\" >-65012</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row104_col5\" class=\"data row104 col5\" >-3.11%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row105\" class=\"row_heading level0 row105\" >105</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row105_col0\" class=\"data row105 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row105_col1\" class=\"data row105 col1\" >3</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row105_col2\" class=\"data row105 col2\" >2101272</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row105_col3\" class=\"data row105 col3\" >2049596</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row105_col4\" class=\"data row105 col4\" >-51676</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row105_col5\" class=\"data row105 col5\" >-2.46%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row106\" class=\"row_heading level0 row106\" >106</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row106_col0\" class=\"data row106 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row106_col1\" class=\"data row106 col1\" >4</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row106_col2\" class=\"data row106 col2\" >2084312</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row106_col3\" class=\"data row106 col3\" >2044517</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row106_col4\" class=\"data row106 col4\" >-39795</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row106_col5\" class=\"data row106 col5\" >-1.91%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row107\" class=\"row_heading level0 row107\" >107</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row107_col0\" class=\"data row107 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row107_col1\" class=\"data row107 col1\" >5</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row107_col2\" class=\"data row107 col2\" >2076573</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row107_col3\" class=\"data row107 col3\" >2044339</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row107_col4\" class=\"data row107 col4\" >-32234</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row107_col5\" class=\"data row107 col5\" >-1.55%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row108\" class=\"row_heading level0 row108\" >108</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row108_col0\" class=\"data row108 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row108_col1\" class=\"data row108 col1\" >6</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row108_col2\" class=\"data row108 col2\" >2079410</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row108_col3\" class=\"data row108 col3\" >2111060</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row108_col4\" class=\"data row108 col4\" >31650</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row108_col5\" class=\"data row108 col5\" >1.52%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row109\" class=\"row_heading level0 row109\" >109</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row109_col0\" class=\"data row109 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row109_col1\" class=\"data row109 col1\" >7</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row109_col2\" class=\"data row109 col2\" >2063139</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row109_col3\" class=\"data row109 col3\" >2122832</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row109_col4\" class=\"data row109 col4\" >59693</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row109_col5\" class=\"data row109 col5\" >2.89%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row110\" class=\"row_heading level0 row110\" >110</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row110_col0\" class=\"data row110 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row110_col1\" class=\"data row110 col1\" >8</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row110_col2\" class=\"data row110 col2\" >2054462</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row110_col3\" class=\"data row110 col3\" >2105618</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row110_col4\" class=\"data row110 col4\" >51156</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row110_col5\" class=\"data row110 col5\" >2.49%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row111\" class=\"row_heading level0 row111\" >111</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row111_col0\" class=\"data row111 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row111_col1\" class=\"data row111 col1\" >9</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row111_col2\" class=\"data row111 col2\" >2107037</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row111_col3\" class=\"data row111 col3\" >2097690</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row111_col4\" class=\"data row111 col4\" >-9347</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row111_col5\" class=\"data row111 col5\" >-0.44%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row112\" class=\"row_heading level0 row112\" >112</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row112_col0\" class=\"data row112 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row112_col1\" class=\"data row112 col1\" >10</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row112_col2\" class=\"data row112 col2\" >2142167</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row112_col3\" class=\"data row112 col3\" >2100262</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row112_col4\" class=\"data row112 col4\" >-41905</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row112_col5\" class=\"data row112 col5\" >-1.96%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row113\" class=\"row_heading level0 row113\" >113</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row113_col0\" class=\"data row113 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row113_col1\" class=\"data row113 col1\" >11</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row113_col2\" class=\"data row113 col2\" >2104797</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row113_col3\" class=\"data row113 col3\" >2084169</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row113_col4\" class=\"data row113 col4\" >-20628</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row113_col5\" class=\"data row113 col5\" >-0.98%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row114\" class=\"row_heading level0 row114\" >114</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row114_col0\" class=\"data row114 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row114_col1\" class=\"data row114 col1\" >12</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row114_col2\" class=\"data row114 col2\" >2103649</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row114_col3\" class=\"data row114 col3\" >2075836</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row114_col4\" class=\"data row114 col4\" >-27813</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row114_col5\" class=\"data row114 col5\" >-1.32%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row115\" class=\"row_heading level0 row115\" >115</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row115_col0\" class=\"data row115 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row115_col1\" class=\"data row115 col1\" >13</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row115_col2\" class=\"data row115 col2\" >2104949</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row115_col3\" class=\"data row115 col3\" >2128914</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row115_col4\" class=\"data row115 col4\" >23965</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row115_col5\" class=\"data row115 col5\" >1.14%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row116\" class=\"row_heading level0 row116\" >116</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row116_col0\" class=\"data row116 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row116_col1\" class=\"data row116 col1\" >14</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row116_col2\" class=\"data row116 col2\" >2122913</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row116_col3\" class=\"data row116 col3\" >2164924</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row116_col4\" class=\"data row116 col4\" >42011</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row116_col5\" class=\"data row116 col5\" >1.98%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row117\" class=\"row_heading level0 row117\" >117</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row117_col0\" class=\"data row117 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row117_col1\" class=\"data row117 col1\" >15</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row117_col2\" class=\"data row117 col2\" >2170442</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row117_col3\" class=\"data row117 col3\" >2129062</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row117_col4\" class=\"data row117 col4\" >-41380</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row117_col5\" class=\"data row117 col5\" >-1.91%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row118\" class=\"row_heading level0 row118\" >118</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row118_col0\" class=\"data row118 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row118_col1\" class=\"data row118 col1\" >16</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row118_col2\" class=\"data row118 col2\" >2215032</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row118_col3\" class=\"data row118 col3\" >2131425</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row118_col4\" class=\"data row118 col4\" >-83607</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row118_col5\" class=\"data row118 col5\" >-3.77%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row119\" class=\"row_heading level0 row119\" >119</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row119_col0\" class=\"data row119 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row119_col1\" class=\"data row119 col1\" >17</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row119_col2\" class=\"data row119 col2\" >2252838</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row119_col3\" class=\"data row119 col3\" >2139361</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row119_col4\" class=\"data row119 col4\" >-113477</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row119_col5\" class=\"data row119 col5\" >-5.04%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row120\" class=\"row_heading level0 row120\" >120</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row120_col0\" class=\"data row120 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row120_col1\" class=\"data row120 col1\" >18</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row120_col2\" class=\"data row120 col2\" >2305733</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row120_col3\" class=\"data row120 col3\" >2165744</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row120_col4\" class=\"data row120 col4\" >-139989</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row120_col5\" class=\"data row120 col5\" >-6.07%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row121\" class=\"row_heading level0 row121\" >121</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row121_col0\" class=\"data row121 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row121_col1\" class=\"data row121 col1\" >19</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row121_col2\" class=\"data row121 col2\" >2334906</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row121_col3\" class=\"data row121 col3\" >2221910</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row121_col4\" class=\"data row121 col4\" >-112996</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row121_col5\" class=\"data row121 col5\" >-4.84%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row122\" class=\"row_heading level0 row122\" >122</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row122_col0\" class=\"data row122 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row122_col1\" class=\"data row122 col1\" >20</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row122_col2\" class=\"data row122 col2\" >2331845</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row122_col3\" class=\"data row122 col3\" >2271216</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row122_col4\" class=\"data row122 col4\" >-60629</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row122_col5\" class=\"data row122 col5\" >-2.60%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row123\" class=\"row_heading level0 row123\" >123</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row123_col0\" class=\"data row123 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row123_col1\" class=\"data row123 col1\" >21</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row123_col2\" class=\"data row123 col2\" >2241083</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row123_col3\" class=\"data row123 col3\" >2312917</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row123_col4\" class=\"data row123 col4\" >71834</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row123_col5\" class=\"data row123 col5\" >3.21%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row124\" class=\"row_heading level0 row124\" >124</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row124_col0\" class=\"data row124 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row124_col1\" class=\"data row124 col1\" >22</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row124_col2\" class=\"data row124 col2\" >2188199</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row124_col3\" class=\"data row124 col3\" >2370459</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row124_col4\" class=\"data row124 col4\" >182260</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row124_col5\" class=\"data row124 col5\" >8.33%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row125\" class=\"row_heading level0 row125\" >125</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row125_col0\" class=\"data row125 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row125_col1\" class=\"data row125 col1\" >23</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row125_col2\" class=\"data row125 col2\" >2151068</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row125_col3\" class=\"data row125 col3\" >2402294</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row125_col4\" class=\"data row125 col4\" >251226</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row125_col5\" class=\"data row125 col5\" >11.68%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row126\" class=\"row_heading level0 row126\" >126</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row126_col0\" class=\"data row126 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row126_col1\" class=\"data row126 col1\" >24</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row126_col2\" class=\"data row126 col2\" >2161347</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row126_col3\" class=\"data row126 col3\" >2393037</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row126_col4\" class=\"data row126 col4\" >231690</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row126_col5\" class=\"data row126 col5\" >10.72%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row127\" class=\"row_heading level0 row127\" >127</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row127_col0\" class=\"data row127 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row127_col1\" class=\"data row127 col1\" >25</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row127_col2\" class=\"data row127 col2\" >2177131</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row127_col3\" class=\"data row127 col3\" >2296875</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row127_col4\" class=\"data row127 col4\" >119744</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row127_col5\" class=\"data row127 col5\" >5.50%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row128\" class=\"row_heading level0 row128\" >128</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row128_col0\" class=\"data row128 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row128_col1\" class=\"data row128 col1\" >26</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row128_col2\" class=\"data row128 col2\" >2102331</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row128_col3\" class=\"data row128 col3\" >2240881</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row128_col4\" class=\"data row128 col4\" >138550</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row128_col5\" class=\"data row128 col5\" >6.59%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row129\" class=\"row_heading level0 row129\" >129</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row129_col0\" class=\"data row129 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row129_col1\" class=\"data row129 col1\" >27</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row129_col2\" class=\"data row129 col2\" >2135178</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row129_col3\" class=\"data row129 col3\" >2201518</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row129_col4\" class=\"data row129 col4\" >66340</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row129_col5\" class=\"data row129 col5\" >3.11%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row130\" class=\"row_heading level0 row130\" >130</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row130_col0\" class=\"data row130 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row130_col1\" class=\"data row130 col1\" >28</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row130_col2\" class=\"data row130 col2\" >2134981</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row130_col3\" class=\"data row130 col3\" >2208749</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row130_col4\" class=\"data row130 col4\" >73768</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row130_col5\" class=\"data row130 col5\" >3.46%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row131\" class=\"row_heading level0 row131\" >131</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row131_col0\" class=\"data row131 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row131_col1\" class=\"data row131 col1\" >29</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row131_col2\" class=\"data row131 col2\" >2112313</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row131_col3\" class=\"data row131 col3\" >2219872</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row131_col4\" class=\"data row131 col4\" >107559</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row131_col5\" class=\"data row131 col5\" >5.09%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row132\" class=\"row_heading level0 row132\" >132</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row132_col0\" class=\"data row132 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row132_col1\" class=\"data row132 col1\" >30</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row132_col2\" class=\"data row132 col2\" >2167495</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row132_col3\" class=\"data row132 col3\" >2142240</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row132_col4\" class=\"data row132 col4\" >-25255</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row132_col5\" class=\"data row132 col5\" >-1.17%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row133\" class=\"row_heading level0 row133\" >133</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row133_col0\" class=\"data row133 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row133_col1\" class=\"data row133 col1\" >31</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row133_col2\" class=\"data row133 col2\" >2026439</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row133_col3\" class=\"data row133 col3\" >2171839</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row133_col4\" class=\"data row133 col4\" >145400</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row133_col5\" class=\"data row133 col5\" >7.18%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row134\" class=\"row_heading level0 row134\" >134</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row134_col0\" class=\"data row134 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row134_col1\" class=\"data row134 col1\" >32</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row134_col2\" class=\"data row134 col2\" >1986147</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row134_col3\" class=\"data row134 col3\" >2167557</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row134_col4\" class=\"data row134 col4\" >181410</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row134_col5\" class=\"data row134 col5\" >9.13%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row135\" class=\"row_heading level0 row135\" >135</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row135_col0\" class=\"data row135 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row135_col1\" class=\"data row135 col1\" >33</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row135_col2\" class=\"data row135 col2\" >1963645</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row135_col3\" class=\"data row135 col3\" >2141552</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row135_col4\" class=\"data row135 col4\" >177907</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row135_col5\" class=\"data row135 col5\" >9.06%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row136\" class=\"row_heading level0 row136\" >136</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row136_col0\" class=\"data row136 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row136_col1\" class=\"data row136 col1\" >34</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row136_col2\" class=\"data row136 col2\" >1908731</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row136_col3\" class=\"data row136 col3\" >2192877</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row136_col4\" class=\"data row136 col4\" >284146</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row136_col5\" class=\"data row136 col5\" >14.89%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row137\" class=\"row_heading level0 row137\" >137</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row137_col0\" class=\"data row137 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row137_col1\" class=\"data row137 col1\" >35</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row137_col2\" class=\"data row137 col2\" >1974636</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row137_col3\" class=\"data row137 col3\" >2047877</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row137_col4\" class=\"data row137 col4\" >73241</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row137_col5\" class=\"data row137 col5\" >3.71%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row138\" class=\"row_heading level0 row138\" >138</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row138_col0\" class=\"data row138 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row138_col1\" class=\"data row138 col1\" >36</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row138_col2\" class=\"data row138 col2\" >1907408</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row138_col3\" class=\"data row138 col3\" >2005880</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row138_col4\" class=\"data row138 col4\" >98472</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row138_col5\" class=\"data row138 col5\" >5.16%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row139\" class=\"row_heading level0 row139\" >139</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row139_col0\" class=\"data row139 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row139_col1\" class=\"data row139 col1\" >37</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row139_col2\" class=\"data row139 col2\" >1934537</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row139_col3\" class=\"data row139 col3\" >1979888</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row139_col4\" class=\"data row139 col4\" >45351</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row139_col5\" class=\"data row139 col5\" >2.34%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row140\" class=\"row_heading level0 row140\" >140</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row140_col0\" class=\"data row140 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row140_col1\" class=\"data row140 col1\" >38</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row140_col2\" class=\"data row140 col2\" >2028052</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row140_col3\" class=\"data row140 col3\" >1923133</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row140_col4\" class=\"data row140 col4\" >-104919</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row140_col5\" class=\"data row140 col5\" >-5.17%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row141\" class=\"row_heading level0 row141\" >141</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row141_col0\" class=\"data row141 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row141_col1\" class=\"data row141 col1\" >39</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row141_col2\" class=\"data row141 col2\" >2148718</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row141_col3\" class=\"data row141 col3\" >1986712</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row141_col4\" class=\"data row141 col4\" >-162006</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row141_col5\" class=\"data row141 col5\" >-7.54%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row142\" class=\"row_heading level0 row142\" >142</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row142_col0\" class=\"data row142 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row142_col1\" class=\"data row142 col1\" >40</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row142_col2\" class=\"data row142 col2\" >2189516</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row142_col3\" class=\"data row142 col3\" >1917201</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row142_col4\" class=\"data row142 col4\" >-272315</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row142_col5\" class=\"data row142 col5\" >-12.44%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row143\" class=\"row_heading level0 row143\" >143</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row143_col0\" class=\"data row143 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row143_col1\" class=\"data row143 col1\" >41</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row143_col2\" class=\"data row143 col2\" >2073902</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row143_col3\" class=\"data row143 col3\" >1941203</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row143_col4\" class=\"data row143 col4\" >-132699</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row143_col5\" class=\"data row143 col5\" >-6.40%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row144\" class=\"row_heading level0 row144\" >144</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row144_col0\" class=\"data row144 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row144_col1\" class=\"data row144 col1\" >42</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row144_col2\" class=\"data row144 col2\" >2031782</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row144_col3\" class=\"data row144 col3\" >2032207</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row144_col4\" class=\"data row144 col4\" >425</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row144_col5\" class=\"data row144 col5\" >0.02%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row145\" class=\"row_heading level0 row145\" >145</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row145_col0\" class=\"data row145 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row145_col1\" class=\"data row145 col1\" >43</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row145_col2\" class=\"data row145 col2\" >2030982</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row145_col3\" class=\"data row145 col3\" >2147960</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row145_col4\" class=\"data row145 col4\" >116978</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row145_col5\" class=\"data row145 col5\" >5.76%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row146\" class=\"row_heading level0 row146\" >146</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row146_col0\" class=\"data row146 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row146_col1\" class=\"data row146 col1\" >44</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row146_col2\" class=\"data row146 col2\" >2074572</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row146_col3\" class=\"data row146 col3\" >2184448</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row146_col4\" class=\"data row146 col4\" >109876</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row146_col5\" class=\"data row146 col5\" >5.30%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row147\" class=\"row_heading level0 row147\" >147</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row147_col0\" class=\"data row147 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row147_col1\" class=\"data row147 col1\" >45</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row147_col2\" class=\"data row147 col2\" >2201905</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row147_col3\" class=\"data row147 col3\" >2067426</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row147_col4\" class=\"data row147 col4\" >-134479</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row147_col5\" class=\"data row147 col5\" >-6.11%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row148\" class=\"row_heading level0 row148\" >148</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row148_col0\" class=\"data row148 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row148_col1\" class=\"data row148 col1\" >46</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row148_col2\" class=\"data row148 col2\" >2238774</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row148_col3\" class=\"data row148 col3\" >2023033</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row148_col4\" class=\"data row148 col4\" >-215741</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row148_col5\" class=\"data row148 col5\" >-9.64%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row149\" class=\"row_heading level0 row149\" >149</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row149_col0\" class=\"data row149 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row149_col1\" class=\"data row149 col1\" >47</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row149_col2\" class=\"data row149 col2\" >2237940</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row149_col3\" class=\"data row149 col3\" >2019517</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row149_col4\" class=\"data row149 col4\" >-218423</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row149_col5\" class=\"data row149 col5\" >-9.76%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row150\" class=\"row_heading level0 row150\" >150</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row150_col0\" class=\"data row150 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row150_col1\" class=\"data row150 col1\" >48</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row150_col2\" class=\"data row150 col2\" >2235296</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row150_col3\" class=\"data row150 col3\" >2058392</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row150_col4\" class=\"data row150 col4\" >-176904</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row150_col5\" class=\"data row150 col5\" >-7.91%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row151\" class=\"row_heading level0 row151\" >151</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row151_col0\" class=\"data row151 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row151_col1\" class=\"data row151 col1\" >49</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row151_col2\" class=\"data row151 col2\" >2262458</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row151_col3\" class=\"data row151 col3\" >2180214</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row151_col4\" class=\"data row151 col4\" >-82244</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row151_col5\" class=\"data row151 col5\" >-3.64%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row152\" class=\"row_heading level0 row152\" >152</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row152_col0\" class=\"data row152 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row152_col1\" class=\"data row152 col1\" >50</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row152_col2\" class=\"data row152 col2\" >2290862</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row152_col3\" class=\"data row152 col3\" >2211767</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row152_col4\" class=\"data row152 col4\" >-79095</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row152_col5\" class=\"data row152 col5\" >-3.45%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row153\" class=\"row_heading level0 row153\" >153</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row153_col0\" class=\"data row153 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row153_col1\" class=\"data row153 col1\" >51</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row153_col2\" class=\"data row153 col2\" >2209780</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row153_col3\" class=\"data row153 col3\" >2205399</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row153_col4\" class=\"data row153 col4\" >-4381</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row153_col5\" class=\"data row153 col5\" >-0.20%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row154\" class=\"row_heading level0 row154\" >154</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row154_col0\" class=\"data row154 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row154_col1\" class=\"data row154 col1\" >52</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row154_col2\" class=\"data row154 col2\" >2197161</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row154_col3\" class=\"data row154 col3\" >2197801</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row154_col4\" class=\"data row154 col4\" >640</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row154_col5\" class=\"data row154 col5\" >0.03%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row155\" class=\"row_heading level0 row155\" >155</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row155_col0\" class=\"data row155 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row155_col1\" class=\"data row155 col1\" >53</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row155_col2\" class=\"data row155 col2\" >2170923</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row155_col3\" class=\"data row155 col3\" >2219328</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row155_col4\" class=\"data row155 col4\" >48405</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row155_col5\" class=\"data row155 col5\" >2.23%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row156\" class=\"row_heading level0 row156\" >156</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row156_col0\" class=\"data row156 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row156_col1\" class=\"data row156 col1\" >54</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row156_col2\" class=\"data row156 col2\" >2091640</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row156_col3\" class=\"data row156 col3\" >2242757</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row156_col4\" class=\"data row156 col4\" >151117</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row156_col5\" class=\"data row156 col5\" >7.22%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row157\" class=\"row_heading level0 row157\" >157</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row157_col0\" class=\"data row157 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row157_col1\" class=\"data row157 col1\" >55</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row157_col2\" class=\"data row157 col2\" >2075199</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row157_col3\" class=\"data row157 col3\" >2158427</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row157_col4\" class=\"data row157 col4\" >83228</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row157_col5\" class=\"data row157 col5\" >4.01%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row158\" class=\"row_heading level0 row158\" >158</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row158_col0\" class=\"data row158 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row158_col1\" class=\"data row158 col1\" >56</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row158_col2\" class=\"data row158 col2\" >1984452</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row158_col3\" class=\"data row158 col3\" >2140940</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row158_col4\" class=\"data row158 col4\" >156488</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row158_col5\" class=\"data row158 col5\" >7.89%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row159\" class=\"row_heading level0 row159\" >159</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row159_col0\" class=\"data row159 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row159_col1\" class=\"data row159 col1\" >57</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row159_col2\" class=\"data row159 col2\" >1909997</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row159_col3\" class=\"data row159 col3\" >2109804</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row159_col4\" class=\"data row159 col4\" >199807</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row159_col5\" class=\"data row159 col5\" >10.46%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row160\" class=\"row_heading level0 row160\" >160</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row160_col0\" class=\"data row160 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row160_col1\" class=\"data row160 col1\" >58</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row160_col2\" class=\"data row160 col2\" >1838680</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row160_col3\" class=\"data row160 col3\" >2027452</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row160_col4\" class=\"data row160 col4\" >188772</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row160_col5\" class=\"data row160 col5\" >10.27%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row161\" class=\"row_heading level0 row161\" >161</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row161_col0\" class=\"data row161 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row161_col1\" class=\"data row161 col1\" >59</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row161_col2\" class=\"data row161 col2\" >1779480</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row161_col3\" class=\"data row161 col3\" >2006587</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row161_col4\" class=\"data row161 col4\" >227107</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row161_col5\" class=\"data row161 col5\" >12.76%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row162\" class=\"row_heading level0 row162\" >162</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row162_col0\" class=\"data row162 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row162_col1\" class=\"data row162 col1\" >60</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row162_col2\" class=\"data row162 col2\" >1742220</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row162_col3\" class=\"data row162 col3\" >1913729</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row162_col4\" class=\"data row162 col4\" >171509</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row162_col5\" class=\"data row162 col5\" >9.84%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row163\" class=\"row_heading level0 row163\" >163</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row163_col0\" class=\"data row163 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row163_col1\" class=\"data row163 col1\" >61</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row163_col2\" class=\"data row163 col2\" >1691401</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row163_col3\" class=\"data row163 col3\" >1836656</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row163_col4\" class=\"data row163 col4\" >145255</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row163_col5\" class=\"data row163 col5\" >8.59%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row164\" class=\"row_heading level0 row164\" >164</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row164_col0\" class=\"data row164 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row164_col1\" class=\"data row164 col1\" >62</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row164_col2\" class=\"data row164 col2\" >1679060</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row164_col3\" class=\"data row164 col3\" >1762880</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row164_col4\" class=\"data row164 col4\" >83820</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row164_col5\" class=\"data row164 col5\" >4.99%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row165\" class=\"row_heading level0 row165\" >165</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row165_col0\" class=\"data row165 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row165_col1\" class=\"data row165 col1\" >63</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row165_col2\" class=\"data row165 col2\" >1753903</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row165_col3\" class=\"data row165 col3\" >1701014</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row165_col4\" class=\"data row165 col4\" >-52889</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row165_col5\" class=\"data row165 col5\" >-3.02%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row166\" class=\"row_heading level0 row166\" >166</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row166_col0\" class=\"data row166 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row166_col1\" class=\"data row166 col1\" >64</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row166_col2\" class=\"data row166 col2\" >1291833</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row166_col3\" class=\"data row166 col3\" >1660815</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row166_col4\" class=\"data row166 col4\" >368982</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row166_col5\" class=\"data row166 col5\" >28.56%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row167\" class=\"row_heading level0 row167\" >167</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row167_col0\" class=\"data row167 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row167_col1\" class=\"data row167 col1\" >65</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row167_col2\" class=\"data row167 col2\" >1272686</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row167_col3\" class=\"data row167 col3\" >1606772</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row167_col4\" class=\"data row167 col4\" >334086</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row167_col5\" class=\"data row167 col5\" >26.25%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row168\" class=\"row_heading level0 row168\" >168</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row168_col0\" class=\"data row168 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row168_col1\" class=\"data row168 col1\" >66</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row168_col2\" class=\"data row168 col2\" >1239794</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row168_col3\" class=\"data row168 col3\" >1588723</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row168_col4\" class=\"data row168 col4\" >348929</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row168_col5\" class=\"data row168 col5\" >28.14%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row169\" class=\"row_heading level0 row169\" >169</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row169_col0\" class=\"data row169 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row169_col1\" class=\"data row169 col1\" >67</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row169_col2\" class=\"data row169 col2\" >1270145</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row169_col3\" class=\"data row169 col3\" >1652998</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row169_col4\" class=\"data row169 col4\" >382853</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row169_col5\" class=\"data row169 col5\" >30.14%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row170\" class=\"row_heading level0 row170\" >170</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row170_col0\" class=\"data row170 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row170_col1\" class=\"data row170 col1\" >68</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row170_col2\" class=\"data row170 col2\" >1105699</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row170_col3\" class=\"data row170 col3\" >1211278</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row170_col4\" class=\"data row170 col4\" >105579</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row170_col5\" class=\"data row170 col5\" >9.55%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row171\" class=\"row_heading level0 row171\" >171</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row171_col0\" class=\"data row171 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row171_col1\" class=\"data row171 col1\" >69</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row171_col2\" class=\"data row171 col2\" >1006782</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row171_col3\" class=\"data row171 col3\" >1186872</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row171_col4\" class=\"data row171 col4\" >180090</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row171_col5\" class=\"data row171 col5\" >17.89%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row172\" class=\"row_heading level0 row172\" >172</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row172_col0\" class=\"data row172 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row172_col1\" class=\"data row172 col1\" >70</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row172_col2\" class=\"data row172 col2\" >954073</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row172_col3\" class=\"data row172 col3\" >1148508</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row172_col4\" class=\"data row172 col4\" >194435</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row172_col5\" class=\"data row172 col5\" >20.38%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row173\" class=\"row_heading level0 row173\" >173</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row173_col0\" class=\"data row173 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row173_col1\" class=\"data row173 col1\" >71</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row173_col2\" class=\"data row173 col2\" >903258</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row173_col3\" class=\"data row173 col3\" >1169115</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row173_col4\" class=\"data row173 col4\" >265857</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row173_col5\" class=\"data row173 col5\" >29.43%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row174\" class=\"row_heading level0 row174\" >174</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row174_col0\" class=\"data row174 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row174_col1\" class=\"data row174 col1\" >72</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row174_col2\" class=\"data row174 col2\" >862529</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row174_col3\" class=\"data row174 col3\" >1010582</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row174_col4\" class=\"data row174 col4\" >148053</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row174_col5\" class=\"data row174 col5\" >17.16%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row175\" class=\"row_heading level0 row175\" >175</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row175_col0\" class=\"data row175 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row175_col1\" class=\"data row175 col1\" >73</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row175_col2\" class=\"data row175 col2\" >794646</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row175_col3\" class=\"data row175 col3\" >912673</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row175_col4\" class=\"data row175 col4\" >118027</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row175_col5\" class=\"data row175 col5\" >14.85%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row176\" class=\"row_heading level0 row176\" >176</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row176_col0\" class=\"data row176 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row176_col1\" class=\"data row176 col1\" >74</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row176_col2\" class=\"data row176 col2\" >758830</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row176_col3\" class=\"data row176 col3\" >856970</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row176_col4\" class=\"data row176 col4\" >98140</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row176_col5\" class=\"data row176 col5\" >12.93%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row177\" class=\"row_heading level0 row177\" >177</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row177_col0\" class=\"data row177 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row177_col1\" class=\"data row177 col1\" >75</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row177_col2\" class=\"data row177 col2\" >725663</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row177_col3\" class=\"data row177 col3\" >802960</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row177_col4\" class=\"data row177 col4\" >77297</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row177_col5\" class=\"data row177 col5\" >10.65%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row178\" class=\"row_heading level0 row178\" >178</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row178_col0\" class=\"data row178 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row178_col1\" class=\"data row178 col1\" >76</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row178_col2\" class=\"data row178 col2\" >653551</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row178_col3\" class=\"data row178 col3\" >757841</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row178_col4\" class=\"data row178 col4\" >104290</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row178_col5\" class=\"data row178 col5\" >15.96%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row179\" class=\"row_heading level0 row179\" >179</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row179_col0\" class=\"data row179 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row179_col1\" class=\"data row179 col1\" >77</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row179_col2\" class=\"data row179 col2\" >630867</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row179_col3\" class=\"data row179 col3\" >689162</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row179_col4\" class=\"data row179 col4\" >58295</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row179_col5\" class=\"data row179 col5\" >9.24%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row180\" class=\"row_heading level0 row180\" >180</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row180_col0\" class=\"data row180 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row180_col1\" class=\"data row180 col1\" >78</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row180_col2\" class=\"data row180 col2\" >602774</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row180_col3\" class=\"data row180 col3\" >648696</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row180_col4\" class=\"data row180 col4\" >45922</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row180_col5\" class=\"data row180 col5\" >7.62%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row181\" class=\"row_heading level0 row181\" >181</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row181_col0\" class=\"data row181 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row181_col1\" class=\"data row181 col1\" >79</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row181_col2\" class=\"data row181 col2\" >573885</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row181_col3\" class=\"data row181 col3\" >610115</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row181_col4\" class=\"data row181 col4\" >36230</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row181_col5\" class=\"data row181 col5\" >6.31%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row182\" class=\"row_heading level0 row182\" >182</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row182_col0\" class=\"data row182 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row182_col1\" class=\"data row182 col1\" >80</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row182_col2\" class=\"data row182 col2\" >549216</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row182_col3\" class=\"data row182 col3\" >539227</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row182_col4\" class=\"data row182 col4\" >-9989</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row182_col5\" class=\"data row182 col5\" >-1.82%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row183\" class=\"row_heading level0 row183\" >183</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row183_col0\" class=\"data row183 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row183_col1\" class=\"data row183 col1\" >81</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row183_col2\" class=\"data row183 col2\" >496070</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row183_col3\" class=\"data row183 col3\" >510305</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row183_col4\" class=\"data row183 col4\" >14235</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row183_col5\" class=\"data row183 col5\" >2.87%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row184\" class=\"row_heading level0 row184\" >184</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row184_col0\" class=\"data row184 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row184_col1\" class=\"data row184 col1\" >82</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row184_col2\" class=\"data row184 col2\" >462807</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row184_col3\" class=\"data row184 col3\" >476034</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row184_col4\" class=\"data row184 col4\" >13227</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row184_col5\" class=\"data row184 col5\" >2.86%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row185\" class=\"row_heading level0 row185\" >185</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row185_col0\" class=\"data row185 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row185_col1\" class=\"data row185 col1\" >83</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row185_col2\" class=\"data row185 col2\" >422999</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row185_col3\" class=\"data row185 col3\" >441530</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row185_col4\" class=\"data row185 col4\" >18531</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row185_col5\" class=\"data row185 col5\" >4.38%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row186\" class=\"row_heading level0 row186\" >186</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row186_col0\" class=\"data row186 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row186_col1\" class=\"data row186 col1\" >84</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row186_col2\" class=\"data row186 col2\" >375685</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row186_col3\" class=\"data row186 col3\" >410385</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row186_col4\" class=\"data row186 col4\" >34700</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row186_col5\" class=\"data row186 col5\" >9.24%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row187\" class=\"row_heading level0 row187\" >187</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row187_col0\" class=\"data row187 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row187_col1\" class=\"data row187 col1\" >85</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row187_col2\" class=\"data row187 col2\" >337661</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row187_col3\" class=\"data row187 col3\" >358342</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row187_col4\" class=\"data row187 col4\" >20681</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row187_col5\" class=\"data row187 col5\" >6.12%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row188\" class=\"row_heading level0 row188\" >188</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row188_col0\" class=\"data row188 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row188_col1\" class=\"data row188 col1\" >86</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row188_col2\" class=\"data row188 col2\" >295396</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row188_col3\" class=\"data row188 col3\" >322043</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row188_col4\" class=\"data row188 col4\" >26647</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row188_col5\" class=\"data row188 col5\" >9.02%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row189\" class=\"row_heading level0 row189\" >189</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row189_col0\" class=\"data row189 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row189_col1\" class=\"data row189 col1\" >87</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row189_col2\" class=\"data row189 col2\" >253621</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row189_col3\" class=\"data row189 col3\" >282423</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row189_col4\" class=\"data row189 col4\" >28802</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row189_col5\" class=\"data row189 col5\" >11.36%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row190\" class=\"row_heading level0 row190\" >190</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row190_col0\" class=\"data row190 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row190_col1\" class=\"data row190 col1\" >88</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row190_col2\" class=\"data row190 col2\" >216220</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row190_col3\" class=\"data row190 col3\" >239455</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row190_col4\" class=\"data row190 col4\" >23235</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row190_col5\" class=\"data row190 col5\" >10.75%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row191\" class=\"row_heading level0 row191\" >191</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row191_col0\" class=\"data row191 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row191_col1\" class=\"data row191 col1\" >89</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row191_col2\" class=\"data row191 col2\" >180461</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row191_col3\" class=\"data row191 col3\" >204850</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row191_col4\" class=\"data row191 col4\" >24389</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row191_col5\" class=\"data row191 col5\" >13.51%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row192\" class=\"row_heading level0 row192\" >192</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row192_col0\" class=\"data row192 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row192_col1\" class=\"data row192 col1\" >90</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row192_col2\" class=\"data row192 col2\" >141399</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row192_col3\" class=\"data row192 col3\" >169644</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row192_col4\" class=\"data row192 col4\" >28245</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row192_col5\" class=\"data row192 col5\" >19.98%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row193\" class=\"row_heading level0 row193\" >193</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row193_col0\" class=\"data row193 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row193_col1\" class=\"data row193 col1\" >91</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row193_col2\" class=\"data row193 col2\" >104291</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row193_col3\" class=\"data row193 col3\" >137425</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row193_col4\" class=\"data row193 col4\" >33134</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row193_col5\" class=\"data row193 col5\" >31.77%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row194\" class=\"row_heading level0 row194\" >194</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row194_col0\" class=\"data row194 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row194_col1\" class=\"data row194 col1\" >92</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row194_col2\" class=\"data row194 col2\" >83462</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row194_col3\" class=\"data row194 col3\" >109264</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row194_col4\" class=\"data row194 col4\" >25802</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row194_col5\" class=\"data row194 col5\" >30.91%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row195\" class=\"row_heading level0 row195\" >195</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row195_col0\" class=\"data row195 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row195_col1\" class=\"data row195 col1\" >93</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row195_col2\" class=\"data row195 col2\" >60182</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row195_col3\" class=\"data row195 col3\" >85459</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row195_col4\" class=\"data row195 col4\" >25277</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row195_col5\" class=\"data row195 col5\" >42.00%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row196\" class=\"row_heading level0 row196\" >196</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row196_col0\" class=\"data row196 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row196_col1\" class=\"data row196 col1\" >94</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row196_col2\" class=\"data row196 col2\" >43827</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row196_col3\" class=\"data row196 col3\" >61691</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row196_col4\" class=\"data row196 col4\" >17864</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row196_col5\" class=\"data row196 col5\" >40.76%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row197\" class=\"row_heading level0 row197\" >197</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row197_col0\" class=\"data row197 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row197_col1\" class=\"data row197 col1\" >95</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row197_col2\" class=\"data row197 col2\" >31736</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row197_col3\" class=\"data row197 col3\" >42556</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row197_col4\" class=\"data row197 col4\" >10820</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row197_col5\" class=\"data row197 col5\" >34.09%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row198\" class=\"row_heading level0 row198\" >198</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row198_col0\" class=\"data row198 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row198_col1\" class=\"data row198 col1\" >96</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row198_col2\" class=\"data row198 col2\" >22022</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row198_col3\" class=\"data row198 col3\" >31053</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row198_col4\" class=\"data row198 col4\" >9031</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row198_col5\" class=\"data row198 col5\" >41.01%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row199\" class=\"row_heading level0 row199\" >199</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row199_col0\" class=\"data row199 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row199_col1\" class=\"data row199 col1\" >97</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row199_col2\" class=\"data row199 col2\" >14775</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row199_col3\" class=\"data row199 col3\" >20310</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row199_col4\" class=\"data row199 col4\" >5535</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row199_col5\" class=\"data row199 col5\" >37.46%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row200\" class=\"row_heading level0 row200\" >200</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row200_col0\" class=\"data row200 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row200_col1\" class=\"data row200 col1\" >98</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row200_col2\" class=\"data row200 col2\" >9505</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row200_col3\" class=\"data row200 col3\" >13518</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row200_col4\" class=\"data row200 col4\" >4013</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row200_col5\" class=\"data row200 col5\" >42.22%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row201\" class=\"row_heading level0 row201\" >201</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row201_col0\" class=\"data row201 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row201_col1\" class=\"data row201 col1\" >99</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row201_col2\" class=\"data row201 col2\" >6104</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row201_col3\" class=\"data row201 col3\" >8951</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row201_col4\" class=\"data row201 col4\" >2847</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row201_col5\" class=\"data row201 col5\" >46.64%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row202\" class=\"row_heading level0 row202\" >202</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row202_col0\" class=\"data row202 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row202_col1\" class=\"data row202 col1\" >100</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row202_col2\" class=\"data row202 col2\" >9352</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row202_col3\" class=\"data row202 col3\" >13618</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row202_col4\" class=\"data row202 col4\" >4266</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row202_col5\" class=\"data row202 col5\" >45.62%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row203\" class=\"row_heading level0 row203\" >203</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row203_col0\" class=\"data row203 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row203_col1\" class=\"data row203 col1\" >999</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row203_col2\" class=\"data row203 col2\" >152088043</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row203_col3\" class=\"data row203 col3\" >156955337</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row203_col4\" class=\"data row203 col4\" >4867294</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row203_col5\" class=\"data row203 col5\" >3.20%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row204\" class=\"row_heading level0 row204\" >204</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row204_col0\" class=\"data row204 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row204_col1\" class=\"data row204 col1\" >0</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row204_col2\" class=\"data row204 col2\" >1932910</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row204_col3\" class=\"data row204 col3\" >1929449</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row204_col4\" class=\"data row204 col4\" >-3461</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row204_col5\" class=\"data row204 col5\" >-0.18%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row205\" class=\"row_heading level0 row205\" >205</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row205_col0\" class=\"data row205 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row205_col1\" class=\"data row205 col1\" >1</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row205_col2\" class=\"data row205 col2\" >1937556</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row205_col3\" class=\"data row205 col3\" >1931375</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row205_col4\" class=\"data row205 col4\" >-6181</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row205_col5\" class=\"data row205 col5\" >-0.32%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row206\" class=\"row_heading level0 row206\" >206</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row206_col0\" class=\"data row206 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row206_col1\" class=\"data row206 col1\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row206_col2\" class=\"data row206 col2\" >2002177</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row206_col3\" class=\"data row206 col3\" >1935991</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row206_col4\" class=\"data row206 col4\" >-66186</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row206_col5\" class=\"data row206 col5\" >-3.31%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row207\" class=\"row_heading level0 row207\" >207</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row207_col0\" class=\"data row207 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row207_col1\" class=\"data row207 col1\" >3</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row207_col2\" class=\"data row207 col2\" >2010648</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row207_col3\" class=\"data row207 col3\" >1957483</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row207_col4\" class=\"data row207 col4\" >-53165</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row207_col5\" class=\"data row207 col5\" >-2.64%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row208\" class=\"row_heading level0 row208\" >208</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row208_col0\" class=\"data row208 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row208_col1\" class=\"data row208 col1\" >4</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row208_col2\" class=\"data row208 col2\" >1993239</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row208_col3\" class=\"data row208 col3\" >1961199</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row208_col4\" class=\"data row208 col4\" >-32040</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row208_col5\" class=\"data row208 col5\" >-1.61%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row209\" class=\"row_heading level0 row209\" >209</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row209_col0\" class=\"data row209 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row209_col1\" class=\"data row209 col1\" >5</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row209_col2\" class=\"data row209 col2\" >1988080</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row209_col3\" class=\"data row209 col3\" >1962561</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row209_col4\" class=\"data row209 col4\" >-25519</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row209_col5\" class=\"data row209 col5\" >-1.28%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row210\" class=\"row_heading level0 row210\" >210</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row210_col0\" class=\"data row210 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row210_col1\" class=\"data row210 col1\" >6</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row210_col2\" class=\"data row210 col2\" >1993603</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row210_col3\" class=\"data row210 col3\" >2024870</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row210_col4\" class=\"data row210 col4\" >31267</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row210_col5\" class=\"data row210 col5\" >1.57%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row211\" class=\"row_heading level0 row211\" >211</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row211_col0\" class=\"data row211 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row211_col1\" class=\"data row211 col1\" >7</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row211_col2\" class=\"data row211 col2\" >1979907</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row211_col3\" class=\"data row211 col3\" >2032494</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row211_col4\" class=\"data row211 col4\" >52587</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row211_col5\" class=\"data row211 col5\" >2.66%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row212\" class=\"row_heading level0 row212\" >212</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row212_col0\" class=\"data row212 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row212_col1\" class=\"data row212 col1\" >8</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row212_col2\" class=\"data row212 col2\" >1971142</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row212_col3\" class=\"data row212 col3\" >2015285</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row212_col4\" class=\"data row212 col4\" >44143</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row212_col5\" class=\"data row212 col5\" >2.24%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row213\" class=\"row_heading level0 row213\" >213</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row213_col0\" class=\"data row213 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row213_col1\" class=\"data row213 col1\" >9</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row213_col2\" class=\"data row213 col2\" >2018378</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row213_col3\" class=\"data row213 col3\" >2010659</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row213_col4\" class=\"data row213 col4\" >-7719</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row213_col5\" class=\"data row213 col5\" >-0.38%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row214\" class=\"row_heading level0 row214\" >214</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row214_col0\" class=\"data row214 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row214_col1\" class=\"data row214 col1\" >10</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row214_col2\" class=\"data row214 col2\" >2044895</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row214_col3\" class=\"data row214 col3\" >2016680</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row214_col4\" class=\"data row214 col4\" >-28215</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row214_col5\" class=\"data row214 col5\" >-1.38%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row215\" class=\"row_heading level0 row215\" >215</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row215_col0\" class=\"data row215 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row215_col1\" class=\"data row215 col1\" >11</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row215_col2\" class=\"data row215 col2\" >2010714</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row215_col3\" class=\"data row215 col3\" >2003233</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row215_col4\" class=\"data row215 col4\" >-7481</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row215_col5\" class=\"data row215 col5\" >-0.37%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row216\" class=\"row_heading level0 row216\" >216</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row216_col0\" class=\"data row216 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row216_col1\" class=\"data row216 col1\" >12</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row216_col2\" class=\"data row216 col2\" >2009630</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row216_col3\" class=\"data row216 col3\" >1994846</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row216_col4\" class=\"data row216 col4\" >-14784</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row216_col5\" class=\"data row216 col5\" >-0.74%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row217\" class=\"row_heading level0 row217\" >217</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row217_col0\" class=\"data row217 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row217_col1\" class=\"data row217 col1\" >13</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row217_col2\" class=\"data row217 col2\" >2014717</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row217_col3\" class=\"data row217 col3\" >2042116</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row217_col4\" class=\"data row217 col4\" >27399</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row217_col5\" class=\"data row217 col5\" >1.36%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row218\" class=\"row_heading level0 row218\" >218</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row218_col0\" class=\"data row218 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row218_col1\" class=\"data row218 col1\" >14</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row218_col2\" class=\"data row218 col2\" >2022701</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row218_col3\" class=\"data row218 col3\" >2068915</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row218_col4\" class=\"data row218 col4\" >46214</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row218_col5\" class=\"data row218 col5\" >2.28%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row219\" class=\"row_heading level0 row219\" >219</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row219_col0\" class=\"data row219 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row219_col1\" class=\"data row219 col1\" >15</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row219_col2\" class=\"data row219 col2\" >2060560</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row219_col3\" class=\"data row219 col3\" >2035734</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row219_col4\" class=\"data row219 col4\" >-24826</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row219_col5\" class=\"data row219 col5\" >-1.20%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row220\" class=\"row_heading level0 row220\" >220</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row220_col0\" class=\"data row220 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row220_col1\" class=\"data row220 col1\" >16</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row220_col2\" class=\"data row220 col2\" >2098220</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row220_col3\" class=\"data row220 col3\" >2037134</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row220_col4\" class=\"data row220 col4\" >-61086</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row220_col5\" class=\"data row220 col5\" >-2.91%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row221\" class=\"row_heading level0 row221\" >221</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row221_col0\" class=\"data row221 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row221_col1\" class=\"data row221 col1\" >17</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row221_col2\" class=\"data row221 col2\" >2123529</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row221_col3\" class=\"data row221 col3\" >2047152</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row221_col4\" class=\"data row221 col4\" >-76377</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row221_col5\" class=\"data row221 col5\" >-3.60%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row222\" class=\"row_heading level0 row222\" >222</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row222_col0\" class=\"data row222 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row222_col1\" class=\"data row222 col1\" >18</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row222_col2\" class=\"data row222 col2\" >2185272</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row222_col3\" class=\"data row222 col3\" >2062176</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row222_col4\" class=\"data row222 col4\" >-123096</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row222_col5\" class=\"data row222 col5\" >-5.63%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row223\" class=\"row_heading level0 row223\" >223</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row223_col0\" class=\"data row223 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row223_col1\" class=\"data row223 col1\" >19</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row223_col2\" class=\"data row223 col2\" >2236505</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row223_col3\" class=\"data row223 col3\" >2107128</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row223_col4\" class=\"data row223 col4\" >-129377</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row223_col5\" class=\"data row223 col5\" >-5.78%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row224\" class=\"row_heading level0 row224\" >224</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row224_col0\" class=\"data row224 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row224_col1\" class=\"data row224 col1\" >20</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row224_col2\" class=\"data row224 col2\" >2236672</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row224_col3\" class=\"data row224 col3\" >2150114</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row224_col4\" class=\"data row224 col4\" >-86558</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row224_col5\" class=\"data row224 col5\" >-3.87%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row225\" class=\"row_heading level0 row225\" >225</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row225_col0\" class=\"data row225 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row225_col1\" class=\"data row225 col1\" >21</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row225_col2\" class=\"data row225 col2\" >2146873</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row225_col3\" class=\"data row225 col3\" >2179456</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row225_col4\" class=\"data row225 col4\" >32583</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row225_col5\" class=\"data row225 col5\" >1.52%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row226\" class=\"row_heading level0 row226\" >226</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row226_col0\" class=\"data row226 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row226_col1\" class=\"data row226 col1\" >22</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row226_col2\" class=\"data row226 col2\" >2098806</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row226_col3\" class=\"data row226 col3\" >2245270</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row226_col4\" class=\"data row226 col4\" >146464</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row226_col5\" class=\"data row226 col5\" >6.98%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row227\" class=\"row_heading level0 row227\" >227</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row227_col0\" class=\"data row227 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row227_col1\" class=\"data row227 col1\" >23</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row227_col2\" class=\"data row227 col2\" >2066160</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row227_col3\" class=\"data row227 col3\" >2299862</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row227_col4\" class=\"data row227 col4\" >233702</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row227_col5\" class=\"data row227 col5\" >11.31%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row228\" class=\"row_heading level0 row228\" >228</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row228_col0\" class=\"data row228 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row228_col1\" class=\"data row228 col1\" >24</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row228_col2\" class=\"data row228 col2\" >2082255</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row228_col3\" class=\"data row228 col3\" >2302374</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row228_col4\" class=\"data row228 col4\" >220119</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row228_col5\" class=\"data row228 col5\" >10.57%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row229\" class=\"row_heading level0 row229\" >229</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row229_col0\" class=\"data row229 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row229_col1\" class=\"data row229 col1\" >25</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row229_col2\" class=\"data row229 col2\" >2112297</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row229_col3\" class=\"data row229 col3\" >2214495</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row229_col4\" class=\"data row229 col4\" >102198</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row229_col5\" class=\"data row229 col5\" >4.84%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row230\" class=\"row_heading level0 row230\" >230</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row230_col0\" class=\"data row230 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row230_col1\" class=\"data row230 col1\" >26</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row230_col2\" class=\"data row230 col2\" >2058475</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row230_col3\" class=\"data row230 col3\" >2167162</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row230_col4\" class=\"data row230 col4\" >108687</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row230_col5\" class=\"data row230 col5\" >5.28%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row231\" class=\"row_heading level0 row231\" >231</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row231_col0\" class=\"data row231 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row231_col1\" class=\"data row231 col1\" >27</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row231_col2\" class=\"data row231 col2\" >2101848</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row231_col3\" class=\"data row231 col3\" >2133288</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row231_col4\" class=\"data row231 col4\" >31440</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row231_col5\" class=\"data row231 col5\" >1.50%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row232\" class=\"row_heading level0 row232\" >232</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row232_col0\" class=\"data row232 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row232_col1\" class=\"data row232 col1\" >28</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row232_col2\" class=\"data row232 col2\" >2112560</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row232_col3\" class=\"data row232 col3\" >2146491</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row232_col4\" class=\"data row232 col4\" >33931</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row232_col5\" class=\"data row232 col5\" >1.61%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row233\" class=\"row_heading level0 row233\" >233</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row233_col0\" class=\"data row233 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row233_col1\" class=\"data row233 col1\" >29</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row233_col2\" class=\"data row233 col2\" >2097973</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row233_col3\" class=\"data row233 col3\" >2171916</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row233_col4\" class=\"data row233 col4\" >73943</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row233_col5\" class=\"data row233 col5\" >3.52%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row234\" class=\"row_heading level0 row234\" >234</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row234_col0\" class=\"data row234 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row234_col1\" class=\"data row234 col1\" >30</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row234_col2\" class=\"data row234 col2\" >2136744</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row234_col3\" class=\"data row234 col3\" >2113094</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row234_col4\" class=\"data row234 col4\" >-23650</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row234_col5\" class=\"data row234 col5\" >-1.11%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row235\" class=\"row_heading level0 row235\" >235</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row235_col0\" class=\"data row235 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row235_col1\" class=\"data row235 col1\" >31</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row235_col2\" class=\"data row235 col2\" >2016077</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row235_col3\" class=\"data row235 col3\" >2151378</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row235_col4\" class=\"data row235 col4\" >135301</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row235_col5\" class=\"data row235 col5\" >6.71%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row236\" class=\"row_heading level0 row236\" >236</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row236_col0\" class=\"data row236 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row236_col1\" class=\"data row236 col1\" >32</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row236_col2\" class=\"data row236 col2\" >1981455</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row236_col3\" class=\"data row236 col3\" >2156394</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row236_col4\" class=\"data row236 col4\" >174939</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row236_col5\" class=\"data row236 col5\" >8.83%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row237\" class=\"row_heading level0 row237\" >237</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row237_col0\" class=\"data row237 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row237_col1\" class=\"data row237 col1\" >33</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row237_col2\" class=\"data row237 col2\" >1969936</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row237_col3\" class=\"data row237 col3\" >2137112</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row237_col4\" class=\"data row237 col4\" >167176</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row237_col5\" class=\"data row237 col5\" >8.49%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row238\" class=\"row_heading level0 row238\" >238</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row238_col0\" class=\"data row238 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row238_col1\" class=\"data row238 col1\" >34</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row238_col2\" class=\"data row238 col2\" >1913458</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row238_col3\" class=\"data row238 col3\" >2171871</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row238_col4\" class=\"data row238 col4\" >258413</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row238_col5\" class=\"data row238 col5\" >13.51%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row239\" class=\"row_heading level0 row239\" >239</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row239_col0\" class=\"data row239 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row239_col1\" class=\"data row239 col1\" >35</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row239_col2\" class=\"data row239 col2\" >1973699</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row239_col3\" class=\"data row239 col3\" >2047905</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row239_col4\" class=\"data row239 col4\" >74206</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row239_col5\" class=\"data row239 col5\" >3.76%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row240\" class=\"row_heading level0 row240\" >240</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row240_col0\" class=\"data row240 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row240_col1\" class=\"data row240 col1\" >36</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row240_col2\" class=\"data row240 col2\" >1922791</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row240_col3\" class=\"data row240 col3\" >2010831</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row240_col4\" class=\"data row240 col4\" >88040</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row240_col5\" class=\"data row240 col5\" >4.58%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row241\" class=\"row_heading level0 row241\" >241</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row241_col0\" class=\"data row241 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row241_col1\" class=\"data row241 col1\" >37</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row241_col2\" class=\"data row241 col2\" >1962229</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row241_col3\" class=\"data row241 col3\" >1996862</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row241_col4\" class=\"data row241 col4\" >34633</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row241_col5\" class=\"data row241 col5\" >1.76%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row242\" class=\"row_heading level0 row242\" >242</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row242_col0\" class=\"data row242 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row242_col1\" class=\"data row242 col1\" >38</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row242_col2\" class=\"data row242 col2\" >2052176</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row242_col3\" class=\"data row242 col3\" >1938503</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row242_col4\" class=\"data row242 col4\" >-113673</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row242_col5\" class=\"data row242 col5\" >-5.54%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row243\" class=\"row_heading level0 row243\" >243</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row243_col0\" class=\"data row243 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row243_col1\" class=\"data row243 col1\" >39</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row243_col2\" class=\"data row243 col2\" >2175745</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row243_col3\" class=\"data row243 col3\" >1995795</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row243_col4\" class=\"data row243 col4\" >-179950</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row243_col5\" class=\"data row243 col5\" >-8.27%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row244\" class=\"row_heading level0 row244\" >244</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row244_col0\" class=\"data row244 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row244_col1\" class=\"data row244 col1\" >40</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row244_col2\" class=\"data row244 col2\" >2197964</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row244_col3\" class=\"data row244 col3\" >1942194</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row244_col4\" class=\"data row244 col4\" >-255770</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row244_col5\" class=\"data row244 col5\" >-11.64%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row245\" class=\"row_heading level0 row245\" >245</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row245_col0\" class=\"data row245 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row245_col1\" class=\"data row245 col1\" >41</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row245_col2\" class=\"data row245 col2\" >2089576</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row245_col3\" class=\"data row245 col3\" >1978607</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row245_col4\" class=\"data row245 col4\" >-110969</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row245_col5\" class=\"data row245 col5\" >-5.31%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row246\" class=\"row_heading level0 row246\" >246</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row246_col0\" class=\"data row246 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row246_col1\" class=\"data row246 col1\" >42</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row246_col2\" class=\"data row246 col2\" >2050930</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row246_col3\" class=\"data row246 col3\" >2065491</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row246_col4\" class=\"data row246 col4\" >14561</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row246_col5\" class=\"data row246 col5\" >0.71%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row247\" class=\"row_heading level0 row247\" >247</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row247_col0\" class=\"data row247 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row247_col1\" class=\"data row247 col1\" >43</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row247_col2\" class=\"data row247 col2\" >2062862</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row247_col3\" class=\"data row247 col3\" >2185890</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row247_col4\" class=\"data row247 col4\" >123028</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row247_col5\" class=\"data row247 col5\" >5.96%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row248\" class=\"row_heading level0 row248\" >248</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row248_col0\" class=\"data row248 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row248_col1\" class=\"data row248 col1\" >44</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row248_col2\" class=\"data row248 col2\" >2103936</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row248_col3\" class=\"data row248 col3\" >2205835</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row248_col4\" class=\"data row248 col4\" >101899</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row248_col5\" class=\"data row248 col5\" >4.84%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row249\" class=\"row_heading level0 row249\" >249</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row249_col0\" class=\"data row249 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row249_col1\" class=\"data row249 col1\" >45</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row249_col2\" class=\"data row249 col2\" >2236654</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row249_col3\" class=\"data row249 col3\" >2095203</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row249_col4\" class=\"data row249 col4\" >-141451</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row249_col5\" class=\"data row249 col5\" >-6.32%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row250\" class=\"row_heading level0 row250\" >250</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row250_col0\" class=\"data row250 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row250_col1\" class=\"data row250 col1\" >46</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row250_col2\" class=\"data row250 col2\" >2290942</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row250_col3\" class=\"data row250 col3\" >2054118</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row250_col4\" class=\"data row250 col4\" >-236824</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row250_col5\" class=\"data row250 col5\" >-10.34%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row251\" class=\"row_heading level0 row251\" >251</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row251_col0\" class=\"data row251 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row251_col1\" class=\"data row251 col1\" >47</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row251_col2\" class=\"data row251 col2\" >2297533</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row251_col3\" class=\"data row251 col3\" >2063366</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row251_col4\" class=\"data row251 col4\" >-234167</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row251_col5\" class=\"data row251 col5\" >-10.19%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row252\" class=\"row_heading level0 row252\" >252</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row252_col0\" class=\"data row252 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row252_col1\" class=\"data row252 col1\" >48</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row252_col2\" class=\"data row252 col2\" >2299367</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row252_col3\" class=\"data row252 col3\" >2101346</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row252_col4\" class=\"data row252 col4\" >-198021</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row252_col5\" class=\"data row252 col5\" >-8.61%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row253\" class=\"row_heading level0 row253\" >253</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row253_col0\" class=\"data row253 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row253_col1\" class=\"data row253 col1\" >49</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row253_col2\" class=\"data row253 col2\" >2336640</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row253_col3\" class=\"data row253 col3\" >2230032</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row253_col4\" class=\"data row253 col4\" >-106608</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row253_col5\" class=\"data row253 col5\" >-4.56%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row254\" class=\"row_heading level0 row254\" >254</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row254_col0\" class=\"data row254 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row254_col1\" class=\"data row254 col1\" >50</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row254_col2\" class=\"data row254 col2\" >2355369</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row254_col3\" class=\"data row254 col3\" >2280640</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row254_col4\" class=\"data row254 col4\" >-74729</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row254_col5\" class=\"data row254 col5\" >-3.17%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row255\" class=\"row_heading level0 row255\" >255</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row255_col0\" class=\"data row255 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row255_col1\" class=\"data row255 col1\" >51</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row255_col2\" class=\"data row255 col2\" >2289194</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row255_col3\" class=\"data row255 col3\" >2283994</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row255_col4\" class=\"data row255 col4\" >-5200</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row255_col5\" class=\"data row255 col5\" >-0.23%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row256\" class=\"row_heading level0 row256\" >256</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row256_col0\" class=\"data row256 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row256_col1\" class=\"data row256 col1\" >52</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row256_col2\" class=\"data row256 col2\" >2283423</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row256_col3\" class=\"data row256 col3\" >2282387</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row256_col4\" class=\"data row256 col4\" >-1036</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row256_col5\" class=\"data row256 col5\" >-0.05%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row257\" class=\"row_heading level0 row257\" >257</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row257_col0\" class=\"data row257 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row257_col1\" class=\"data row257 col1\" >53</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row257_col2\" class=\"data row257 col2\" >2268480</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row257_col3\" class=\"data row257 col3\" >2316102</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row257_col4\" class=\"data row257 col4\" >47622</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row257_col5\" class=\"data row257 col5\" >2.10%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row258\" class=\"row_heading level0 row258\" >258</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row258_col0\" class=\"data row258 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row258_col1\" class=\"data row258 col1\" >54</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row258_col2\" class=\"data row258 col2\" >2196807</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row258_col3\" class=\"data row258 col3\" >2332003</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row258_col4\" class=\"data row258 col4\" >135196</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row258_col5\" class=\"data row258 col5\" >6.15%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row259\" class=\"row_heading level0 row259\" >259</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row259_col0\" class=\"data row259 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row259_col1\" class=\"data row259 col1\" >55</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row259_col2\" class=\"data row259 col2\" >2183771</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row259_col3\" class=\"data row259 col3\" >2263429</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row259_col4\" class=\"data row259 col4\" >79658</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row259_col5\" class=\"data row259 col5\" >3.65%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row260\" class=\"row_heading level0 row260\" >260</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row260_col0\" class=\"data row260 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row260_col1\" class=\"data row260 col1\" >56</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row260_col2\" class=\"data row260 col2\" >2108684</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row260_col3\" class=\"data row260 col3\" >2255009</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row260_col4\" class=\"data row260 col4\" >146325</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row260_col5\" class=\"data row260 col5\" >6.94%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row261\" class=\"row_heading level0 row261\" >261</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row261_col0\" class=\"data row261 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row261_col1\" class=\"data row261 col1\" >57</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row261_col2\" class=\"data row261 col2\" >2036521</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row261_col3\" class=\"data row261 col3\" >2237219</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row261_col4\" class=\"data row261 col4\" >200698</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row261_col5\" class=\"data row261 col5\" >9.85%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row262\" class=\"row_heading level0 row262\" >262</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row262_col0\" class=\"data row262 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row262_col1\" class=\"data row262 col1\" >58</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row262_col2\" class=\"data row262 col2\" >1963767</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row262_col3\" class=\"data row262 col3\" >2163908</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row262_col4\" class=\"data row262 col4\" >200141</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row262_col5\" class=\"data row262 col5\" >10.19%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row263\" class=\"row_heading level0 row263\" >263</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row263_col0\" class=\"data row263 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row263_col1\" class=\"data row263 col1\" >59</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row263_col2\" class=\"data row263 col2\" >1914774</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row263_col3\" class=\"data row263 col3\" >2148934</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row263_col4\" class=\"data row263 col4\" >234160</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row263_col5\" class=\"data row263 col5\" >12.23%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row264\" class=\"row_heading level0 row264\" >264</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row264_col0\" class=\"data row264 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row264_col1\" class=\"data row264 col1\" >60</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row264_col2\" class=\"data row264 col2\" >1874501</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row264_col3\" class=\"data row264 col3\" >2071869</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row264_col4\" class=\"data row264 col4\" >197368</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row264_col5\" class=\"data row264 col5\" >10.53%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row265\" class=\"row_heading level0 row265\" >265</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row265_col0\" class=\"data row265 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row265_col1\" class=\"data row265 col1\" >61</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row265_col2\" class=\"data row265 col2\" >1828708</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row265_col3\" class=\"data row265 col3\" >1997711</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row265_col4\" class=\"data row265 col4\" >169003</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row265_col5\" class=\"data row265 col5\" >9.24%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row266\" class=\"row_heading level0 row266\" >266</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row266_col0\" class=\"data row266 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row266_col1\" class=\"data row266 col1\" >62</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row266_col2\" class=\"data row266 col2\" >1815999</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row266_col3\" class=\"data row266 col3\" >1922402</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row266_col4\" class=\"data row266 col4\" >106403</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row266_col5\" class=\"data row266 col5\" >5.86%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row267\" class=\"row_heading level0 row267\" >267</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row267_col0\" class=\"data row267 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row267_col1\" class=\"data row267 col1\" >63</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row267_col2\" class=\"data row267 col2\" >1898264</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row267_col3\" class=\"data row267 col3\" >1870596</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row267_col4\" class=\"data row267 col4\" >-27668</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row267_col5\" class=\"data row267 col5\" >-1.46%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row268\" class=\"row_heading level0 row268\" >268</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row268_col0\" class=\"data row268 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row268_col1\" class=\"data row268 col1\" >64</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row268_col2\" class=\"data row268 col2\" >1414222</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row268_col3\" class=\"data row268 col3\" >1826744</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row268_col4\" class=\"data row268 col4\" >412522</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row268_col5\" class=\"data row268 col5\" >29.17%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row269\" class=\"row_heading level0 row269\" >269</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row269_col0\" class=\"data row269 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row269_col1\" class=\"data row269 col1\" >65</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row269_col2\" class=\"data row269 col2\" >1405839</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row269_col3\" class=\"data row269 col3\" >1776052</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row269_col4\" class=\"data row269 col4\" >370213</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row269_col5\" class=\"data row269 col5\" >26.33%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row270\" class=\"row_heading level0 row270\" >270</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row270_col0\" class=\"data row270 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row270_col1\" class=\"data row270 col1\" >66</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row270_col2\" class=\"data row270 col2\" >1381541</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row270_col3\" class=\"data row270 col3\" >1758337</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row270_col4\" class=\"data row270 col4\" >376796</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row270_col5\" class=\"data row270 col5\" >27.27%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row271\" class=\"row_heading level0 row271\" >271</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row271_col0\" class=\"data row271 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row271_col1\" class=\"data row271 col1\" >67</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row271_col2\" class=\"data row271 col2\" >1423562</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row271_col3\" class=\"data row271 col3\" >1832243</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row271_col4\" class=\"data row271 col4\" >408681</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row271_col5\" class=\"data row271 col5\" >28.71%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row272\" class=\"row_heading level0 row272\" >272</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row272_col0\" class=\"data row272 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row272_col1\" class=\"data row272 col1\" >68</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row272_col2\" class=\"data row272 col2\" >1254117</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row272_col3\" class=\"data row272 col3\" >1361081</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row272_col4\" class=\"data row272 col4\" >106964</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row272_col5\" class=\"data row272 col5\" >8.53%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row273\" class=\"row_heading level0 row273\" >273</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row273_col0\" class=\"data row273 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row273_col1\" class=\"data row273 col1\" >69</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row273_col2\" class=\"data row273 col2\" >1161048</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row273_col3\" class=\"data row273 col3\" >1347423</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row273_col4\" class=\"data row273 col4\" >186375</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row273_col5\" class=\"data row273 col5\" >16.05%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row274\" class=\"row_heading level0 row274\" >274</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row274_col0\" class=\"data row274 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row274_col1\" class=\"data row274 col1\" >70</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row274_col2\" class=\"data row274 col2\" >1108504</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row274_col3\" class=\"data row274 col3\" >1316930</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row274_col4\" class=\"data row274 col4\" >208426</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row274_col5\" class=\"data row274 col5\" >18.80%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row275\" class=\"row_heading level0 row275\" >275</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row275_col0\" class=\"data row275 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row275_col1\" class=\"data row275 col1\" >71</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row275_col2\" class=\"data row275 col2\" >1050349</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row275_col3\" class=\"data row275 col3\" >1350590</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row275_col4\" class=\"data row275 col4\" >300241</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row275_col5\" class=\"data row275 col5\" >28.58%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row276\" class=\"row_heading level0 row276\" >276</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row276_col0\" class=\"data row276 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row276_col1\" class=\"data row276 col1\" >72</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row276_col2\" class=\"data row276 col2\" >1021291</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row276_col3\" class=\"data row276 col3\" >1183363</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row276_col4\" class=\"data row276 col4\" >162072</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row276_col5\" class=\"data row276 col5\" >15.87%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row277\" class=\"row_heading level0 row277\" >277</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row277_col0\" class=\"data row277 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row277_col1\" class=\"data row277 col1\" >73</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row277_col2\" class=\"data row277 col2\" >955658</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row277_col3\" class=\"data row277 col3\" >1089027</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row277_col4\" class=\"data row277 col4\" >133369</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row277_col5\" class=\"data row277 col5\" >13.96%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row278\" class=\"row_heading level0 row278\" >278</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row278_col0\" class=\"data row278 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row278_col1\" class=\"data row278 col1\" >74</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row278_col2\" class=\"data row278 col2\" >927165</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row278_col3\" class=\"data row278 col3\" >1032543</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row278_col4\" class=\"data row278 col4\" >105378</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row278_col5\" class=\"data row278 col5\" >11.37%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row279\" class=\"row_heading level0 row279\" >279</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row279_col0\" class=\"data row279 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row279_col1\" class=\"data row279 col1\" >75</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row279_col2\" class=\"data row279 col2\" >906215</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row279_col3\" class=\"data row279 col3\" >970796</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row279_col4\" class=\"data row279 col4\" >64581</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row279_col5\" class=\"data row279 col5\" >7.13%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row280\" class=\"row_heading level0 row280\" >280</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row280_col0\" class=\"data row280 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row280_col1\" class=\"data row280 col1\" >76</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row280_col2\" class=\"data row280 col2\" >828129</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row280_col3\" class=\"data row280 col3\" >935833</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row280_col4\" class=\"data row280 col4\" >107704</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row280_col5\" class=\"data row280 col5\" >13.01%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row281\" class=\"row_heading level0 row281\" >281</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row281_col0\" class=\"data row281 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row281_col1\" class=\"data row281 col1\" >77</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row281_col2\" class=\"data row281 col2\" >818306</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row281_col3\" class=\"data row281 col3\" >866942</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row281_col4\" class=\"data row281 col4\" >48636</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row281_col5\" class=\"data row281 col5\" >5.94%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row282\" class=\"row_heading level0 row282\" >282</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row282_col0\" class=\"data row282 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row282_col1\" class=\"data row282 col1\" >78</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row282_col2\" class=\"data row282 col2\" >799408</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row282_col3\" class=\"data row282 col3\" >831915</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row282_col4\" class=\"data row282 col4\" >32507</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row282_col5\" class=\"data row282 col5\" >4.07%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row283\" class=\"row_heading level0 row283\" >283</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row283_col0\" class=\"data row283 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row283_col1\" class=\"data row283 col1\" >79</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row283_col2\" class=\"data row283 col2\" >781027</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row283_col3\" class=\"data row283 col3\" >803078</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row283_col4\" class=\"data row283 col4\" >22051</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row283_col5\" class=\"data row283 col5\" >2.82%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row284\" class=\"row_heading level0 row284\" >284</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row284_col0\" class=\"data row284 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row284_col1\" class=\"data row284 col1\" >80</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row284_col2\" class=\"data row284 col2\" >770509</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row284_col3\" class=\"data row284 col3\" >723310</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row284_col4\" class=\"data row284 col4\" >-47199</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row284_col5\" class=\"data row284 col5\" >-6.13%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row285\" class=\"row_heading level0 row285\" >285</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row285_col0\" class=\"data row285 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row285_col1\" class=\"data row285 col1\" >81</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row285_col2\" class=\"data row285 col2\" >716533</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row285_col3\" class=\"data row285 col3\" >704052</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row285_col4\" class=\"data row285 col4\" >-12481</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row285_col5\" class=\"data row285 col5\" >-1.74%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row286\" class=\"row_heading level0 row286\" >286</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row286_col0\" class=\"data row286 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row286_col1\" class=\"data row286 col1\" >82</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row286_col2\" class=\"data row286 col2\" >695544</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row286_col3\" class=\"data row286 col3\" >675643</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row286_col4\" class=\"data row286 col4\" >-19901</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row286_col5\" class=\"data row286 col5\" >-2.86%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row287\" class=\"row_heading level0 row287\" >287</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row287_col0\" class=\"data row287 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row287_col1\" class=\"data row287 col1\" >83</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row287_col2\" class=\"data row287 col2\" >658441</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row287_col3\" class=\"data row287 col3\" >647071</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row287_col4\" class=\"data row287 col4\" >-11370</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row287_col5\" class=\"data row287 col5\" >-1.73%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row288\" class=\"row_heading level0 row288\" >288</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row288_col0\" class=\"data row288 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row288_col1\" class=\"data row288 col1\" >84</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row288_col2\" class=\"data row288 col2\" >611338</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row288_col3\" class=\"data row288 col3\" >623984</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row288_col4\" class=\"data row288 col4\" >12646</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row288_col5\" class=\"data row288 col5\" >2.07%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row289\" class=\"row_heading level0 row289\" >289</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row289_col0\" class=\"data row289 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row289_col1\" class=\"data row289 col1\" >85</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row289_col2\" class=\"data row289 col2\" >577352</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row289_col3\" class=\"data row289 col3\" >564605</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row289_col4\" class=\"data row289 col4\" >-12747</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row289_col5\" class=\"data row289 col5\" >-2.21%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row290\" class=\"row_heading level0 row290\" >290</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row290_col0\" class=\"data row290 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row290_col1\" class=\"data row290 col1\" >86</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row290_col2\" class=\"data row290 col2\" >526153</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row290_col3\" class=\"data row290 col3\" >531680</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row290_col4\" class=\"data row290 col4\" >5527</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row290_col5\" class=\"data row290 col5\" >1.05%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row291\" class=\"row_heading level0 row291\" >291</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row291_col0\" class=\"data row291 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row291_col1\" class=\"data row291 col1\" >87</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row291_col2\" class=\"data row291 col2\" >467575</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row291_col3\" class=\"data row291 col3\" >486253</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row291_col4\" class=\"data row291 col4\" >18678</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row291_col5\" class=\"data row291 col5\" >3.99%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row292\" class=\"row_heading level0 row292\" >292</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row292_col0\" class=\"data row292 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row292_col1\" class=\"data row292 col1\" >88</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row292_col2\" class=\"data row292 col2\" >420437</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row292_col3\" class=\"data row292 col3\" >433947</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row292_col4\" class=\"data row292 col4\" >13510</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row292_col5\" class=\"data row292 col5\" >3.21%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row293\" class=\"row_heading level0 row293\" >293</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row293_col0\" class=\"data row293 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row293_col1\" class=\"data row293 col1\" >89</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row293_col2\" class=\"data row293 col2\" >365732</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row293_col3\" class=\"data row293 col3\" >392978</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row293_col4\" class=\"data row293 col4\" >27246</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row293_col5\" class=\"data row293 col5\" >7.45%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row294\" class=\"row_heading level0 row294\" >294</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row294_col0\" class=\"data row294 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row294_col1\" class=\"data row294 col1\" >90</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row294_col2\" class=\"data row294 col2\" >306925</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row294_col3\" class=\"data row294 col3\" >341430</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row294_col4\" class=\"data row294 col4\" >34505</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row294_col5\" class=\"data row294 col5\" >11.24%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row295\" class=\"row_heading level0 row295\" >295</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row295_col0\" class=\"data row295 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row295_col1\" class=\"data row295 col1\" >91</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row295_col2\" class=\"data row295 col2\" >240151</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row295_col3\" class=\"data row295 col3\" >287889</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row295_col4\" class=\"data row295 col4\" >47738</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row295_col5\" class=\"data row295 col5\" >19.88%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row296\" class=\"row_heading level0 row296\" >296</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row296_col0\" class=\"data row296 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row296_col1\" class=\"data row296 col1\" >92</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row296_col2\" class=\"data row296 col2\" >205379</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row296_col3\" class=\"data row296 col3\" >243648</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row296_col4\" class=\"data row296 col4\" >38269</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row296_col5\" class=\"data row296 col5\" >18.63%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row297\" class=\"row_heading level0 row297\" >297</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row297_col0\" class=\"data row297 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row297_col1\" class=\"data row297 col1\" >93</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row297_col2\" class=\"data row297 col2\" >158882</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row297_col3\" class=\"data row297 col3\" >199426</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row297_col4\" class=\"data row297 col4\" >40544</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row297_col5\" class=\"data row297 col5\" >25.52%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row298\" class=\"row_heading level0 row298\" >298</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row298_col0\" class=\"data row298 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row298_col1\" class=\"data row298 col1\" >94</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row298_col2\" class=\"data row298 col2\" >126948</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row298_col3\" class=\"data row298 col3\" >155637</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row298_col4\" class=\"data row298 col4\" >28689</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row298_col5\" class=\"data row298 col5\" >22.60%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row299\" class=\"row_heading level0 row299\" >299</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row299_col0\" class=\"data row299 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row299_col1\" class=\"data row299 col1\" >95</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row299_col2\" class=\"data row299 col2\" >99341</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row299_col3\" class=\"data row299 col3\" >113732</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row299_col4\" class=\"data row299 col4\" >14391</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row299_col5\" class=\"data row299 col5\" >14.49%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row300\" class=\"row_heading level0 row300\" >300</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row300_col0\" class=\"data row300 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row300_col1\" class=\"data row300 col1\" >96</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row300_col2\" class=\"data row300 col2\" >75139</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row300_col3\" class=\"data row300 col3\" >89432</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row300_col4\" class=\"data row300 col4\" >14293</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row300_col5\" class=\"data row300 col5\" >19.02%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row301\" class=\"row_heading level0 row301\" >301</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row301_col0\" class=\"data row301 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row301_col1\" class=\"data row301 col1\" >97</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row301_col2\" class=\"data row301 col2\" >54118</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row301_col3\" class=\"data row301 col3\" >62779</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row301_col4\" class=\"data row301 col4\" >8661</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row301_col5\" class=\"data row301 col5\" >16.00%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row302\" class=\"row_heading level0 row302\" >302</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row302_col0\" class=\"data row302 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row302_col1\" class=\"data row302 col1\" >98</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row302_col2\" class=\"data row302 col2\" >37532</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row302_col3\" class=\"data row302 col3\" >46208</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row302_col4\" class=\"data row302 col4\" >8676</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row302_col5\" class=\"data row302 col5\" >23.12%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row303\" class=\"row_heading level0 row303\" >303</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row303_col0\" class=\"data row303 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row303_col1\" class=\"data row303 col1\" >99</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row303_col2\" class=\"data row303 col2\" >26074</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row303_col3\" class=\"data row303 col3\" >32517</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row303_col4\" class=\"data row303 col4\" >6443</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row303_col5\" class=\"data row303 col5\" >24.71%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row304\" class=\"row_heading level0 row304\" >304</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row304_col0\" class=\"data row304 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row304_col1\" class=\"data row304 col1\" >100</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row304_col2\" class=\"data row304 col2\" >45058</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row304_col3\" class=\"data row304 col3\" >58008</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row304_col4\" class=\"data row304 col4\" >12950</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row304_col5\" class=\"data row304 col5\" >28.74%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122level0_row305\" class=\"row_heading level0 row305\" >305</th>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row305_col0\" class=\"data row305 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row305_col1\" class=\"data row305 col1\" >999</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row305_col2\" class=\"data row305 col2\" >157258820</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row305_col3\" class=\"data row305 col3\" >161952064</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row305_col4\" class=\"data row305 col4\" >4693244</td>\n",
|
|
|
+ " <td id=\"T_3d06be7a_5280_11eb_8c0f_acde48001122row305_col5\" class=\"data row305 col5\" >2.98%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " </tbody></table>"
|
|
|
+ ],
|
|
|
+ "text/plain": [
|
|
|
+ "<pandas.io.formats.style.Styler at 0x7fd9c2be5e50>"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "execution_count": 6,
|
|
|
+ "metadata": {},
|
|
|
+ "output_type": "execute_result"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "source": [
|
|
|
+ "change = us_pop['2014'] - us_pop['2010']\n",
|
|
|
+ "\n",
|
|
|
+ "\n",
|
|
|
+ "census = us_pop\n",
|
|
|
+ "\n",
|
|
|
+ "census['Change'] = change\n",
|
|
|
+ "\n",
|
|
|
+ "census['Percent Change'] = change/us_pop['2010']\n",
|
|
|
+ "\n",
|
|
|
+ "census.style.format({'Percent Change': \"{:,.2%}\"})"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "cell_type": "markdown",
|
|
|
+ "metadata": {},
|
|
|
+ "source": [
|
|
|
+ "**Sorting the data.** Let us sort the table in decreasing order of the absolute change in population."
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "cell_type": "code",
|
|
|
+ "execution_count": 7,
|
|
|
+ "metadata": {},
|
|
|
+ "outputs": [
|
|
|
+ {
|
|
|
+ "data": {
|
|
|
+ "text/html": [
|
|
|
+ "<style type=\"text/css\" >\n",
|
|
|
+ "</style><table id=\"T_3daade6a_5280_11eb_8c0f_acde48001122\" ><thead> <tr> <th class=\"blank level0\" ></th> <th class=\"col_heading level0 col0\" >SEX</th> <th class=\"col_heading level0 col1\" >AGE</th> <th class=\"col_heading level0 col2\" >2010</th> <th class=\"col_heading level0 col3\" >2014</th> <th class=\"col_heading level0 col4\" >Change</th> <th class=\"col_heading level0 col5\" >Percent Change</th> </tr></thead><tbody>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row0\" class=\"row_heading level0 row0\" >101</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row0_col0\" class=\"data row0 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row0_col1\" class=\"data row0 col1\" >999</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row0_col2\" class=\"data row0 col2\" >309346863</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row0_col3\" class=\"data row0 col3\" >318907401</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row0_col4\" class=\"data row0 col4\" >9560538</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row0_col5\" class=\"data row0 col5\" >3.09%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row1\" class=\"row_heading level0 row1\" >203</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row1_col0\" class=\"data row1 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row1_col1\" class=\"data row1 col1\" >999</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row1_col2\" class=\"data row1 col2\" >152088043</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row1_col3\" class=\"data row1 col3\" >156955337</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row1_col4\" class=\"data row1 col4\" >4867294</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row1_col5\" class=\"data row1 col5\" >3.20%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row2\" class=\"row_heading level0 row2\" >305</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row2_col0\" class=\"data row2 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row2_col1\" class=\"data row2 col1\" >999</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row2_col2\" class=\"data row2 col2\" >157258820</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row2_col3\" class=\"data row2 col3\" >161952064</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row2_col4\" class=\"data row2 col4\" >4693244</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row2_col5\" class=\"data row2 col5\" >2.98%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row3\" class=\"row_heading level0 row3\" >67</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row3_col0\" class=\"data row3 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row3_col1\" class=\"data row3 col1\" >67</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row3_col2\" class=\"data row3 col2\" >2693707</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row3_col3\" class=\"data row3 col3\" >3485241</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row3_col4\" class=\"data row3 col4\" >791534</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row3_col5\" class=\"data row3 col5\" >29.38%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row4\" class=\"row_heading level0 row4\" >64</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row4_col0\" class=\"data row4 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row4_col1\" class=\"data row4 col1\" >64</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row4_col2\" class=\"data row4 col2\" >2706055</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row4_col3\" class=\"data row4 col3\" >3487559</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row4_col4\" class=\"data row4 col4\" >781504</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row4_col5\" class=\"data row4 col5\" >28.88%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row5\" class=\"row_heading level0 row5\" >66</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row5_col0\" class=\"data row5 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row5_col1\" class=\"data row5 col1\" >66</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row5_col2\" class=\"data row5 col2\" >2621335</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row5_col3\" class=\"data row5 col3\" >3347060</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row5_col4\" class=\"data row5 col4\" >725725</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row5_col5\" class=\"data row5 col5\" >27.69%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row6\" class=\"row_heading level0 row6\" >65</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row6_col0\" class=\"data row6 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row6_col1\" class=\"data row6 col1\" >65</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row6_col2\" class=\"data row6 col2\" >2678525</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row6_col3\" class=\"data row6 col3\" >3382824</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row6_col4\" class=\"data row6 col4\" >704299</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row6_col5\" class=\"data row6 col5\" >26.29%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row7\" class=\"row_heading level0 row7\" >71</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row7_col0\" class=\"data row7 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row7_col1\" class=\"data row7 col1\" >71</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row7_col2\" class=\"data row7 col2\" >1953607</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row7_col3\" class=\"data row7 col3\" >2519705</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row7_col4\" class=\"data row7 col4\" >566098</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row7_col5\" class=\"data row7 col5\" >28.98%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row8\" class=\"row_heading level0 row8\" >34</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row8_col0\" class=\"data row8 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row8_col1\" class=\"data row8 col1\" >34</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row8_col2\" class=\"data row8 col2\" >3822189</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row8_col3\" class=\"data row8 col3\" >4364748</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row8_col4\" class=\"data row8 col4\" >542559</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row8_col5\" class=\"data row8 col5\" >14.19%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row9\" class=\"row_heading level0 row9\" >23</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row9_col0\" class=\"data row9 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row9_col1\" class=\"data row9 col1\" >23</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row9_col2\" class=\"data row9 col2\" >4217228</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row9_col3\" class=\"data row9 col3\" >4702156</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row9_col4\" class=\"data row9 col4\" >484928</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row9_col5\" class=\"data row9 col5\" >11.50%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row10\" class=\"row_heading level0 row10\" >59</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row10_col0\" class=\"data row10 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row10_col1\" class=\"data row10 col1\" >59</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row10_col2\" class=\"data row10 col2\" >3694254</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row10_col3\" class=\"data row10 col3\" >4155521</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row10_col4\" class=\"data row10 col4\" >461267</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row10_col5\" class=\"data row10 col5\" >12.49%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row11\" class=\"row_heading level0 row11\" >24</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row11_col0\" class=\"data row11 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row11_col1\" class=\"data row11 col1\" >24</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row11_col2\" class=\"data row11 col2\" >4243602</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row11_col3\" class=\"data row11 col3\" >4695411</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row11_col4\" class=\"data row11 col4\" >451809</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row11_col5\" class=\"data row11 col5\" >10.65%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row12\" class=\"row_heading level0 row12\" >268</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row12_col0\" class=\"data row12 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row12_col1\" class=\"data row12 col1\" >64</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row12_col2\" class=\"data row12 col2\" >1414222</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row12_col3\" class=\"data row12 col3\" >1826744</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row12_col4\" class=\"data row12 col4\" >412522</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row12_col5\" class=\"data row12 col5\" >29.17%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row13\" class=\"row_heading level0 row13\" >271</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row13_col0\" class=\"data row13 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row13_col1\" class=\"data row13 col1\" >67</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row13_col2\" class=\"data row13 col2\" >1423562</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row13_col3\" class=\"data row13 col3\" >1832243</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row13_col4\" class=\"data row13 col4\" >408681</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row13_col5\" class=\"data row13 col5\" >28.71%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row14\" class=\"row_heading level0 row14\" >70</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row14_col0\" class=\"data row14 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row14_col1\" class=\"data row14 col1\" >70</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row14_col2\" class=\"data row14 col2\" >2062577</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row14_col3\" class=\"data row14 col3\" >2465438</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row14_col4\" class=\"data row14 col4\" >402861</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row14_col5\" class=\"data row14 col5\" >19.53%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row15\" class=\"row_heading level0 row15\" >57</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row15_col0\" class=\"data row15 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row15_col1\" class=\"data row15 col1\" >57</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row15_col2\" class=\"data row15 col2\" >3946518</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row15_col3\" class=\"data row15 col3\" >4347023</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row15_col4\" class=\"data row15 col4\" >400505</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row15_col5\" class=\"data row15 col5\" >10.15%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row16\" class=\"row_heading level0 row16\" >58</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row16_col0\" class=\"data row16 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row16_col1\" class=\"data row16 col1\" >58</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row16_col2\" class=\"data row16 col2\" >3802447</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row16_col3\" class=\"data row16 col3\" >4191360</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row16_col4\" class=\"data row16 col4\" >388913</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row16_col5\" class=\"data row16 col5\" >10.23%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row17\" class=\"row_heading level0 row17\" >169</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row17_col0\" class=\"data row17 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row17_col1\" class=\"data row17 col1\" >67</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row17_col2\" class=\"data row17 col2\" >1270145</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row17_col3\" class=\"data row17 col3\" >1652998</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row17_col4\" class=\"data row17 col4\" >382853</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row17_col5\" class=\"data row17 col5\" >30.14%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row18\" class=\"row_heading level0 row18\" >270</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row18_col0\" class=\"data row18 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row18_col1\" class=\"data row18 col1\" >66</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row18_col2\" class=\"data row18 col2\" >1381541</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row18_col3\" class=\"data row18 col3\" >1758337</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row18_col4\" class=\"data row18 col4\" >376796</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row18_col5\" class=\"data row18 col5\" >27.27%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row19\" class=\"row_heading level0 row19\" >269</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row19_col0\" class=\"data row19 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row19_col1\" class=\"data row19 col1\" >65</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row19_col2\" class=\"data row19 col2\" >1405839</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row19_col3\" class=\"data row19 col3\" >1776052</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row19_col4\" class=\"data row19 col4\" >370213</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row19_col5\" class=\"data row19 col5\" >26.33%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row20\" class=\"row_heading level0 row20\" >166</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row20_col0\" class=\"data row20 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row20_col1\" class=\"data row20 col1\" >64</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row20_col2\" class=\"data row20 col2\" >1291833</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row20_col3\" class=\"data row20 col3\" >1660815</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row20_col4\" class=\"data row20 col4\" >368982</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row20_col5\" class=\"data row20 col5\" >28.56%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row21\" class=\"row_heading level0 row21\" >60</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row21_col0\" class=\"data row21 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row21_col1\" class=\"data row21 col1\" >60</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row21_col2\" class=\"data row21 col2\" >3616721</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row21_col3\" class=\"data row21 col3\" >3985598</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row21_col4\" class=\"data row21 col4\" >368877</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row21_col5\" class=\"data row21 col5\" >10.20%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row22\" class=\"row_heading level0 row22\" >69</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row22_col0\" class=\"data row22 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row22_col1\" class=\"data row22 col1\" >69</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row22_col2\" class=\"data row22 col2\" >2167830</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row22_col3\" class=\"data row22 col3\" >2534295</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row22_col4\" class=\"data row22 col4\" >366465</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row22_col5\" class=\"data row22 col5\" >16.90%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row23\" class=\"row_heading level0 row23\" >32</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row23_col0\" class=\"data row23 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row23_col1\" class=\"data row23 col1\" >32</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row23_col2\" class=\"data row23 col2\" >3967602</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row23_col3\" class=\"data row23 col3\" >4323951</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row23_col4\" class=\"data row23 col4\" >356349</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row23_col5\" class=\"data row23 col5\" >8.98%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row24\" class=\"row_heading level0 row24\" >168</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row24_col0\" class=\"data row24 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row24_col1\" class=\"data row24 col1\" >66</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row24_col2\" class=\"data row24 col2\" >1239794</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row24_col3\" class=\"data row24 col3\" >1588723</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row24_col4\" class=\"data row24 col4\" >348929</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row24_col5\" class=\"data row24 col5\" >28.14%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row25\" class=\"row_heading level0 row25\" >33</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row25_col0\" class=\"data row25 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row25_col1\" class=\"data row25 col1\" >33</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row25_col2\" class=\"data row25 col2\" >3933581</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row25_col3\" class=\"data row25 col3\" >4278664</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row25_col4\" class=\"data row25 col4\" >345083</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row25_col5\" class=\"data row25 col5\" >8.77%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row26\" class=\"row_heading level0 row26\" >167</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row26_col0\" class=\"data row26 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row26_col1\" class=\"data row26 col1\" >65</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row26_col2\" class=\"data row26 col2\" >1272686</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row26_col3\" class=\"data row26 col3\" >1606772</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row26_col4\" class=\"data row26 col4\" >334086</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row26_col5\" class=\"data row26 col5\" >26.25%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row27\" class=\"row_heading level0 row27\" >22</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row27_col0\" class=\"data row27 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row27_col1\" class=\"data row27 col1\" >22</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row27_col2\" class=\"data row27 col2\" >4287005</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row27_col3\" class=\"data row27 col3\" >4615729</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row27_col4\" class=\"data row27 col4\" >328724</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row27_col5\" class=\"data row27 col5\" >7.67%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row28\" class=\"row_heading level0 row28\" >61</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row28_col0\" class=\"data row28 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row28_col1\" class=\"data row28 col1\" >61</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row28_col2\" class=\"data row28 col2\" >3520109</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row28_col3\" class=\"data row28 col3\" >3834367</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row28_col4\" class=\"data row28 col4\" >314258</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row28_col5\" class=\"data row28 col5\" >8.93%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row29\" class=\"row_heading level0 row29\" >72</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row29_col0\" class=\"data row29 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row29_col1\" class=\"data row29 col1\" >72</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row29_col2\" class=\"data row29 col2\" >1883820</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row29_col3\" class=\"data row29 col3\" >2193945</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row29_col4\" class=\"data row29 col4\" >310125</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row29_col5\" class=\"data row29 col5\" >16.46%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row30\" class=\"row_heading level0 row30\" >56</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row30_col0\" class=\"data row30 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row30_col1\" class=\"data row30 col1\" >56</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row30_col2\" class=\"data row30 col2\" >4093136</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row30_col3\" class=\"data row30 col3\" >4395949</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row30_col4\" class=\"data row30 col4\" >302813</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row30_col5\" class=\"data row30 col5\" >7.40%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row31\" class=\"row_heading level0 row31\" >275</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row31_col0\" class=\"data row31 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row31_col1\" class=\"data row31 col1\" >71</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row31_col2\" class=\"data row31 col2\" >1050349</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row31_col3\" class=\"data row31 col3\" >1350590</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row31_col4\" class=\"data row31 col4\" >300241</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row31_col5\" class=\"data row31 col5\" >28.58%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row32\" class=\"row_heading level0 row32\" >54</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row32_col0\" class=\"data row32 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row32_col1\" class=\"data row32 col1\" >54</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row32_col2\" class=\"data row32 col2\" >4288447</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row32_col3\" class=\"data row32 col3\" >4574760</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row32_col4\" class=\"data row32 col4\" >286313</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row32_col5\" class=\"data row32 col5\" >6.68%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row33\" class=\"row_heading level0 row33\" >136</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row33_col0\" class=\"data row33 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row33_col1\" class=\"data row33 col1\" >34</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row33_col2\" class=\"data row33 col2\" >1908731</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row33_col3\" class=\"data row33 col3\" >2192877</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row33_col4\" class=\"data row33 col4\" >284146</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row33_col5\" class=\"data row33 col5\" >14.89%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row34\" class=\"row_heading level0 row34\" >31</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row34_col0\" class=\"data row34 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row34_col1\" class=\"data row34 col1\" >31</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row34_col2\" class=\"data row34 col2\" >4042516</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row34_col3\" class=\"data row34 col3\" >4323217</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row34_col4\" class=\"data row34 col4\" >280701</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row34_col5\" class=\"data row34 col5\" >6.94%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row35\" class=\"row_heading level0 row35\" >173</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row35_col0\" class=\"data row35 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row35_col1\" class=\"data row35 col1\" >71</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row35_col2\" class=\"data row35 col2\" >903258</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row35_col3\" class=\"data row35 col3\" >1169115</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row35_col4\" class=\"data row35 col4\" >265857</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row35_col5\" class=\"data row35 col5\" >29.43%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row36\" class=\"row_heading level0 row36\" >238</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row36_col0\" class=\"data row36 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row36_col1\" class=\"data row36 col1\" >34</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row36_col2\" class=\"data row36 col2\" >1913458</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row36_col3\" class=\"data row36 col3\" >2171871</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row36_col4\" class=\"data row36 col4\" >258413</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row36_col5\" class=\"data row36 col5\" >13.51%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row37\" class=\"row_heading level0 row37\" >73</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row37_col0\" class=\"data row37 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row37_col1\" class=\"data row37 col1\" >73</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row37_col2\" class=\"data row37 col2\" >1750304</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row37_col3\" class=\"data row37 col3\" >2001700</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row37_col4\" class=\"data row37 col4\" >251396</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row37_col5\" class=\"data row37 col5\" >14.36%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row38\" class=\"row_heading level0 row38\" >125</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row38_col0\" class=\"data row38 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row38_col1\" class=\"data row38 col1\" >23</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row38_col2\" class=\"data row38 col2\" >2151068</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row38_col3\" class=\"data row38 col3\" >2402294</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row38_col4\" class=\"data row38 col4\" >251226</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row38_col5\" class=\"data row38 col5\" >11.68%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row39\" class=\"row_heading level0 row39\" >26</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row39_col0\" class=\"data row39 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row39_col1\" class=\"data row39 col1\" >26</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row39_col2\" class=\"data row39 col2\" >4160806</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row39_col3\" class=\"data row39 col3\" >4408043</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row39_col4\" class=\"data row39 col4\" >247237</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row39_col5\" class=\"data row39 col5\" >5.94%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row40\" class=\"row_heading level0 row40\" >43</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row40_col0\" class=\"data row40 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row40_col1\" class=\"data row40 col1\" >43</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row40_col2\" class=\"data row40 col2\" >4093844</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row40_col3\" class=\"data row40 col3\" >4333850</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row40_col4\" class=\"data row40 col4\" >240006</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row40_col5\" class=\"data row40 col5\" >5.86%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row41\" class=\"row_heading level0 row41\" >263</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row41_col0\" class=\"data row41 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row41_col1\" class=\"data row41 col1\" >59</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row41_col2\" class=\"data row41 col2\" >1914774</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row41_col3\" class=\"data row41 col3\" >2148934</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row41_col4\" class=\"data row41 col4\" >234160</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row41_col5\" class=\"data row41 col5\" >12.23%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row42\" class=\"row_heading level0 row42\" >227</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row42_col0\" class=\"data row42 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row42_col1\" class=\"data row42 col1\" >23</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row42_col2\" class=\"data row42 col2\" >2066160</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row42_col3\" class=\"data row42 col3\" >2299862</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row42_col4\" class=\"data row42 col4\" >233702</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row42_col5\" class=\"data row42 col5\" >11.31%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row43\" class=\"row_heading level0 row43\" >126</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row43_col0\" class=\"data row43 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row43_col1\" class=\"data row43 col1\" >24</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row43_col2\" class=\"data row43 col2\" >2161347</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row43_col3\" class=\"data row43 col3\" >2393037</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row43_col4\" class=\"data row43 col4\" >231690</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row43_col5\" class=\"data row43 col5\" >10.72%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row44\" class=\"row_heading level0 row44\" >161</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row44_col0\" class=\"data row44 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row44_col1\" class=\"data row44 col1\" >59</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row44_col2\" class=\"data row44 col2\" >1779480</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row44_col3\" class=\"data row44 col3\" >2006587</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row44_col4\" class=\"data row44 col4\" >227107</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row44_col5\" class=\"data row44 col5\" >12.76%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row45\" class=\"row_heading level0 row45\" >25</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row45_col0\" class=\"data row45 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row45_col1\" class=\"data row45 col1\" >25</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row45_col2\" class=\"data row45 col2\" >4289428</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row45_col3\" class=\"data row45 col3\" >4511370</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row45_col4\" class=\"data row45 col4\" >221942</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row45_col5\" class=\"data row45 col5\" >5.17%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row46\" class=\"row_heading level0 row46\" >228</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row46_col0\" class=\"data row46 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row46_col1\" class=\"data row46 col1\" >24</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row46_col2\" class=\"data row46 col2\" >2082255</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row46_col3\" class=\"data row46 col3\" >2302374</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row46_col4\" class=\"data row46 col4\" >220119</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row46_col5\" class=\"data row46 col5\" >10.57%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row47\" class=\"row_heading level0 row47\" >68</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row47_col0\" class=\"data row47 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row47_col1\" class=\"data row47 col1\" >68</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row47_col2\" class=\"data row47 col2\" >2359816</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row47_col3\" class=\"data row47 col3\" >2572359</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row47_col4\" class=\"data row47 col4\" >212543</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row47_col5\" class=\"data row47 col5\" >9.01%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row48\" class=\"row_heading level0 row48\" >76</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row48_col0\" class=\"data row48 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row48_col1\" class=\"data row48 col1\" >76</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row48_col2\" class=\"data row48 col2\" >1481680</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row48_col3\" class=\"data row48 col3\" >1693674</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row48_col4\" class=\"data row48 col4\" >211994</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row48_col5\" class=\"data row48 col5\" >14.31%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row49\" class=\"row_heading level0 row49\" >44</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row49_col0\" class=\"data row49 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row49_col1\" class=\"data row49 col1\" >44</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row49_col2\" class=\"data row49 col2\" >4178508</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row49_col3\" class=\"data row49 col3\" >4390283</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row49_col4\" class=\"data row49 col4\" >211775</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row49_col5\" class=\"data row49 col5\" >5.07%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row50\" class=\"row_heading level0 row50\" >274</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row50_col0\" class=\"data row50 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row50_col1\" class=\"data row50 col1\" >70</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row50_col2\" class=\"data row50 col2\" >1108504</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row50_col3\" class=\"data row50 col3\" >1316930</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row50_col4\" class=\"data row50 col4\" >208426</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row50_col5\" class=\"data row50 col5\" >18.80%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row51\" class=\"row_heading level0 row51\" >74</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row51_col0\" class=\"data row51 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row51_col1\" class=\"data row51 col1\" >74</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row51_col2\" class=\"data row51 col2\" >1685995</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row51_col3\" class=\"data row51 col3\" >1889513</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row51_col4\" class=\"data row51 col4\" >203518</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row51_col5\" class=\"data row51 col5\" >12.07%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row52\" class=\"row_heading level0 row52\" >261</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row52_col0\" class=\"data row52 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row52_col1\" class=\"data row52 col1\" >57</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row52_col2\" class=\"data row52 col2\" >2036521</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row52_col3\" class=\"data row52 col3\" >2237219</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row52_col4\" class=\"data row52 col4\" >200698</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row52_col5\" class=\"data row52 col5\" >9.85%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row53\" class=\"row_heading level0 row53\" >262</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row53_col0\" class=\"data row53 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row53_col1\" class=\"data row53 col1\" >58</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row53_col2\" class=\"data row53 col2\" >1963767</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row53_col3\" class=\"data row53 col3\" >2163908</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row53_col4\" class=\"data row53 col4\" >200141</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row53_col5\" class=\"data row53 col5\" >10.19%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row54\" class=\"row_heading level0 row54\" >159</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row54_col0\" class=\"data row54 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row54_col1\" class=\"data row54 col1\" >57</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row54_col2\" class=\"data row54 col2\" >1909997</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row54_col3\" class=\"data row54 col3\" >2109804</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row54_col4\" class=\"data row54 col4\" >199807</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row54_col5\" class=\"data row54 col5\" >10.46%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row55\" class=\"row_heading level0 row55\" >264</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row55_col0\" class=\"data row55 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row55_col1\" class=\"data row55 col1\" >60</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row55_col2\" class=\"data row55 col2\" >1874501</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row55_col3\" class=\"data row55 col3\" >2071869</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row55_col4\" class=\"data row55 col4\" >197368</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row55_col5\" class=\"data row55 col5\" >10.53%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row56\" class=\"row_heading level0 row56\" >172</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row56_col0\" class=\"data row56 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row56_col1\" class=\"data row56 col1\" >70</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row56_col2\" class=\"data row56 col2\" >954073</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row56_col3\" class=\"data row56 col3\" >1148508</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row56_col4\" class=\"data row56 col4\" >194435</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row56_col5\" class=\"data row56 col5\" >20.38%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row57\" class=\"row_heading level0 row57\" >62</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row57_col0\" class=\"data row57 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row57_col1\" class=\"data row57 col1\" >62</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row57_col2\" class=\"data row57 col2\" >3495059</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row57_col3\" class=\"data row57 col3\" >3685282</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row57_col4\" class=\"data row57 col4\" >190223</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row57_col5\" class=\"data row57 col5\" >5.44%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row58\" class=\"row_heading level0 row58\" >160</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row58_col0\" class=\"data row58 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row58_col1\" class=\"data row58 col1\" >58</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row58_col2\" class=\"data row58 col2\" >1838680</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row58_col3\" class=\"data row58 col3\" >2027452</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row58_col4\" class=\"data row58 col4\" >188772</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row58_col5\" class=\"data row58 col5\" >10.27%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row59\" class=\"row_heading level0 row59\" >36</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row59_col0\" class=\"data row59 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row59_col1\" class=\"data row59 col1\" >36</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row59_col2\" class=\"data row59 col2\" >3830199</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row59_col3\" class=\"data row59 col3\" >4016711</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row59_col4\" class=\"data row59 col4\" >186512</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row59_col5\" class=\"data row59 col5\" >4.87%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row60\" class=\"row_heading level0 row60\" >273</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row60_col0\" class=\"data row60 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row60_col1\" class=\"data row60 col1\" >69</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row60_col2\" class=\"data row60 col2\" >1161048</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row60_col3\" class=\"data row60 col3\" >1347423</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row60_col4\" class=\"data row60 col4\" >186375</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row60_col5\" class=\"data row60 col5\" >16.05%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row61\" class=\"row_heading level0 row61\" >124</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row61_col0\" class=\"data row61 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row61_col1\" class=\"data row61 col1\" >22</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row61_col2\" class=\"data row61 col2\" >2188199</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row61_col3\" class=\"data row61 col3\" >2370459</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row61_col4\" class=\"data row61 col4\" >182260</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row61_col5\" class=\"data row61 col5\" >8.33%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row62\" class=\"row_heading level0 row62\" >29</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row62_col0\" class=\"data row62 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row62_col1\" class=\"data row62 col1\" >29</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row62_col2\" class=\"data row62 col2\" >4210286</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row62_col3\" class=\"data row62 col3\" >4391788</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row62_col4\" class=\"data row62 col4\" >181502</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row62_col5\" class=\"data row62 col5\" >4.31%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row63\" class=\"row_heading level0 row63\" >134</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row63_col0\" class=\"data row63 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row63_col1\" class=\"data row63 col1\" >32</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row63_col2\" class=\"data row63 col2\" >1986147</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row63_col3\" class=\"data row63 col3\" >2167557</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row63_col4\" class=\"data row63 col4\" >181410</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row63_col5\" class=\"data row63 col5\" >9.13%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row64\" class=\"row_heading level0 row64\" >171</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row64_col0\" class=\"data row64 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row64_col1\" class=\"data row64 col1\" >69</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row64_col2\" class=\"data row64 col2\" >1006782</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row64_col3\" class=\"data row64 col3\" >1186872</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row64_col4\" class=\"data row64 col4\" >180090</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row64_col5\" class=\"data row64 col5\" >17.89%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row65\" class=\"row_heading level0 row65\" >135</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row65_col0\" class=\"data row65 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row65_col1\" class=\"data row65 col1\" >33</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row65_col2\" class=\"data row65 col2\" >1963645</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row65_col3\" class=\"data row65 col3\" >2141552</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row65_col4\" class=\"data row65 col4\" >177907</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row65_col5\" class=\"data row65 col5\" >9.06%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row66\" class=\"row_heading level0 row66\" >236</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row66_col0\" class=\"data row66 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row66_col1\" class=\"data row66 col1\" >32</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row66_col2\" class=\"data row66 col2\" >1981455</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row66_col3\" class=\"data row66 col3\" >2156394</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row66_col4\" class=\"data row66 col4\" >174939</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row66_col5\" class=\"data row66 col5\" >8.83%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row67\" class=\"row_heading level0 row67\" >162</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row67_col0\" class=\"data row67 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row67_col1\" class=\"data row67 col1\" >60</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row67_col2\" class=\"data row67 col2\" >1742220</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row67_col3\" class=\"data row67 col3\" >1913729</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row67_col4\" class=\"data row67 col4\" >171509</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row67_col5\" class=\"data row67 col5\" >9.84%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row68\" class=\"row_heading level0 row68\" >265</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row68_col0\" class=\"data row68 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row68_col1\" class=\"data row68 col1\" >61</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row68_col2\" class=\"data row68 col2\" >1828708</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row68_col3\" class=\"data row68 col3\" >1997711</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row68_col4\" class=\"data row68 col4\" >169003</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row68_col5\" class=\"data row68 col5\" >9.24%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row69\" class=\"row_heading level0 row69\" >237</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row69_col0\" class=\"data row69 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row69_col1\" class=\"data row69 col1\" >33</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row69_col2\" class=\"data row69 col2\" >1969936</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row69_col3\" class=\"data row69 col3\" >2137112</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row69_col4\" class=\"data row69 col4\" >167176</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row69_col5\" class=\"data row69 col5\" >8.49%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row70\" class=\"row_heading level0 row70\" >55</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row70_col0\" class=\"data row70 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row70_col1\" class=\"data row70 col1\" >55</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row70_col2\" class=\"data row70 col2\" >4258970</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row70_col3\" class=\"data row70 col3\" >4421856</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row70_col4\" class=\"data row70 col4\" >162886</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row70_col5\" class=\"data row70 col5\" >3.82%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row71\" class=\"row_heading level0 row71\" >276</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row71_col0\" class=\"data row71 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row71_col1\" class=\"data row71 col1\" >72</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row71_col2\" class=\"data row71 col2\" >1021291</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row71_col3\" class=\"data row71 col3\" >1183363</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row71_col4\" class=\"data row71 col4\" >162072</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row71_col5\" class=\"data row71 col5\" >15.87%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row72\" class=\"row_heading level0 row72\" >158</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row72_col0\" class=\"data row72 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row72_col1\" class=\"data row72 col1\" >56</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row72_col2\" class=\"data row72 col2\" >1984452</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row72_col3\" class=\"data row72 col3\" >2140940</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row72_col4\" class=\"data row72 col4\" >156488</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row72_col5\" class=\"data row72 col5\" >7.89%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row73\" class=\"row_heading level0 row73\" >156</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row73_col0\" class=\"data row73 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row73_col1\" class=\"data row73 col1\" >54</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row73_col2\" class=\"data row73 col2\" >2091640</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row73_col3\" class=\"data row73 col3\" >2242757</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row73_col4\" class=\"data row73 col4\" >151117</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row73_col5\" class=\"data row73 col5\" >7.22%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row74\" class=\"row_heading level0 row74\" >174</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row74_col0\" class=\"data row74 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row74_col1\" class=\"data row74 col1\" >72</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row74_col2\" class=\"data row74 col2\" >862529</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row74_col3\" class=\"data row74 col3\" >1010582</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row74_col4\" class=\"data row74 col4\" >148053</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row74_col5\" class=\"data row74 col5\" >17.16%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row75\" class=\"row_heading level0 row75\" >35</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row75_col0\" class=\"data row75 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row75_col1\" class=\"data row75 col1\" >35</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row75_col2\" class=\"data row75 col2\" >3948335</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row75_col3\" class=\"data row75 col3\" >4095782</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row75_col4\" class=\"data row75 col4\" >147447</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row75_col5\" class=\"data row75 col5\" >3.73%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row76\" class=\"row_heading level0 row76\" >226</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row76_col0\" class=\"data row76 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row76_col1\" class=\"data row76 col1\" >22</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row76_col2\" class=\"data row76 col2\" >2098806</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row76_col3\" class=\"data row76 col3\" >2245270</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row76_col4\" class=\"data row76 col4\" >146464</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row76_col5\" class=\"data row76 col5\" >6.98%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row77\" class=\"row_heading level0 row77\" >260</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row77_col0\" class=\"data row77 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row77_col1\" class=\"data row77 col1\" >56</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row77_col2\" class=\"data row77 col2\" >2108684</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row77_col3\" class=\"data row77 col3\" >2255009</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row77_col4\" class=\"data row77 col4\" >146325</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row77_col5\" class=\"data row77 col5\" >6.94%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row78\" class=\"row_heading level0 row78\" >133</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row78_col0\" class=\"data row78 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row78_col1\" class=\"data row78 col1\" >31</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row78_col2\" class=\"data row78 col2\" >2026439</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row78_col3\" class=\"data row78 col3\" >2171839</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row78_col4\" class=\"data row78 col4\" >145400</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row78_col5\" class=\"data row78 col5\" >7.18%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row79\" class=\"row_heading level0 row79\" >163</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row79_col0\" class=\"data row79 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row79_col1\" class=\"data row79 col1\" >61</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row79_col2\" class=\"data row79 col2\" >1691401</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row79_col3\" class=\"data row79 col3\" >1836656</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row79_col4\" class=\"data row79 col4\" >145255</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row79_col5\" class=\"data row79 col5\" >8.59%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row80\" class=\"row_heading level0 row80\" >75</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row80_col0\" class=\"data row80 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row80_col1\" class=\"data row80 col1\" >75</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row80_col2\" class=\"data row80 col2\" >1631878</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row80_col3\" class=\"data row80 col3\" >1773756</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row80_col4\" class=\"data row80 col4\" >141878</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row80_col5\" class=\"data row80 col5\" >8.69%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row81\" class=\"row_heading level0 row81\" >128</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row81_col0\" class=\"data row81 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row81_col1\" class=\"data row81 col1\" >26</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row81_col2\" class=\"data row81 col2\" >2102331</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row81_col3\" class=\"data row81 col3\" >2240881</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row81_col4\" class=\"data row81 col4\" >138550</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row81_col5\" class=\"data row81 col5\" >6.59%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row82\" class=\"row_heading level0 row82\" >235</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row82_col0\" class=\"data row82 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row82_col1\" class=\"data row82 col1\" >31</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row82_col2\" class=\"data row82 col2\" >2016077</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row82_col3\" class=\"data row82 col3\" >2151378</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row82_col4\" class=\"data row82 col4\" >135301</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row82_col5\" class=\"data row82 col5\" >6.71%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row83\" class=\"row_heading level0 row83\" >258</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row83_col0\" class=\"data row83 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row83_col1\" class=\"data row83 col1\" >54</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row83_col2\" class=\"data row83 col2\" >2196807</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row83_col3\" class=\"data row83 col3\" >2332003</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row83_col4\" class=\"data row83 col4\" >135196</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row83_col5\" class=\"data row83 col5\" >6.15%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row84\" class=\"row_heading level0 row84\" >277</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row84_col0\" class=\"data row84 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row84_col1\" class=\"data row84 col1\" >73</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row84_col2\" class=\"data row84 col2\" >955658</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row84_col3\" class=\"data row84 col3\" >1089027</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row84_col4\" class=\"data row84 col4\" >133369</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row84_col5\" class=\"data row84 col5\" >13.96%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row85\" class=\"row_heading level0 row85\" >247</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row85_col0\" class=\"data row85 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row85_col1\" class=\"data row85 col1\" >43</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row85_col2\" class=\"data row85 col2\" >2062862</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row85_col3\" class=\"data row85 col3\" >2185890</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row85_col4\" class=\"data row85 col4\" >123028</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row85_col5\" class=\"data row85 col5\" >5.96%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row86\" class=\"row_heading level0 row86\" >127</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row86_col0\" class=\"data row86 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row86_col1\" class=\"data row86 col1\" >25</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row86_col2\" class=\"data row86 col2\" >2177131</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row86_col3\" class=\"data row86 col3\" >2296875</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row86_col4\" class=\"data row86 col4\" >119744</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row86_col5\" class=\"data row86 col5\" >5.50%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row87\" class=\"row_heading level0 row87\" >175</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row87_col0\" class=\"data row87 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row87_col1\" class=\"data row87 col1\" >73</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row87_col2\" class=\"data row87 col2\" >794646</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row87_col3\" class=\"data row87 col3\" >912673</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row87_col4\" class=\"data row87 col4\" >118027</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row87_col5\" class=\"data row87 col5\" >14.85%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row88\" class=\"row_heading level0 row88\" >145</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row88_col0\" class=\"data row88 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row88_col1\" class=\"data row88 col1\" >43</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row88_col2\" class=\"data row88 col2\" >2030982</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row88_col3\" class=\"data row88 col3\" >2147960</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row88_col4\" class=\"data row88 col4\" >116978</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row88_col5\" class=\"data row88 col5\" >5.76%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row89\" class=\"row_heading level0 row89\" >7</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row89_col0\" class=\"data row89 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row89_col1\" class=\"data row89 col1\" >7</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row89_col2\" class=\"data row89 col2\" >4043046</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row89_col3\" class=\"data row89 col3\" >4155326</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row89_col4\" class=\"data row89 col4\" >112280</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row89_col5\" class=\"data row89 col5\" >2.78%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row90\" class=\"row_heading level0 row90\" >146</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row90_col0\" class=\"data row90 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row90_col1\" class=\"data row90 col1\" >44</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row90_col2\" class=\"data row90 col2\" >2074572</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row90_col3\" class=\"data row90 col3\" >2184448</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row90_col4\" class=\"data row90 col4\" >109876</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row90_col5\" class=\"data row90 col5\" >5.30%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row91\" class=\"row_heading level0 row91\" >230</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row91_col0\" class=\"data row91 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row91_col1\" class=\"data row91 col1\" >26</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row91_col2\" class=\"data row91 col2\" >2058475</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row91_col3\" class=\"data row91 col3\" >2167162</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row91_col4\" class=\"data row91 col4\" >108687</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row91_col5\" class=\"data row91 col5\" >5.28%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row92\" class=\"row_heading level0 row92\" >280</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row92_col0\" class=\"data row92 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row92_col1\" class=\"data row92 col1\" >76</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row92_col2\" class=\"data row92 col2\" >828129</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row92_col3\" class=\"data row92 col3\" >935833</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row92_col4\" class=\"data row92 col4\" >107704</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row92_col5\" class=\"data row92 col5\" >13.01%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row93\" class=\"row_heading level0 row93\" >28</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row93_col0\" class=\"data row93 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row93_col1\" class=\"data row93 col1\" >28</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row93_col2\" class=\"data row93 col2\" >4247541</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row93_col3\" class=\"data row93 col3\" >4355240</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row93_col4\" class=\"data row93 col4\" >107699</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row93_col5\" class=\"data row93 col5\" >2.54%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row94\" class=\"row_heading level0 row94\" >131</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row94_col0\" class=\"data row94 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row94_col1\" class=\"data row94 col1\" >29</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row94_col2\" class=\"data row94 col2\" >2112313</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row94_col3\" class=\"data row94 col3\" >2219872</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row94_col4\" class=\"data row94 col4\" >107559</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row94_col5\" class=\"data row94 col5\" >5.09%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row95\" class=\"row_heading level0 row95\" >272</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row95_col0\" class=\"data row95 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row95_col1\" class=\"data row95 col1\" >68</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row95_col2\" class=\"data row95 col2\" >1254117</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row95_col3\" class=\"data row95 col3\" >1361081</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row95_col4\" class=\"data row95 col4\" >106964</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row95_col5\" class=\"data row95 col5\" >8.53%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row96\" class=\"row_heading level0 row96\" >77</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row96_col0\" class=\"data row96 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row96_col1\" class=\"data row96 col1\" >77</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row96_col2\" class=\"data row96 col2\" >1449173</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row96_col3\" class=\"data row96 col3\" >1556104</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row96_col4\" class=\"data row96 col4\" >106931</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row96_col5\" class=\"data row96 col5\" >7.38%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row97\" class=\"row_heading level0 row97\" >266</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row97_col0\" class=\"data row97 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row97_col1\" class=\"data row97 col1\" >62</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row97_col2\" class=\"data row97 col2\" >1815999</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row97_col3\" class=\"data row97 col3\" >1922402</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row97_col4\" class=\"data row97 col4\" >106403</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row97_col5\" class=\"data row97 col5\" >5.86%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row98\" class=\"row_heading level0 row98\" >170</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row98_col0\" class=\"data row98 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row98_col1\" class=\"data row98 col1\" >68</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row98_col2\" class=\"data row98 col2\" >1105699</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row98_col3\" class=\"data row98 col3\" >1211278</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row98_col4\" class=\"data row98 col4\" >105579</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row98_col5\" class=\"data row98 col5\" >9.55%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row99\" class=\"row_heading level0 row99\" >278</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row99_col0\" class=\"data row99 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row99_col1\" class=\"data row99 col1\" >74</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row99_col2\" class=\"data row99 col2\" >927165</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row99_col3\" class=\"data row99 col3\" >1032543</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row99_col4\" class=\"data row99 col4\" >105378</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row99_col5\" class=\"data row99 col5\" >11.37%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row100\" class=\"row_heading level0 row100\" >21</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row100_col0\" class=\"data row100 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row100_col1\" class=\"data row100 col1\" >21</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row100_col2\" class=\"data row100 col2\" >4387956</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row100_col3\" class=\"data row100 col3\" >4492373</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row100_col4\" class=\"data row100 col4\" >104417</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row100_col5\" class=\"data row100 col5\" >2.38%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row101\" class=\"row_heading level0 row101\" >178</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row101_col0\" class=\"data row101 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row101_col1\" class=\"data row101 col1\" >76</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row101_col2\" class=\"data row101 col2\" >653551</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row101_col3\" class=\"data row101 col3\" >757841</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row101_col4\" class=\"data row101 col4\" >104290</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row101_col5\" class=\"data row101 col5\" >15.96%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row102\" class=\"row_heading level0 row102\" >229</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row102_col0\" class=\"data row102 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row102_col1\" class=\"data row102 col1\" >25</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row102_col2\" class=\"data row102 col2\" >2112297</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row102_col3\" class=\"data row102 col3\" >2214495</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row102_col4\" class=\"data row102 col4\" >102198</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row102_col5\" class=\"data row102 col5\" >4.84%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row103\" class=\"row_heading level0 row103\" >248</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row103_col0\" class=\"data row103 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row103_col1\" class=\"data row103 col1\" >44</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row103_col2\" class=\"data row103 col2\" >2103936</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row103_col3\" class=\"data row103 col3\" >2205835</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row103_col4\" class=\"data row103 col4\" >101899</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row103_col5\" class=\"data row103 col5\" >4.84%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row104\" class=\"row_heading level0 row104\" >138</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row104_col0\" class=\"data row104 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row104_col1\" class=\"data row104 col1\" >36</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row104_col2\" class=\"data row104 col2\" >1907408</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row104_col3\" class=\"data row104 col3\" >2005880</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row104_col4\" class=\"data row104 col4\" >98472</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row104_col5\" class=\"data row104 col5\" >5.16%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row105\" class=\"row_heading level0 row105\" >176</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row105_col0\" class=\"data row105 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row105_col1\" class=\"data row105 col1\" >74</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row105_col2\" class=\"data row105 col2\" >758830</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row105_col3\" class=\"data row105 col3\" >856970</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row105_col4\" class=\"data row105 col4\" >98140</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row105_col5\" class=\"data row105 col5\" >12.93%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row106\" class=\"row_heading level0 row106\" >27</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row106_col0\" class=\"data row106 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row106_col1\" class=\"data row106 col1\" >27</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row106_col2\" class=\"data row106 col2\" >4237026</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row106_col3\" class=\"data row106 col3\" >4334806</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row106_col4\" class=\"data row106 col4\" >97780</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row106_col5\" class=\"data row106 col5\" >2.31%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row107\" class=\"row_heading level0 row107\" >53</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row107_col0\" class=\"data row107 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row107_col1\" class=\"data row107 col1\" >53</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row107_col2\" class=\"data row107 col2\" >4439403</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row107_col3\" class=\"data row107 col3\" >4535430</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row107_col4\" class=\"data row107 col4\" >96027</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row107_col5\" class=\"data row107 col5\" >2.16%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row108\" class=\"row_heading level0 row108\" >8</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row108_col0\" class=\"data row108 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row108_col1\" class=\"data row108 col1\" >8</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row108_col2\" class=\"data row108 col2\" >4025604</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row108_col3\" class=\"data row108 col3\" >4120903</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row108_col4\" class=\"data row108 col4\" >95299</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row108_col5\" class=\"data row108 col5\" >2.37%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row109\" class=\"row_heading level0 row109\" >14</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row109_col0\" class=\"data row109 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row109_col1\" class=\"data row109 col1\" >14</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row109_col2\" class=\"data row109 col2\" >4145614</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row109_col3\" class=\"data row109 col3\" >4233839</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row109_col4\" class=\"data row109 col4\" >88225</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row109_col5\" class=\"data row109 col5\" >2.13%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row110\" class=\"row_heading level0 row110\" >240</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row110_col0\" class=\"data row110 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row110_col1\" class=\"data row110 col1\" >36</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row110_col2\" class=\"data row110 col2\" >1922791</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row110_col3\" class=\"data row110 col3\" >2010831</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row110_col4\" class=\"data row110 col4\" >88040</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row110_col5\" class=\"data row110 col5\" >4.58%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row111\" class=\"row_heading level0 row111\" >164</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row111_col0\" class=\"data row111 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row111_col1\" class=\"data row111 col1\" >62</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row111_col2\" class=\"data row111 col2\" >1679060</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row111_col3\" class=\"data row111 col3\" >1762880</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row111_col4\" class=\"data row111 col4\" >83820</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row111_col5\" class=\"data row111 col5\" >4.99%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row112\" class=\"row_heading level0 row112\" >157</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row112_col0\" class=\"data row112 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row112_col1\" class=\"data row112 col1\" >55</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row112_col2\" class=\"data row112 col2\" >2075199</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row112_col3\" class=\"data row112 col3\" >2158427</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row112_col4\" class=\"data row112 col4\" >83228</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row112_col5\" class=\"data row112 col5\" >4.01%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row113\" class=\"row_heading level0 row113\" >91</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row113_col0\" class=\"data row113 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row113_col1\" class=\"data row113 col1\" >91</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row113_col2\" class=\"data row113 col2\" >344442</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row113_col3\" class=\"data row113 col3\" >425314</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row113_col4\" class=\"data row113 col4\" >80872</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row113_col5\" class=\"data row113 col5\" >23.48%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row114\" class=\"row_heading level0 row114\" >37</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row114_col0\" class=\"data row114 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row114_col1\" class=\"data row114 col1\" >37</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row114_col2\" class=\"data row114 col2\" >3896766</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row114_col3\" class=\"data row114 col3\" >3976750</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row114_col4\" class=\"data row114 col4\" >79984</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row114_col5\" class=\"data row114 col5\" >2.05%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row115\" class=\"row_heading level0 row115\" >259</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row115_col0\" class=\"data row115 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row115_col1\" class=\"data row115 col1\" >55</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row115_col2\" class=\"data row115 col2\" >2183771</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row115_col3\" class=\"data row115 col3\" >2263429</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row115_col4\" class=\"data row115 col4\" >79658</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row115_col5\" class=\"data row115 col5\" >3.65%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row116\" class=\"row_heading level0 row116\" >78</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row116_col0\" class=\"data row116 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row116_col1\" class=\"data row116 col1\" >78</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row116_col2\" class=\"data row116 col2\" >1402182</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row116_col3\" class=\"data row116 col3\" >1480611</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row116_col4\" class=\"data row116 col4\" >78429</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row116_col5\" class=\"data row116 col5\" >5.59%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row117\" class=\"row_heading level0 row117\" >177</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row117_col0\" class=\"data row117 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row117_col1\" class=\"data row117 col1\" >75</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row117_col2\" class=\"data row117 col2\" >725663</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row117_col3\" class=\"data row117 col3\" >802960</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row117_col4\" class=\"data row117 col4\" >77297</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row117_col5\" class=\"data row117 col5\" >10.65%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row118\" class=\"row_heading level0 row118\" >239</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row118_col0\" class=\"data row118 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row118_col1\" class=\"data row118 col1\" >35</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row118_col2\" class=\"data row118 col2\" >1973699</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row118_col3\" class=\"data row118 col3\" >2047905</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row118_col4\" class=\"data row118 col4\" >74206</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row118_col5\" class=\"data row118 col5\" >3.76%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row119\" class=\"row_heading level0 row119\" >233</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row119_col0\" class=\"data row119 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row119_col1\" class=\"data row119 col1\" >29</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row119_col2\" class=\"data row119 col2\" >2097973</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row119_col3\" class=\"data row119 col3\" >2171916</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row119_col4\" class=\"data row119 col4\" >73943</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row119_col5\" class=\"data row119 col5\" >3.52%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row120\" class=\"row_heading level0 row120\" >130</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row120_col0\" class=\"data row120 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row120_col1\" class=\"data row120 col1\" >28</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row120_col2\" class=\"data row120 col2\" >2134981</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row120_col3\" class=\"data row120 col3\" >2208749</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row120_col4\" class=\"data row120 col4\" >73768</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row120_col5\" class=\"data row120 col5\" >3.46%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row121\" class=\"row_heading level0 row121\" >137</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row121_col0\" class=\"data row121 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row121_col1\" class=\"data row121 col1\" >35</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row121_col2\" class=\"data row121 col2\" >1974636</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row121_col3\" class=\"data row121 col3\" >2047877</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row121_col4\" class=\"data row121 col4\" >73241</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row121_col5\" class=\"data row121 col5\" >3.71%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row122\" class=\"row_heading level0 row122\" >123</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row122_col0\" class=\"data row122 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row122_col1\" class=\"data row122 col1\" >21</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row122_col2\" class=\"data row122 col2\" >2241083</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row122_col3\" class=\"data row122 col3\" >2312917</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row122_col4\" class=\"data row122 col4\" >71834</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row122_col5\" class=\"data row122 col5\" >3.21%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row123\" class=\"row_heading level0 row123\" >129</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row123_col0\" class=\"data row123 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row123_col1\" class=\"data row123 col1\" >27</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row123_col2\" class=\"data row123 col2\" >2135178</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row123_col3\" class=\"data row123 col3\" >2201518</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row123_col4\" class=\"data row123 col4\" >66340</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row123_col5\" class=\"data row123 col5\" >3.11%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row124\" class=\"row_heading level0 row124\" >93</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row124_col0\" class=\"data row124 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row124_col1\" class=\"data row124 col1\" >93</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row124_col2\" class=\"data row124 col2\" >219064</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row124_col3\" class=\"data row124 col3\" >284885</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row124_col4\" class=\"data row124 col4\" >65821</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row124_col5\" class=\"data row124 col5\" >30.05%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row125\" class=\"row_heading level0 row125\" >279</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row125_col0\" class=\"data row125 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row125_col1\" class=\"data row125 col1\" >75</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row125_col2\" class=\"data row125 col2\" >906215</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row125_col3\" class=\"data row125 col3\" >970796</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row125_col4\" class=\"data row125 col4\" >64581</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row125_col5\" class=\"data row125 col5\" >7.13%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row126\" class=\"row_heading level0 row126\" >92</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row126_col0\" class=\"data row126 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row126_col1\" class=\"data row126 col1\" >92</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row126_col2\" class=\"data row126 col2\" >288841</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row126_col3\" class=\"data row126 col3\" >352912</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row126_col4\" class=\"data row126 col4\" >64071</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row126_col5\" class=\"data row126 col5\" >22.18%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row127\" class=\"row_heading level0 row127\" >6</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row127_col0\" class=\"data row127 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row127_col1\" class=\"data row127 col1\" >6</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row127_col2\" class=\"data row127 col2\" >4073013</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row127_col3\" class=\"data row127 col3\" >4135930</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row127_col4\" class=\"data row127 col4\" >62917</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row127_col5\" class=\"data row127 col5\" >1.54%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row128\" class=\"row_heading level0 row128\" >90</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row128_col0\" class=\"data row128 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row128_col1\" class=\"data row128 col1\" >90</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row128_col2\" class=\"data row128 col2\" >448324</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row128_col3\" class=\"data row128 col3\" >511074</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row128_col4\" class=\"data row128 col4\" >62750</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row128_col5\" class=\"data row128 col5\" >14.00%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row129\" class=\"row_heading level0 row129\" >109</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row129_col0\" class=\"data row129 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row129_col1\" class=\"data row129 col1\" >7</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row129_col2\" class=\"data row129 col2\" >2063139</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row129_col3\" class=\"data row129 col3\" >2122832</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row129_col4\" class=\"data row129 col4\" >59693</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row129_col5\" class=\"data row129 col5\" >2.89%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row130\" class=\"row_heading level0 row130\" >179</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row130_col0\" class=\"data row130 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row130_col1\" class=\"data row130 col1\" >77</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row130_col2\" class=\"data row130 col2\" >630867</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row130_col3\" class=\"data row130 col3\" >689162</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row130_col4\" class=\"data row130 col4\" >58295</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row130_col5\" class=\"data row130 col5\" >9.24%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row131\" class=\"row_heading level0 row131\" >79</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row131_col0\" class=\"data row131 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row131_col1\" class=\"data row131 col1\" >79</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row131_col2\" class=\"data row131 col2\" >1354912</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row131_col3\" class=\"data row131 col3\" >1413193</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row131_col4\" class=\"data row131 col4\" >58281</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row131_col5\" class=\"data row131 col5\" >4.30%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row132\" class=\"row_heading level0 row132\" >211</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row132_col0\" class=\"data row132 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row132_col1\" class=\"data row132 col1\" >7</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row132_col2\" class=\"data row132 col2\" >1979907</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row132_col3\" class=\"data row132 col3\" >2032494</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row132_col4\" class=\"data row132 col4\" >52587</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row132_col5\" class=\"data row132 col5\" >2.66%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row133\" class=\"row_heading level0 row133\" >89</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row133_col0\" class=\"data row133 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row133_col1\" class=\"data row133 col1\" >89</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row133_col2\" class=\"data row133 col2\" >546193</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row133_col3\" class=\"data row133 col3\" >597828</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row133_col4\" class=\"data row133 col4\" >51635</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row133_col5\" class=\"data row133 col5\" >9.45%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row134\" class=\"row_heading level0 row134\" >13</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row134_col0\" class=\"data row134 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row134_col1\" class=\"data row134 col1\" >13</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row134_col2\" class=\"data row134 col2\" >4119666</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row134_col3\" class=\"data row134 col3\" >4171030</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row134_col4\" class=\"data row134 col4\" >51364</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row134_col5\" class=\"data row134 col5\" >1.25%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row135\" class=\"row_heading level0 row135\" >110</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row135_col0\" class=\"data row135 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row135_col1\" class=\"data row135 col1\" >8</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row135_col2\" class=\"data row135 col2\" >2054462</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row135_col3\" class=\"data row135 col3\" >2105618</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row135_col4\" class=\"data row135 col4\" >51156</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row135_col5\" class=\"data row135 col5\" >2.49%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row136\" class=\"row_heading level0 row136\" >281</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row136_col0\" class=\"data row136 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row136_col1\" class=\"data row136 col1\" >77</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row136_col2\" class=\"data row136 col2\" >818306</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row136_col3\" class=\"data row136 col3\" >866942</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row136_col4\" class=\"data row136 col4\" >48636</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row136_col5\" class=\"data row136 col5\" >5.94%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row137\" class=\"row_heading level0 row137\" >155</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row137_col0\" class=\"data row137 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row137_col1\" class=\"data row137 col1\" >53</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row137_col2\" class=\"data row137 col2\" >2170923</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row137_col3\" class=\"data row137 col3\" >2219328</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row137_col4\" class=\"data row137 col4\" >48405</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row137_col5\" class=\"data row137 col5\" >2.23%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row138\" class=\"row_heading level0 row138\" >295</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row138_col0\" class=\"data row138 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row138_col1\" class=\"data row138 col1\" >91</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row138_col2\" class=\"data row138 col2\" >240151</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row138_col3\" class=\"data row138 col3\" >287889</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row138_col4\" class=\"data row138 col4\" >47738</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row138_col5\" class=\"data row138 col5\" >19.88%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row139\" class=\"row_heading level0 row139\" >257</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row139_col0\" class=\"data row139 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row139_col1\" class=\"data row139 col1\" >53</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row139_col2\" class=\"data row139 col2\" >2268480</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row139_col3\" class=\"data row139 col3\" >2316102</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row139_col4\" class=\"data row139 col4\" >47622</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row139_col5\" class=\"data row139 col5\" >2.10%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row140\" class=\"row_heading level0 row140\" >87</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row140_col0\" class=\"data row140 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row140_col1\" class=\"data row140 col1\" >87</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row140_col2\" class=\"data row140 col2\" >721196</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row140_col3\" class=\"data row140 col3\" >768676</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row140_col4\" class=\"data row140 col4\" >47480</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row140_col5\" class=\"data row140 col5\" >6.58%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row141\" class=\"row_heading level0 row141\" >84</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row141_col0\" class=\"data row141 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row141_col1\" class=\"data row141 col1\" >84</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row141_col2\" class=\"data row141 col2\" >987023</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row141_col3\" class=\"data row141 col3\" >1034369</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row141_col4\" class=\"data row141 col4\" >47346</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row141_col5\" class=\"data row141 col5\" >4.80%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row142\" class=\"row_heading level0 row142\" >94</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row142_col0\" class=\"data row142 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row142_col1\" class=\"data row142 col1\" >94</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row142_col2\" class=\"data row142 col2\" >170775</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row142_col3\" class=\"data row142 col3\" >217328</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row142_col4\" class=\"data row142 col4\" >46553</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row142_col5\" class=\"data row142 col5\" >27.26%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row143\" class=\"row_heading level0 row143\" >218</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row143_col0\" class=\"data row143 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row143_col1\" class=\"data row143 col1\" >14</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row143_col2\" class=\"data row143 col2\" >2022701</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row143_col3\" class=\"data row143 col3\" >2068915</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row143_col4\" class=\"data row143 col4\" >46214</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row143_col5\" class=\"data row143 col5\" >2.28%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row144\" class=\"row_heading level0 row144\" >180</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row144_col0\" class=\"data row144 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row144_col1\" class=\"data row144 col1\" >78</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row144_col2\" class=\"data row144 col2\" >602774</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row144_col3\" class=\"data row144 col3\" >648696</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row144_col4\" class=\"data row144 col4\" >45922</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row144_col5\" class=\"data row144 col5\" >7.62%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row145\" class=\"row_heading level0 row145\" >139</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row145_col0\" class=\"data row145 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row145_col1\" class=\"data row145 col1\" >37</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row145_col2\" class=\"data row145 col2\" >1934537</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row145_col3\" class=\"data row145 col3\" >1979888</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row145_col4\" class=\"data row145 col4\" >45351</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row145_col5\" class=\"data row145 col5\" >2.34%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row146\" class=\"row_heading level0 row146\" >212</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row146_col0\" class=\"data row146 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row146_col1\" class=\"data row146 col1\" >8</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row146_col2\" class=\"data row146 col2\" >1971142</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row146_col3\" class=\"data row146 col3\" >2015285</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row146_col4\" class=\"data row146 col4\" >44143</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row146_col5\" class=\"data row146 col5\" >2.24%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row147\" class=\"row_heading level0 row147\" >116</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row147_col0\" class=\"data row147 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row147_col1\" class=\"data row147 col1\" >14</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row147_col2\" class=\"data row147 col2\" >2122913</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row147_col3\" class=\"data row147 col3\" >2164924</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row147_col4\" class=\"data row147 col4\" >42011</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row147_col5\" class=\"data row147 col5\" >1.98%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row148\" class=\"row_heading level0 row148\" >297</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row148_col0\" class=\"data row148 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row148_col1\" class=\"data row148 col1\" >93</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row148_col2\" class=\"data row148 col2\" >158882</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row148_col3\" class=\"data row148 col3\" >199426</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row148_col4\" class=\"data row148 col4\" >40544</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row148_col5\" class=\"data row148 col5\" >25.52%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row149\" class=\"row_heading level0 row149\" >296</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row149_col0\" class=\"data row149 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row149_col1\" class=\"data row149 col1\" >92</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row149_col2\" class=\"data row149 col2\" >205379</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row149_col3\" class=\"data row149 col3\" >243648</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row149_col4\" class=\"data row149 col4\" >38269</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row149_col5\" class=\"data row149 col5\" >18.63%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row150\" class=\"row_heading level0 row150\" >88</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row150_col0\" class=\"data row150 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row150_col1\" class=\"data row150 col1\" >88</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row150_col2\" class=\"data row150 col2\" >636657</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row150_col3\" class=\"data row150 col3\" >673402</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row150_col4\" class=\"data row150 col4\" >36745</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row150_col5\" class=\"data row150 col5\" >5.77%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row151\" class=\"row_heading level0 row151\" >181</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row151_col0\" class=\"data row151 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row151_col1\" class=\"data row151 col1\" >79</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row151_col2\" class=\"data row151 col2\" >573885</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row151_col3\" class=\"data row151 col3\" >610115</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row151_col4\" class=\"data row151 col4\" >36230</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row151_col5\" class=\"data row151 col5\" >6.31%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row152\" class=\"row_heading level0 row152\" >186</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row152_col0\" class=\"data row152 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row152_col1\" class=\"data row152 col1\" >84</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row152_col2\" class=\"data row152 col2\" >375685</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row152_col3\" class=\"data row152 col3\" >410385</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row152_col4\" class=\"data row152 col4\" >34700</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row152_col5\" class=\"data row152 col5\" >9.24%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row153\" class=\"row_heading level0 row153\" >241</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row153_col0\" class=\"data row153 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row153_col1\" class=\"data row153 col1\" >37</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row153_col2\" class=\"data row153 col2\" >1962229</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row153_col3\" class=\"data row153 col3\" >1996862</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row153_col4\" class=\"data row153 col4\" >34633</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row153_col5\" class=\"data row153 col5\" >1.76%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row154\" class=\"row_heading level0 row154\" >294</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row154_col0\" class=\"data row154 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row154_col1\" class=\"data row154 col1\" >90</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row154_col2\" class=\"data row154 col2\" >306925</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row154_col3\" class=\"data row154 col3\" >341430</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row154_col4\" class=\"data row154 col4\" >34505</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row154_col5\" class=\"data row154 col5\" >11.24%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row155\" class=\"row_heading level0 row155\" >232</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row155_col0\" class=\"data row155 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row155_col1\" class=\"data row155 col1\" >28</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row155_col2\" class=\"data row155 col2\" >2112560</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row155_col3\" class=\"data row155 col3\" >2146491</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row155_col4\" class=\"data row155 col4\" >33931</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row155_col5\" class=\"data row155 col5\" >1.61%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row156\" class=\"row_heading level0 row156\" >193</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row156_col0\" class=\"data row156 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row156_col1\" class=\"data row156 col1\" >91</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row156_col2\" class=\"data row156 col2\" >104291</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row156_col3\" class=\"data row156 col3\" >137425</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row156_col4\" class=\"data row156 col4\" >33134</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row156_col5\" class=\"data row156 col5\" >31.77%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row157\" class=\"row_heading level0 row157\" >225</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row157_col0\" class=\"data row157 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row157_col1\" class=\"data row157 col1\" >21</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row157_col2\" class=\"data row157 col2\" >2146873</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row157_col3\" class=\"data row157 col3\" >2179456</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row157_col4\" class=\"data row157 col4\" >32583</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row157_col5\" class=\"data row157 col5\" >1.52%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row158\" class=\"row_heading level0 row158\" >282</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row158_col0\" class=\"data row158 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row158_col1\" class=\"data row158 col1\" >78</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row158_col2\" class=\"data row158 col2\" >799408</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row158_col3\" class=\"data row158 col3\" >831915</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row158_col4\" class=\"data row158 col4\" >32507</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row158_col5\" class=\"data row158 col5\" >4.07%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row159\" class=\"row_heading level0 row159\" >86</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row159_col0\" class=\"data row159 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row159_col1\" class=\"data row159 col1\" >86</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row159_col2\" class=\"data row159 col2\" >821549</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row159_col3\" class=\"data row159 col3\" >853723</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row159_col4\" class=\"data row159 col4\" >32174</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row159_col5\" class=\"data row159 col5\" >3.92%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row160\" class=\"row_heading level0 row160\" >108</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row160_col0\" class=\"data row160 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row160_col1\" class=\"data row160 col1\" >6</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row160_col2\" class=\"data row160 col2\" >2079410</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row160_col3\" class=\"data row160 col3\" >2111060</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row160_col4\" class=\"data row160 col4\" >31650</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row160_col5\" class=\"data row160 col5\" >1.52%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row161\" class=\"row_heading level0 row161\" >231</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row161_col0\" class=\"data row161 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row161_col1\" class=\"data row161 col1\" >27</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row161_col2\" class=\"data row161 col2\" >2101848</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row161_col3\" class=\"data row161 col3\" >2133288</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row161_col4\" class=\"data row161 col4\" >31440</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row161_col5\" class=\"data row161 col5\" >1.50%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row162\" class=\"row_heading level0 row162\" >210</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row162_col0\" class=\"data row162 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row162_col1\" class=\"data row162 col1\" >6</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row162_col2\" class=\"data row162 col2\" >1993603</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row162_col3\" class=\"data row162 col3\" >2024870</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row162_col4\" class=\"data row162 col4\" >31267</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row162_col5\" class=\"data row162 col5\" >1.57%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row163\" class=\"row_heading level0 row163\" >189</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row163_col0\" class=\"data row163 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row163_col1\" class=\"data row163 col1\" >87</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row163_col2\" class=\"data row163 col2\" >253621</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row163_col3\" class=\"data row163 col3\" >282423</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row163_col4\" class=\"data row163 col4\" >28802</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row163_col5\" class=\"data row163 col5\" >11.36%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row164\" class=\"row_heading level0 row164\" >298</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row164_col0\" class=\"data row164 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row164_col1\" class=\"data row164 col1\" >94</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row164_col2\" class=\"data row164 col2\" >126948</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row164_col3\" class=\"data row164 col3\" >155637</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row164_col4\" class=\"data row164 col4\" >28689</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row164_col5\" class=\"data row164 col5\" >22.60%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row165\" class=\"row_heading level0 row165\" >192</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row165_col0\" class=\"data row165 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row165_col1\" class=\"data row165 col1\" >90</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row165_col2\" class=\"data row165 col2\" >141399</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row165_col3\" class=\"data row165 col3\" >169644</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row165_col4\" class=\"data row165 col4\" >28245</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row165_col5\" class=\"data row165 col5\" >19.98%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row166\" class=\"row_heading level0 row166\" >217</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row166_col0\" class=\"data row166 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row166_col1\" class=\"data row166 col1\" >13</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row166_col2\" class=\"data row166 col2\" >2014717</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row166_col3\" class=\"data row166 col3\" >2042116</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row166_col4\" class=\"data row166 col4\" >27399</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row166_col5\" class=\"data row166 col5\" >1.36%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row167\" class=\"row_heading level0 row167\" >293</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row167_col0\" class=\"data row167 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row167_col1\" class=\"data row167 col1\" >89</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row167_col2\" class=\"data row167 col2\" >365732</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row167_col3\" class=\"data row167 col3\" >392978</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row167_col4\" class=\"data row167 col4\" >27246</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row167_col5\" class=\"data row167 col5\" >7.45%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row168\" class=\"row_heading level0 row168\" >188</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row168_col0\" class=\"data row168 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row168_col1\" class=\"data row168 col1\" >86</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row168_col2\" class=\"data row168 col2\" >295396</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row168_col3\" class=\"data row168 col3\" >322043</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row168_col4\" class=\"data row168 col4\" >26647</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row168_col5\" class=\"data row168 col5\" >9.02%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row169\" class=\"row_heading level0 row169\" >194</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row169_col0\" class=\"data row169 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row169_col1\" class=\"data row169 col1\" >92</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row169_col2\" class=\"data row169 col2\" >83462</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row169_col3\" class=\"data row169 col3\" >109264</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row169_col4\" class=\"data row169 col4\" >25802</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row169_col5\" class=\"data row169 col5\" >30.91%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row170\" class=\"row_heading level0 row170\" >195</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row170_col0\" class=\"data row170 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row170_col1\" class=\"data row170 col1\" >93</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row170_col2\" class=\"data row170 col2\" >60182</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row170_col3\" class=\"data row170 col3\" >85459</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row170_col4\" class=\"data row170 col4\" >25277</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row170_col5\" class=\"data row170 col5\" >42.00%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row171\" class=\"row_heading level0 row171\" >95</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row171_col0\" class=\"data row171 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row171_col1\" class=\"data row171 col1\" >95</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row171_col2\" class=\"data row171 col2\" >131077</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row171_col3\" class=\"data row171 col3\" >156288</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row171_col4\" class=\"data row171 col4\" >25211</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row171_col5\" class=\"data row171 col5\" >19.23%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row172\" class=\"row_heading level0 row172\" >191</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row172_col0\" class=\"data row172 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row172_col1\" class=\"data row172 col1\" >89</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row172_col2\" class=\"data row172 col2\" >180461</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row172_col3\" class=\"data row172 col3\" >204850</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row172_col4\" class=\"data row172 col4\" >24389</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row172_col5\" class=\"data row172 col5\" >13.51%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row173\" class=\"row_heading level0 row173\" >115</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row173_col0\" class=\"data row173 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row173_col1\" class=\"data row173 col1\" >13</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row173_col2\" class=\"data row173 col2\" >2104949</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row173_col3\" class=\"data row173 col3\" >2128914</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row173_col4\" class=\"data row173 col4\" >23965</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row173_col5\" class=\"data row173 col5\" >1.14%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row174\" class=\"row_heading level0 row174\" >96</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row174_col0\" class=\"data row174 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row174_col1\" class=\"data row174 col1\" >96</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row174_col2\" class=\"data row174 col2\" >97161</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row174_col3\" class=\"data row174 col3\" >120485</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row174_col4\" class=\"data row174 col4\" >23324</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row174_col5\" class=\"data row174 col5\" >24.01%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row175\" class=\"row_heading level0 row175\" >190</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row175_col0\" class=\"data row175 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row175_col1\" class=\"data row175 col1\" >88</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row175_col2\" class=\"data row175 col2\" >216220</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row175_col3\" class=\"data row175 col3\" >239455</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row175_col4\" class=\"data row175 col4\" >23235</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row175_col5\" class=\"data row175 col5\" >10.75%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row176\" class=\"row_heading level0 row176\" >283</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row176_col0\" class=\"data row176 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row176_col1\" class=\"data row176 col1\" >79</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row176_col2\" class=\"data row176 col2\" >781027</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row176_col3\" class=\"data row176 col3\" >803078</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row176_col4\" class=\"data row176 col4\" >22051</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row176_col5\" class=\"data row176 col5\" >2.82%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row177\" class=\"row_heading level0 row177\" >187</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row177_col0\" class=\"data row177 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row177_col1\" class=\"data row177 col1\" >85</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row177_col2\" class=\"data row177 col2\" >337661</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row177_col3\" class=\"data row177 col3\" >358342</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row177_col4\" class=\"data row177 col4\" >20681</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row177_col5\" class=\"data row177 col5\" >6.12%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row178\" class=\"row_heading level0 row178\" >291</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row178_col0\" class=\"data row178 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row178_col1\" class=\"data row178 col1\" >87</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row178_col2\" class=\"data row178 col2\" >467575</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row178_col3\" class=\"data row178 col3\" >486253</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row178_col4\" class=\"data row178 col4\" >18678</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row178_col5\" class=\"data row178 col5\" >3.99%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row179\" class=\"row_heading level0 row179\" >185</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row179_col0\" class=\"data row179 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row179_col1\" class=\"data row179 col1\" >83</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row179_col2\" class=\"data row179 col2\" >422999</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row179_col3\" class=\"data row179 col3\" >441530</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row179_col4\" class=\"data row179 col4\" >18531</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row179_col5\" class=\"data row179 col5\" >4.38%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row180\" class=\"row_heading level0 row180\" >196</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row180_col0\" class=\"data row180 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row180_col1\" class=\"data row180 col1\" >94</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row180_col2\" class=\"data row180 col2\" >43827</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row180_col3\" class=\"data row180 col3\" >61691</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row180_col4\" class=\"data row180 col4\" >17864</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row180_col5\" class=\"data row180 col5\" >40.76%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row181\" class=\"row_heading level0 row181\" >100</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row181_col0\" class=\"data row181 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row181_col1\" class=\"data row181 col1\" >100</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row181_col2\" class=\"data row181 col2\" >54410</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row181_col3\" class=\"data row181 col3\" >71626</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row181_col4\" class=\"data row181 col4\" >17216</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row181_col5\" class=\"data row181 col5\" >31.64%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row182\" class=\"row_heading level0 row182\" >42</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row182_col0\" class=\"data row182 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row182_col1\" class=\"data row182 col1\" >42</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row182_col2\" class=\"data row182 col2\" >4082712</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row182_col3\" class=\"data row182 col3\" >4097698</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row182_col4\" class=\"data row182 col4\" >14986</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row182_col5\" class=\"data row182 col5\" >0.37%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row183\" class=\"row_heading level0 row183\" >246</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row183_col0\" class=\"data row183 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row183_col1\" class=\"data row183 col1\" >42</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row183_col2\" class=\"data row183 col2\" >2050930</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row183_col3\" class=\"data row183 col3\" >2065491</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row183_col4\" class=\"data row183 col4\" >14561</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row183_col5\" class=\"data row183 col5\" >0.71%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row184\" class=\"row_heading level0 row184\" >299</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row184_col0\" class=\"data row184 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row184_col1\" class=\"data row184 col1\" >95</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row184_col2\" class=\"data row184 col2\" >99341</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row184_col3\" class=\"data row184 col3\" >113732</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row184_col4\" class=\"data row184 col4\" >14391</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row184_col5\" class=\"data row184 col5\" >14.49%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row185\" class=\"row_heading level0 row185\" >300</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row185_col0\" class=\"data row185 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row185_col1\" class=\"data row185 col1\" >96</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row185_col2\" class=\"data row185 col2\" >75139</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row185_col3\" class=\"data row185 col3\" >89432</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row185_col4\" class=\"data row185 col4\" >14293</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row185_col5\" class=\"data row185 col5\" >19.02%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row186\" class=\"row_heading level0 row186\" >183</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row186_col0\" class=\"data row186 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row186_col1\" class=\"data row186 col1\" >81</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row186_col2\" class=\"data row186 col2\" >496070</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row186_col3\" class=\"data row186 col3\" >510305</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row186_col4\" class=\"data row186 col4\" >14235</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row186_col5\" class=\"data row186 col5\" >2.87%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row187\" class=\"row_heading level0 row187\" >97</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row187_col0\" class=\"data row187 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row187_col1\" class=\"data row187 col1\" >97</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row187_col2\" class=\"data row187 col2\" >68893</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row187_col3\" class=\"data row187 col3\" >83089</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row187_col4\" class=\"data row187 col4\" >14196</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row187_col5\" class=\"data row187 col5\" >20.61%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row188\" class=\"row_heading level0 row188\" >292</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row188_col0\" class=\"data row188 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row188_col1\" class=\"data row188 col1\" >88</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row188_col2\" class=\"data row188 col2\" >420437</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row188_col3\" class=\"data row188 col3\" >433947</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row188_col4\" class=\"data row188 col4\" >13510</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row188_col5\" class=\"data row188 col5\" >3.21%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row189\" class=\"row_heading level0 row189\" >184</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row189_col0\" class=\"data row189 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row189_col1\" class=\"data row189 col1\" >82</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row189_col2\" class=\"data row189 col2\" >462807</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row189_col3\" class=\"data row189 col3\" >476034</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row189_col4\" class=\"data row189 col4\" >13227</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row189_col5\" class=\"data row189 col5\" >2.86%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row190\" class=\"row_heading level0 row190\" >304</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row190_col0\" class=\"data row190 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row190_col1\" class=\"data row190 col1\" >100</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row190_col2\" class=\"data row190 col2\" >45058</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row190_col3\" class=\"data row190 col3\" >58008</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row190_col4\" class=\"data row190 col4\" >12950</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row190_col5\" class=\"data row190 col5\" >28.74%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row191\" class=\"row_heading level0 row191\" >98</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row191_col0\" class=\"data row191 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row191_col1\" class=\"data row191 col1\" >98</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row191_col2\" class=\"data row191 col2\" >47037</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row191_col3\" class=\"data row191 col3\" >59726</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row191_col4\" class=\"data row191 col4\" >12689</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row191_col5\" class=\"data row191 col5\" >26.98%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row192\" class=\"row_heading level0 row192\" >288</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row192_col0\" class=\"data row192 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row192_col1\" class=\"data row192 col1\" >84</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row192_col2\" class=\"data row192 col2\" >611338</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row192_col3\" class=\"data row192 col3\" >623984</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row192_col4\" class=\"data row192 col4\" >12646</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row192_col5\" class=\"data row192 col5\" >2.07%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row193\" class=\"row_heading level0 row193\" >197</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row193_col0\" class=\"data row193 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row193_col1\" class=\"data row193 col1\" >95</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row193_col2\" class=\"data row193 col2\" >31736</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row193_col3\" class=\"data row193 col3\" >42556</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row193_col4\" class=\"data row193 col4\" >10820</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row193_col5\" class=\"data row193 col5\" >34.09%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row194\" class=\"row_heading level0 row194\" >99</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row194_col0\" class=\"data row194 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row194_col1\" class=\"data row194 col1\" >99</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row194_col2\" class=\"data row194 col2\" >32178</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row194_col3\" class=\"data row194 col3\" >41468</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row194_col4\" class=\"data row194 col4\" >9290</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row194_col5\" class=\"data row194 col5\" >28.87%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row195\" class=\"row_heading level0 row195\" >198</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row195_col0\" class=\"data row195 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row195_col1\" class=\"data row195 col1\" >96</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row195_col2\" class=\"data row195 col2\" >22022</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row195_col3\" class=\"data row195 col3\" >31053</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row195_col4\" class=\"data row195 col4\" >9031</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row195_col5\" class=\"data row195 col5\" >41.01%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row196\" class=\"row_heading level0 row196\" >302</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row196_col0\" class=\"data row196 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row196_col1\" class=\"data row196 col1\" >98</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row196_col2\" class=\"data row196 col2\" >37532</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row196_col3\" class=\"data row196 col3\" >46208</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row196_col4\" class=\"data row196 col4\" >8676</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row196_col5\" class=\"data row196 col5\" >23.12%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row197\" class=\"row_heading level0 row197\" >301</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row197_col0\" class=\"data row197 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row197_col1\" class=\"data row197 col1\" >97</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row197_col2\" class=\"data row197 col2\" >54118</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row197_col3\" class=\"data row197 col3\" >62779</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row197_col4\" class=\"data row197 col4\" >8661</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row197_col5\" class=\"data row197 col5\" >16.00%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row198\" class=\"row_heading level0 row198\" >85</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row198_col0\" class=\"data row198 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row198_col1\" class=\"data row198 col1\" >85</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row198_col2\" class=\"data row198 col2\" >915013</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row198_col3\" class=\"data row198 col3\" >922947</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row198_col4\" class=\"data row198 col4\" >7934</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row198_col5\" class=\"data row198 col5\" >0.87%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row199\" class=\"row_heading level0 row199\" >83</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row199_col0\" class=\"data row199 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row199_col1\" class=\"data row199 col1\" >83</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row199_col2\" class=\"data row199 col2\" >1081440</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row199_col3\" class=\"data row199 col3\" >1088601</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row199_col4\" class=\"data row199 col4\" >7161</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row199_col5\" class=\"data row199 col5\" >0.66%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row200\" class=\"row_heading level0 row200\" >303</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row200_col0\" class=\"data row200 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row200_col1\" class=\"data row200 col1\" >99</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row200_col2\" class=\"data row200 col2\" >26074</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row200_col3\" class=\"data row200 col3\" >32517</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row200_col4\" class=\"data row200 col4\" >6443</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row200_col5\" class=\"data row200 col5\" >24.71%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row201\" class=\"row_heading level0 row201\" >199</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row201_col0\" class=\"data row201 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row201_col1\" class=\"data row201 col1\" >97</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row201_col2\" class=\"data row201 col2\" >14775</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row201_col3\" class=\"data row201 col3\" >20310</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row201_col4\" class=\"data row201 col4\" >5535</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row201_col5\" class=\"data row201 col5\" >37.46%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row202\" class=\"row_heading level0 row202\" >290</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row202_col0\" class=\"data row202 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row202_col1\" class=\"data row202 col1\" >86</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row202_col2\" class=\"data row202 col2\" >526153</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row202_col3\" class=\"data row202 col3\" >531680</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row202_col4\" class=\"data row202 col4\" >5527</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row202_col5\" class=\"data row202 col5\" >1.05%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row203\" class=\"row_heading level0 row203\" >202</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row203_col0\" class=\"data row203 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row203_col1\" class=\"data row203 col1\" >100</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row203_col2\" class=\"data row203 col2\" >9352</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row203_col3\" class=\"data row203 col3\" >13618</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row203_col4\" class=\"data row203 col4\" >4266</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row203_col5\" class=\"data row203 col5\" >45.62%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row204\" class=\"row_heading level0 row204\" >200</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row204_col0\" class=\"data row204 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row204_col1\" class=\"data row204 col1\" >98</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row204_col2\" class=\"data row204 col2\" >9505</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row204_col3\" class=\"data row204 col3\" >13518</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row204_col4\" class=\"data row204 col4\" >4013</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row204_col5\" class=\"data row204 col5\" >42.22%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row205\" class=\"row_heading level0 row205\" >201</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row205_col0\" class=\"data row205 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row205_col1\" class=\"data row205 col1\" >99</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row205_col2\" class=\"data row205 col2\" >6104</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row205_col3\" class=\"data row205 col3\" >8951</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row205_col4\" class=\"data row205 col4\" >2847</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row205_col5\" class=\"data row205 col5\" >46.64%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row206\" class=\"row_heading level0 row206\" >102</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row206_col0\" class=\"data row206 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row206_col1\" class=\"data row206 col1\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row206_col2\" class=\"data row206 col2\" >2018420</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row206_col3\" class=\"data row206 col3\" >2020326</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row206_col4\" class=\"data row206 col4\" >1906</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row206_col5\" class=\"data row206 col5\" >0.09%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row207\" class=\"row_heading level0 row207\" >81</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row207_col0\" class=\"data row207 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row207_col1\" class=\"data row207 col1\" >81</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row207_col2\" class=\"data row207 col2\" >1212603</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row207_col3\" class=\"data row207 col3\" >1214357</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row207_col4\" class=\"data row207 col4\" >1754</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row207_col5\" class=\"data row207 col5\" >0.14%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row208\" class=\"row_heading level0 row208\" >154</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row208_col0\" class=\"data row208 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row208_col1\" class=\"data row208 col1\" >52</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row208_col2\" class=\"data row208 col2\" >2197161</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row208_col3\" class=\"data row208 col3\" >2197801</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row208_col4\" class=\"data row208 col4\" >640</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row208_col5\" class=\"data row208 col5\" >0.03%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row209\" class=\"row_heading level0 row209\" >144</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row209_col0\" class=\"data row209 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row209_col1\" class=\"data row209 col1\" >42</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row209_col2\" class=\"data row209 col2\" >2031782</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row209_col3\" class=\"data row209 col3\" >2032207</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row209_col4\" class=\"data row209 col4\" >425</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row209_col5\" class=\"data row209 col5\" >0.02%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row210\" class=\"row_heading level0 row210\" >52</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row210_col0\" class=\"data row210 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row210_col1\" class=\"data row210 col1\" >52</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row210_col2\" class=\"data row210 col2\" >4480584</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row210_col3\" class=\"data row210 col3\" >4480188</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row210_col4\" class=\"data row210 col4\" >-396</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row210_col5\" class=\"data row210 col5\" >-0.01%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row211\" class=\"row_heading level0 row211\" >256</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row211_col0\" class=\"data row211 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row211_col1\" class=\"data row211 col1\" >52</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row211_col2\" class=\"data row211 col2\" >2283423</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row211_col3\" class=\"data row211 col3\" >2282387</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row211_col4\" class=\"data row211 col4\" >-1036</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row211_col5\" class=\"data row211 col5\" >-0.05%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row212\" class=\"row_heading level0 row212\" >0</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row212_col0\" class=\"data row212 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row212_col1\" class=\"data row212 col1\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row212_col2\" class=\"data row212 col2\" >3951330</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row212_col3\" class=\"data row212 col3\" >3949775</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row212_col4\" class=\"data row212 col4\" >-1555</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row212_col5\" class=\"data row212 col5\" >-0.04%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row213\" class=\"row_heading level0 row213\" >103</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row213_col0\" class=\"data row213 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row213_col1\" class=\"data row213 col1\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row213_col2\" class=\"data row213 col2\" >2020332</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row213_col3\" class=\"data row213 col3\" >2018401</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row213_col4\" class=\"data row213 col4\" >-1931</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row213_col5\" class=\"data row213 col5\" >-0.10%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row214\" class=\"row_heading level0 row214\" >204</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row214_col0\" class=\"data row214 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row214_col1\" class=\"data row214 col1\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row214_col2\" class=\"data row214 col2\" >1932910</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row214_col3\" class=\"data row214 col3\" >1929449</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row214_col4\" class=\"data row214 col4\" >-3461</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row214_col5\" class=\"data row214 col5\" >-0.18%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row215\" class=\"row_heading level0 row215\" >153</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row215_col0\" class=\"data row215 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row215_col1\" class=\"data row215 col1\" >51</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row215_col2\" class=\"data row215 col2\" >2209780</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row215_col3\" class=\"data row215 col3\" >2205399</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row215_col4\" class=\"data row215 col4\" >-4381</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row215_col5\" class=\"data row215 col5\" >-0.20%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row216\" class=\"row_heading level0 row216\" >255</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row216_col0\" class=\"data row216 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row216_col1\" class=\"data row216 col1\" >51</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row216_col2\" class=\"data row216 col2\" >2289194</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row216_col3\" class=\"data row216 col3\" >2283994</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row216_col4\" class=\"data row216 col4\" >-5200</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row216_col5\" class=\"data row216 col5\" >-0.23%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row217\" class=\"row_heading level0 row217\" >205</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row217_col0\" class=\"data row217 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row217_col1\" class=\"data row217 col1\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row217_col2\" class=\"data row217 col2\" >1937556</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row217_col3\" class=\"data row217 col3\" >1931375</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row217_col4\" class=\"data row217 col4\" >-6181</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row217_col5\" class=\"data row217 col5\" >-0.32%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row218\" class=\"row_heading level0 row218\" >82</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row218_col0\" class=\"data row218 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row218_col1\" class=\"data row218 col1\" >82</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row218_col2\" class=\"data row218 col2\" >1158351</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row218_col3\" class=\"data row218 col3\" >1151677</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row218_col4\" class=\"data row218 col4\" >-6674</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row218_col5\" class=\"data row218 col5\" >-0.58%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row219\" class=\"row_heading level0 row219\" >215</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row219_col0\" class=\"data row219 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row219_col1\" class=\"data row219 col1\" >11</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row219_col2\" class=\"data row219 col2\" >2010714</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row219_col3\" class=\"data row219 col3\" >2003233</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row219_col4\" class=\"data row219 col4\" >-7481</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row219_col5\" class=\"data row219 col5\" >-0.37%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row220\" class=\"row_heading level0 row220\" >213</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row220_col0\" class=\"data row220 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row220_col1\" class=\"data row220 col1\" >9</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row220_col2\" class=\"data row220 col2\" >2018378</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row220_col3\" class=\"data row220 col3\" >2010659</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row220_col4\" class=\"data row220 col4\" >-7719</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row220_col5\" class=\"data row220 col5\" >-0.38%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row221\" class=\"row_heading level0 row221\" >1</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row221_col0\" class=\"data row221 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row221_col1\" class=\"data row221 col1\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row221_col2\" class=\"data row221 col2\" >3957888</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row221_col3\" class=\"data row221 col3\" >3949776</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row221_col4\" class=\"data row221 col4\" >-8112</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row221_col5\" class=\"data row221 col5\" >-0.20%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row222\" class=\"row_heading level0 row222\" >111</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row222_col0\" class=\"data row222 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row222_col1\" class=\"data row222 col1\" >9</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row222_col2\" class=\"data row222 col2\" >2107037</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row222_col3\" class=\"data row222 col3\" >2097690</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row222_col4\" class=\"data row222 col4\" >-9347</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row222_col5\" class=\"data row222 col5\" >-0.44%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row223\" class=\"row_heading level0 row223\" >51</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row223_col0\" class=\"data row223 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row223_col1\" class=\"data row223 col1\" >51</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row223_col2\" class=\"data row223 col2\" >4498974</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row223_col3\" class=\"data row223 col3\" >4489393</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row223_col4\" class=\"data row223 col4\" >-9581</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row223_col5\" class=\"data row223 col5\" >-0.21%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row224\" class=\"row_heading level0 row224\" >182</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row224_col0\" class=\"data row224 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row224_col1\" class=\"data row224 col1\" >80</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row224_col2\" class=\"data row224 col2\" >549216</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row224_col3\" class=\"data row224 col3\" >539227</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row224_col4\" class=\"data row224 col4\" >-9989</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row224_col5\" class=\"data row224 col5\" >-1.82%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row225\" class=\"row_heading level0 row225\" >287</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row225_col0\" class=\"data row225 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row225_col1\" class=\"data row225 col1\" >83</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row225_col2\" class=\"data row225 col2\" >658441</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row225_col3\" class=\"data row225 col3\" >647071</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row225_col4\" class=\"data row225 col4\" >-11370</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row225_col5\" class=\"data row225 col5\" >-1.73%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row226\" class=\"row_heading level0 row226\" >285</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row226_col0\" class=\"data row226 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row226_col1\" class=\"data row226 col1\" >81</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row226_col2\" class=\"data row226 col2\" >716533</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row226_col3\" class=\"data row226 col3\" >704052</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row226_col4\" class=\"data row226 col4\" >-12481</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row226_col5\" class=\"data row226 col5\" >-1.74%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row227\" class=\"row_heading level0 row227\" >289</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row227_col0\" class=\"data row227 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row227_col1\" class=\"data row227 col1\" >85</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row227_col2\" class=\"data row227 col2\" >577352</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row227_col3\" class=\"data row227 col3\" >564605</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row227_col4\" class=\"data row227 col4\" >-12747</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row227_col5\" class=\"data row227 col5\" >-2.21%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row228\" class=\"row_heading level0 row228\" >216</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row228_col0\" class=\"data row228 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row228_col1\" class=\"data row228 col1\" >12</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row228_col2\" class=\"data row228 col2\" >2009630</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row228_col3\" class=\"data row228 col3\" >1994846</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row228_col4\" class=\"data row228 col4\" >-14784</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row228_col5\" class=\"data row228 col5\" >-0.74%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row229\" class=\"row_heading level0 row229\" >9</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row229_col0\" class=\"data row229 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row229_col1\" class=\"data row229 col1\" >9</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row229_col2\" class=\"data row229 col2\" >4125415</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row229_col3\" class=\"data row229 col3\" >4108349</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row229_col4\" class=\"data row229 col4\" >-17066</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row229_col5\" class=\"data row229 col5\" >-0.41%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row230\" class=\"row_heading level0 row230\" >286</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row230_col0\" class=\"data row230 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row230_col1\" class=\"data row230 col1\" >82</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row230_col2\" class=\"data row230 col2\" >695544</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row230_col3\" class=\"data row230 col3\" >675643</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row230_col4\" class=\"data row230 col4\" >-19901</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row230_col5\" class=\"data row230 col5\" >-2.86%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row231\" class=\"row_heading level0 row231\" >113</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row231_col0\" class=\"data row231 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row231_col1\" class=\"data row231 col1\" >11</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row231_col2\" class=\"data row231 col2\" >2104797</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row231_col3\" class=\"data row231 col3\" >2084169</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row231_col4\" class=\"data row231 col4\" >-20628</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row231_col5\" class=\"data row231 col5\" >-0.98%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row232\" class=\"row_heading level0 row232\" >234</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row232_col0\" class=\"data row232 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row232_col1\" class=\"data row232 col1\" >30</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row232_col2\" class=\"data row232 col2\" >2136744</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row232_col3\" class=\"data row232 col3\" >2113094</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row232_col4\" class=\"data row232 col4\" >-23650</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row232_col5\" class=\"data row232 col5\" >-1.11%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row233\" class=\"row_heading level0 row233\" >219</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row233_col0\" class=\"data row233 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row233_col1\" class=\"data row233 col1\" >15</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row233_col2\" class=\"data row233 col2\" >2060560</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row233_col3\" class=\"data row233 col3\" >2035734</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row233_col4\" class=\"data row233 col4\" >-24826</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row233_col5\" class=\"data row233 col5\" >-1.20%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row234\" class=\"row_heading level0 row234\" >132</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row234_col0\" class=\"data row234 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row234_col1\" class=\"data row234 col1\" >30</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row234_col2\" class=\"data row234 col2\" >2167495</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row234_col3\" class=\"data row234 col3\" >2142240</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row234_col4\" class=\"data row234 col4\" >-25255</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row234_col5\" class=\"data row234 col5\" >-1.17%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row235\" class=\"row_heading level0 row235\" >209</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row235_col0\" class=\"data row235 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row235_col1\" class=\"data row235 col1\" >5</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row235_col2\" class=\"data row235 col2\" >1988080</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row235_col3\" class=\"data row235 col3\" >1962561</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row235_col4\" class=\"data row235 col4\" >-25519</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row235_col5\" class=\"data row235 col5\" >-1.28%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row236\" class=\"row_heading level0 row236\" >267</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row236_col0\" class=\"data row236 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row236_col1\" class=\"data row236 col1\" >63</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row236_col2\" class=\"data row236 col2\" >1898264</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row236_col3\" class=\"data row236 col3\" >1870596</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row236_col4\" class=\"data row236 col4\" >-27668</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row236_col5\" class=\"data row236 col5\" >-1.46%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row237\" class=\"row_heading level0 row237\" >114</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row237_col0\" class=\"data row237 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row237_col1\" class=\"data row237 col1\" >12</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row237_col2\" class=\"data row237 col2\" >2103649</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row237_col3\" class=\"data row237 col3\" >2075836</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row237_col4\" class=\"data row237 col4\" >-27813</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row237_col5\" class=\"data row237 col5\" >-1.32%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row238\" class=\"row_heading level0 row238\" >11</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row238_col0\" class=\"data row238 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row238_col1\" class=\"data row238 col1\" >11</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row238_col2\" class=\"data row238 col2\" >4115511</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row238_col3\" class=\"data row238 col3\" >4087402</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row238_col4\" class=\"data row238 col4\" >-28109</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row238_col5\" class=\"data row238 col5\" >-0.68%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row239\" class=\"row_heading level0 row239\" >214</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row239_col0\" class=\"data row239 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row239_col1\" class=\"data row239 col1\" >10</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row239_col2\" class=\"data row239 col2\" >2044895</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row239_col3\" class=\"data row239 col3\" >2016680</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row239_col4\" class=\"data row239 col4\" >-28215</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row239_col5\" class=\"data row239 col5\" >-1.38%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row240\" class=\"row_heading level0 row240\" >208</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row240_col0\" class=\"data row240 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row240_col1\" class=\"data row240 col1\" >4</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row240_col2\" class=\"data row240 col2\" >1993239</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row240_col3\" class=\"data row240 col3\" >1961199</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row240_col4\" class=\"data row240 col4\" >-32040</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row240_col5\" class=\"data row240 col5\" >-1.61%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row241\" class=\"row_heading level0 row241\" >107</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row241_col0\" class=\"data row241 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row241_col1\" class=\"data row241 col1\" >5</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row241_col2\" class=\"data row241 col2\" >2076573</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row241_col3\" class=\"data row241 col3\" >2044339</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row241_col4\" class=\"data row241 col4\" >-32234</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row241_col5\" class=\"data row241 col5\" >-1.55%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row242\" class=\"row_heading level0 row242\" >106</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row242_col0\" class=\"data row242 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row242_col1\" class=\"data row242 col1\" >4</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row242_col2\" class=\"data row242 col2\" >2084312</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row242_col3\" class=\"data row242 col3\" >2044517</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row242_col4\" class=\"data row242 col4\" >-39795</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row242_col5\" class=\"data row242 col5\" >-1.91%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row243\" class=\"row_heading level0 row243\" >117</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row243_col0\" class=\"data row243 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row243_col1\" class=\"data row243 col1\" >15</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row243_col2\" class=\"data row243 col2\" >2170442</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row243_col3\" class=\"data row243 col3\" >2129062</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row243_col4\" class=\"data row243 col4\" >-41380</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row243_col5\" class=\"data row243 col5\" >-1.91%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row244\" class=\"row_heading level0 row244\" >112</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row244_col0\" class=\"data row244 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row244_col1\" class=\"data row244 col1\" >10</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row244_col2\" class=\"data row244 col2\" >2142167</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row244_col3\" class=\"data row244 col3\" >2100262</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row244_col4\" class=\"data row244 col4\" >-41905</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row244_col5\" class=\"data row244 col5\" >-1.96%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row245\" class=\"row_heading level0 row245\" >12</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row245_col0\" class=\"data row245 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row245_col1\" class=\"data row245 col1\" >12</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row245_col2\" class=\"data row245 col2\" >4113279</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row245_col3\" class=\"data row245 col3\" >4070682</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row245_col4\" class=\"data row245 col4\" >-42597</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row245_col5\" class=\"data row245 col5\" >-1.04%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row246\" class=\"row_heading level0 row246\" >284</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row246_col0\" class=\"data row246 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row246_col1\" class=\"data row246 col1\" >80</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row246_col2\" class=\"data row246 col2\" >770509</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row246_col3\" class=\"data row246 col3\" >723310</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row246_col4\" class=\"data row246 col4\" >-47199</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row246_col5\" class=\"data row246 col5\" >-6.13%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row247\" class=\"row_heading level0 row247\" >30</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row247_col0\" class=\"data row247 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row247_col1\" class=\"data row247 col1\" >30</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row247_col2\" class=\"data row247 col2\" >4304239</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row247_col3\" class=\"data row247 col3\" >4255334</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row247_col4\" class=\"data row247 col4\" >-48905</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row247_col5\" class=\"data row247 col5\" >-1.14%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row248\" class=\"row_heading level0 row248\" >105</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row248_col0\" class=\"data row248 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row248_col1\" class=\"data row248 col1\" >3</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row248_col2\" class=\"data row248 col2\" >2101272</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row248_col3\" class=\"data row248 col3\" >2049596</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row248_col4\" class=\"data row248 col4\" >-51676</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row248_col5\" class=\"data row248 col5\" >-2.46%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row249\" class=\"row_heading level0 row249\" >165</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row249_col0\" class=\"data row249 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row249_col1\" class=\"data row249 col1\" >63</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row249_col2\" class=\"data row249 col2\" >1753903</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row249_col3\" class=\"data row249 col3\" >1701014</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row249_col4\" class=\"data row249 col4\" >-52889</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row249_col5\" class=\"data row249 col5\" >-3.02%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row250\" class=\"row_heading level0 row250\" >207</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row250_col0\" class=\"data row250 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row250_col1\" class=\"data row250 col1\" >3</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row250_col2\" class=\"data row250 col2\" >2010648</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row250_col3\" class=\"data row250 col3\" >1957483</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row250_col4\" class=\"data row250 col4\" >-53165</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row250_col5\" class=\"data row250 col5\" >-2.64%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row251\" class=\"row_heading level0 row251\" >80</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row251_col0\" class=\"data row251 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row251_col1\" class=\"data row251 col1\" >80</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row251_col2\" class=\"data row251 col2\" >1319725</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row251_col3\" class=\"data row251 col3\" >1262537</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row251_col4\" class=\"data row251 col4\" >-57188</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row251_col5\" class=\"data row251 col5\" >-4.33%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row252\" class=\"row_heading level0 row252\" >5</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row252_col0\" class=\"data row252 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row252_col1\" class=\"data row252 col1\" >5</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row252_col2\" class=\"data row252 col2\" >4064653</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row252_col3\" class=\"data row252 col3\" >4006900</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row252_col4\" class=\"data row252 col4\" >-57753</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row252_col5\" class=\"data row252 col5\" >-1.42%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row253\" class=\"row_heading level0 row253\" >122</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row253_col0\" class=\"data row253 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row253_col1\" class=\"data row253 col1\" >20</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row253_col2\" class=\"data row253 col2\" >2331845</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row253_col3\" class=\"data row253 col3\" >2271216</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row253_col4\" class=\"data row253 col4\" >-60629</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row253_col5\" class=\"data row253 col5\" >-2.60%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row254\" class=\"row_heading level0 row254\" >220</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row254_col0\" class=\"data row254 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row254_col1\" class=\"data row254 col1\" >16</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row254_col2\" class=\"data row254 col2\" >2098220</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row254_col3\" class=\"data row254 col3\" >2037134</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row254_col4\" class=\"data row254 col4\" >-61086</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row254_col5\" class=\"data row254 col5\" >-2.91%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row255\" class=\"row_heading level0 row255\" >104</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row255_col0\" class=\"data row255 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row255_col1\" class=\"data row255 col1\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row255_col2\" class=\"data row255 col2\" >2088685</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row255_col3\" class=\"data row255 col3\" >2023673</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row255_col4\" class=\"data row255 col4\" >-65012</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row255_col5\" class=\"data row255 col5\" >-3.11%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row256\" class=\"row_heading level0 row256\" >206</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row256_col0\" class=\"data row256 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row256_col1\" class=\"data row256 col1\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row256_col2\" class=\"data row256 col2\" >2002177</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row256_col3\" class=\"data row256 col3\" >1935991</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row256_col4\" class=\"data row256 col4\" >-66186</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row256_col5\" class=\"data row256 col5\" >-3.31%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row257\" class=\"row_heading level0 row257\" >15</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row257_col0\" class=\"data row257 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row257_col1\" class=\"data row257 col1\" >15</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row257_col2\" class=\"data row257 col2\" >4231002</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row257_col3\" class=\"data row257 col3\" >4164796</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row257_col4\" class=\"data row257 col4\" >-66206</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row257_col5\" class=\"data row257 col5\" >-1.56%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row258\" class=\"row_heading level0 row258\" >10</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row258_col0\" class=\"data row258 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row258_col1\" class=\"data row258 col1\" >10</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row258_col2\" class=\"data row258 col2\" >4187062</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row258_col3\" class=\"data row258 col3\" >4116942</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row258_col4\" class=\"data row258 col4\" >-70120</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row258_col5\" class=\"data row258 col5\" >-1.67%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row259\" class=\"row_heading level0 row259\" >4</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row259_col0\" class=\"data row259 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row259_col1\" class=\"data row259 col1\" >4</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row259_col2\" class=\"data row259 col2\" >4077551</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row259_col3\" class=\"data row259 col3\" >4005716</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row259_col4\" class=\"data row259 col4\" >-71835</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row259_col5\" class=\"data row259 col5\" >-1.76%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row260\" class=\"row_heading level0 row260\" >254</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row260_col0\" class=\"data row260 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row260_col1\" class=\"data row260 col1\" >50</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row260_col2\" class=\"data row260 col2\" >2355369</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row260_col3\" class=\"data row260 col3\" >2280640</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row260_col4\" class=\"data row260 col4\" >-74729</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row260_col5\" class=\"data row260 col5\" >-3.17%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row261\" class=\"row_heading level0 row261\" >221</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row261_col0\" class=\"data row261 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row261_col1\" class=\"data row261 col1\" >17</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row261_col2\" class=\"data row261 col2\" >2123529</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row261_col3\" class=\"data row261 col3\" >2047152</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row261_col4\" class=\"data row261 col4\" >-76377</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row261_col5\" class=\"data row261 col5\" >-3.60%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row262\" class=\"row_heading level0 row262\" >152</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row262_col0\" class=\"data row262 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row262_col1\" class=\"data row262 col1\" >50</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row262_col2\" class=\"data row262 col2\" >2290862</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row262_col3\" class=\"data row262 col3\" >2211767</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row262_col4\" class=\"data row262 col4\" >-79095</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row262_col5\" class=\"data row262 col5\" >-3.45%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row263\" class=\"row_heading level0 row263\" >63</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row263_col0\" class=\"data row263 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row263_col1\" class=\"data row263 col1\" >63</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row263_col2\" class=\"data row263 col2\" >3652167</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row263_col3\" class=\"data row263 col3\" >3571610</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row263_col4\" class=\"data row263 col4\" >-80557</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row263_col5\" class=\"data row263 col5\" >-2.21%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row264\" class=\"row_heading level0 row264\" >151</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row264_col0\" class=\"data row264 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row264_col1\" class=\"data row264 col1\" >49</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row264_col2\" class=\"data row264 col2\" >2262458</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row264_col3\" class=\"data row264 col3\" >2180214</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row264_col4\" class=\"data row264 col4\" >-82244</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row264_col5\" class=\"data row264 col5\" >-3.64%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row265\" class=\"row_heading level0 row265\" >118</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row265_col0\" class=\"data row265 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row265_col1\" class=\"data row265 col1\" >16</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row265_col2\" class=\"data row265 col2\" >2215032</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row265_col3\" class=\"data row265 col3\" >2131425</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row265_col4\" class=\"data row265 col4\" >-83607</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row265_col5\" class=\"data row265 col5\" >-3.77%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row266\" class=\"row_heading level0 row266\" >224</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row266_col0\" class=\"data row266 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row266_col1\" class=\"data row266 col1\" >20</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row266_col2\" class=\"data row266 col2\" >2236672</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row266_col3\" class=\"data row266 col3\" >2150114</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row266_col4\" class=\"data row266 col4\" >-86558</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row266_col5\" class=\"data row266 col5\" >-3.87%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row267\" class=\"row_heading level0 row267\" >3</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row267_col0\" class=\"data row267 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row267_col1\" class=\"data row267 col1\" >3</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row267_col2\" class=\"data row267 col2\" >4111920</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row267_col3\" class=\"data row267 col3\" >4007079</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row267_col4\" class=\"data row267 col4\" >-104841</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row267_col5\" class=\"data row267 col5\" >-2.55%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row268\" class=\"row_heading level0 row268\" >140</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row268_col0\" class=\"data row268 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row268_col1\" class=\"data row268 col1\" >38</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row268_col2\" class=\"data row268 col2\" >2028052</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row268_col3\" class=\"data row268 col3\" >1923133</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row268_col4\" class=\"data row268 col4\" >-104919</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row268_col5\" class=\"data row268 col5\" >-5.17%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row269\" class=\"row_heading level0 row269\" >253</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row269_col0\" class=\"data row269 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row269_col1\" class=\"data row269 col1\" >49</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row269_col2\" class=\"data row269 col2\" >2336640</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row269_col3\" class=\"data row269 col3\" >2230032</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row269_col4\" class=\"data row269 col4\" >-106608</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row269_col5\" class=\"data row269 col5\" >-4.56%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row270\" class=\"row_heading level0 row270\" >245</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row270_col0\" class=\"data row270 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row270_col1\" class=\"data row270 col1\" >41</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row270_col2\" class=\"data row270 col2\" >2089576</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row270_col3\" class=\"data row270 col3\" >1978607</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row270_col4\" class=\"data row270 col4\" >-110969</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row270_col5\" class=\"data row270 col5\" >-5.31%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row271\" class=\"row_heading level0 row271\" >121</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row271_col0\" class=\"data row271 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row271_col1\" class=\"data row271 col1\" >19</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row271_col2\" class=\"data row271 col2\" >2334906</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row271_col3\" class=\"data row271 col3\" >2221910</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row271_col4\" class=\"data row271 col4\" >-112996</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row271_col5\" class=\"data row271 col5\" >-4.84%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row272\" class=\"row_heading level0 row272\" >119</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row272_col0\" class=\"data row272 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row272_col1\" class=\"data row272 col1\" >17</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row272_col2\" class=\"data row272 col2\" >2252838</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row272_col3\" class=\"data row272 col3\" >2139361</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row272_col4\" class=\"data row272 col4\" >-113477</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row272_col5\" class=\"data row272 col5\" >-5.04%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row273\" class=\"row_heading level0 row273\" >242</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row273_col0\" class=\"data row273 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row273_col1\" class=\"data row273 col1\" >38</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row273_col2\" class=\"data row273 col2\" >2052176</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row273_col3\" class=\"data row273 col3\" >1938503</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row273_col4\" class=\"data row273 col4\" >-113673</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row273_col5\" class=\"data row273 col5\" >-5.54%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row274\" class=\"row_heading level0 row274\" >222</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row274_col0\" class=\"data row274 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row274_col1\" class=\"data row274 col1\" >18</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row274_col2\" class=\"data row274 col2\" >2185272</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row274_col3\" class=\"data row274 col3\" >2062176</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row274_col4\" class=\"data row274 col4\" >-123096</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row274_col5\" class=\"data row274 col5\" >-5.63%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row275\" class=\"row_heading level0 row275\" >223</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row275_col0\" class=\"data row275 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row275_col1\" class=\"data row275 col1\" >19</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row275_col2\" class=\"data row275 col2\" >2236505</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row275_col3\" class=\"data row275 col3\" >2107128</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row275_col4\" class=\"data row275 col4\" >-129377</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row275_col5\" class=\"data row275 col5\" >-5.78%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row276\" class=\"row_heading level0 row276\" >2</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row276_col0\" class=\"data row276 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row276_col1\" class=\"data row276 col1\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row276_col2\" class=\"data row276 col2\" >4090862</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row276_col3\" class=\"data row276 col3\" >3959664</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row276_col4\" class=\"data row276 col4\" >-131198</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row276_col5\" class=\"data row276 col5\" >-3.21%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row277\" class=\"row_heading level0 row277\" >143</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row277_col0\" class=\"data row277 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row277_col1\" class=\"data row277 col1\" >41</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row277_col2\" class=\"data row277 col2\" >2073902</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row277_col3\" class=\"data row277 col3\" >1941203</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row277_col4\" class=\"data row277 col4\" >-132699</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row277_col5\" class=\"data row277 col5\" >-6.40%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row278\" class=\"row_heading level0 row278\" >147</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row278_col0\" class=\"data row278 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row278_col1\" class=\"data row278 col1\" >45</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row278_col2\" class=\"data row278 col2\" >2201905</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row278_col3\" class=\"data row278 col3\" >2067426</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row278_col4\" class=\"data row278 col4\" >-134479</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row278_col5\" class=\"data row278 col5\" >-6.11%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row279\" class=\"row_heading level0 row279\" >120</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row279_col0\" class=\"data row279 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row279_col1\" class=\"data row279 col1\" >18</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row279_col2\" class=\"data row279 col2\" >2305733</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row279_col3\" class=\"data row279 col3\" >2165744</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row279_col4\" class=\"data row279 col4\" >-139989</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row279_col5\" class=\"data row279 col5\" >-6.07%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row280\" class=\"row_heading level0 row280\" >249</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row280_col0\" class=\"data row280 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row280_col1\" class=\"data row280 col1\" >45</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row280_col2\" class=\"data row280 col2\" >2236654</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row280_col3\" class=\"data row280 col3\" >2095203</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row280_col4\" class=\"data row280 col4\" >-141451</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row280_col5\" class=\"data row280 col5\" >-6.32%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row281\" class=\"row_heading level0 row281\" >16</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row281_col0\" class=\"data row281 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row281_col1\" class=\"data row281 col1\" >16</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row281_col2\" class=\"data row281 col2\" >4313252</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row281_col3\" class=\"data row281 col3\" >4168559</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row281_col4\" class=\"data row281 col4\" >-144693</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row281_col5\" class=\"data row281 col5\" >-3.35%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row282\" class=\"row_heading level0 row282\" >20</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row282_col0\" class=\"data row282 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row282_col1\" class=\"data row282 col1\" >20</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row282_col2\" class=\"data row282 col2\" >4568517</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row282_col3\" class=\"data row282 col3\" >4421330</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row282_col4\" class=\"data row282 col4\" >-147187</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row282_col5\" class=\"data row282 col5\" >-3.22%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row283\" class=\"row_heading level0 row283\" >50</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row283_col0\" class=\"data row283 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row283_col1\" class=\"data row283 col1\" >50</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row283_col2\" class=\"data row283 col2\" >4646231</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row283_col3\" class=\"data row283 col3\" >4492407</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row283_col4\" class=\"data row283 col4\" >-153824</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row283_col5\" class=\"data row283 col5\" >-3.31%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row284\" class=\"row_heading level0 row284\" >141</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row284_col0\" class=\"data row284 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row284_col1\" class=\"data row284 col1\" >39</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row284_col2\" class=\"data row284 col2\" >2148718</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row284_col3\" class=\"data row284 col3\" >1986712</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row284_col4\" class=\"data row284 col4\" >-162006</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row284_col5\" class=\"data row284 col5\" >-7.54%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row285\" class=\"row_heading level0 row285\" >150</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row285_col0\" class=\"data row285 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row285_col1\" class=\"data row285 col1\" >48</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row285_col2\" class=\"data row285 col2\" >2235296</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row285_col3\" class=\"data row285 col3\" >2058392</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row285_col4\" class=\"data row285 col4\" >-176904</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row285_col5\" class=\"data row285 col5\" >-7.91%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row286\" class=\"row_heading level0 row286\" >243</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row286_col0\" class=\"data row286 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row286_col1\" class=\"data row286 col1\" >39</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row286_col2\" class=\"data row286 col2\" >2175745</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row286_col3\" class=\"data row286 col3\" >1995795</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row286_col4\" class=\"data row286 col4\" >-179950</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row286_col5\" class=\"data row286 col5\" >-8.27%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row287\" class=\"row_heading level0 row287\" >49</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row287_col0\" class=\"data row287 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row287_col1\" class=\"data row287 col1\" >49</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row287_col2\" class=\"data row287 col2\" >4599098</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row287_col3\" class=\"data row287 col3\" >4410246</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row287_col4\" class=\"data row287 col4\" >-188852</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row287_col5\" class=\"data row287 col5\" >-4.11%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row288\" class=\"row_heading level0 row288\" >17</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row288_col0\" class=\"data row288 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row288_col1\" class=\"data row288 col1\" >17</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row288_col2\" class=\"data row288 col2\" >4376367</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row288_col3\" class=\"data row288 col3\" >4186513</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row288_col4\" class=\"data row288 col4\" >-189854</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row288_col5\" class=\"data row288 col5\" >-4.34%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row289\" class=\"row_heading level0 row289\" >252</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row289_col0\" class=\"data row289 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row289_col1\" class=\"data row289 col1\" >48</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row289_col2\" class=\"data row289 col2\" >2299367</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row289_col3\" class=\"data row289 col3\" >2101346</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row289_col4\" class=\"data row289 col4\" >-198021</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row289_col5\" class=\"data row289 col5\" >-8.61%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row290\" class=\"row_heading level0 row290\" >148</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row290_col0\" class=\"data row290 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row290_col1\" class=\"data row290 col1\" >46</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row290_col2\" class=\"data row290 col2\" >2238774</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row290_col3\" class=\"data row290 col3\" >2023033</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row290_col4\" class=\"data row290 col4\" >-215741</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row290_col5\" class=\"data row290 col5\" >-9.64%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row291\" class=\"row_heading level0 row291\" >149</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row291_col0\" class=\"data row291 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row291_col1\" class=\"data row291 col1\" >47</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row291_col2\" class=\"data row291 col2\" >2237940</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row291_col3\" class=\"data row291 col3\" >2019517</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row291_col4\" class=\"data row291 col4\" >-218423</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row291_col5\" class=\"data row291 col5\" >-9.76%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row292\" class=\"row_heading level0 row292\" >38</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row292_col0\" class=\"data row292 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row292_col1\" class=\"data row292 col1\" >38</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row292_col2\" class=\"data row292 col2\" >4080228</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row292_col3\" class=\"data row292 col3\" >3861636</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row292_col4\" class=\"data row292 col4\" >-218592</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row292_col5\" class=\"data row292 col5\" >-5.36%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row293\" class=\"row_heading level0 row293\" >251</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row293_col0\" class=\"data row293 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row293_col1\" class=\"data row293 col1\" >47</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row293_col2\" class=\"data row293 col2\" >2297533</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row293_col3\" class=\"data row293 col3\" >2063366</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row293_col4\" class=\"data row293 col4\" >-234167</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row293_col5\" class=\"data row293 col5\" >-10.19%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row294\" class=\"row_heading level0 row294\" >250</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row294_col0\" class=\"data row294 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row294_col1\" class=\"data row294 col1\" >46</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row294_col2\" class=\"data row294 col2\" >2290942</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row294_col3\" class=\"data row294 col3\" >2054118</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row294_col4\" class=\"data row294 col4\" >-236824</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row294_col5\" class=\"data row294 col5\" >-10.34%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row295\" class=\"row_heading level0 row295\" >19</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row295_col0\" class=\"data row295 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row295_col1\" class=\"data row295 col1\" >19</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row295_col2\" class=\"data row295 col2\" >4571411</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row295_col3\" class=\"data row295 col3\" >4329038</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row295_col4\" class=\"data row295 col4\" >-242373</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row295_col5\" class=\"data row295 col5\" >-5.30%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row296\" class=\"row_heading level0 row296\" >41</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row296_col0\" class=\"data row296 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row296_col1\" class=\"data row296 col1\" >41</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row296_col2\" class=\"data row296 col2\" >4163478</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row296_col3\" class=\"data row296 col3\" >3919810</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row296_col4\" class=\"data row296 col4\" >-243668</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row296_col5\" class=\"data row296 col5\" >-5.85%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row297\" class=\"row_heading level0 row297\" >244</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row297_col0\" class=\"data row297 col0\" >2</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row297_col1\" class=\"data row297 col1\" >40</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row297_col2\" class=\"data row297 col2\" >2197964</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row297_col3\" class=\"data row297 col3\" >1942194</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row297_col4\" class=\"data row297 col4\" >-255770</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row297_col5\" class=\"data row297 col5\" >-11.64%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row298\" class=\"row_heading level0 row298\" >18</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row298_col0\" class=\"data row298 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row298_col1\" class=\"data row298 col1\" >18</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row298_col2\" class=\"data row298 col2\" >4491005</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row298_col3\" class=\"data row298 col3\" >4227920</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row298_col4\" class=\"data row298 col4\" >-263085</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row298_col5\" class=\"data row298 col5\" >-5.86%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row299\" class=\"row_heading level0 row299\" >142</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row299_col0\" class=\"data row299 col0\" >1</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row299_col1\" class=\"data row299 col1\" >40</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row299_col2\" class=\"data row299 col2\" >2189516</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row299_col3\" class=\"data row299 col3\" >1917201</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row299_col4\" class=\"data row299 col4\" >-272315</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row299_col5\" class=\"data row299 col5\" >-12.44%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row300\" class=\"row_heading level0 row300\" >45</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row300_col0\" class=\"data row300 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row300_col1\" class=\"data row300 col1\" >45</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row300_col2\" class=\"data row300 col2\" >4438559</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row300_col3\" class=\"data row300 col3\" >4162629</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row300_col4\" class=\"data row300 col4\" >-275930</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row300_col5\" class=\"data row300 col5\" >-6.22%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row301\" class=\"row_heading level0 row301\" >39</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row301_col0\" class=\"data row301 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row301_col1\" class=\"data row301 col1\" >39</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row301_col2\" class=\"data row301 col2\" >4324463</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row301_col3\" class=\"data row301 col3\" >3982507</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row301_col4\" class=\"data row301 col4\" >-341956</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row301_col5\" class=\"data row301 col5\" >-7.91%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row302\" class=\"row_heading level0 row302\" >48</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row302_col0\" class=\"data row302 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row302_col1\" class=\"data row302 col1\" >48</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row302_col2\" class=\"data row302 col2\" >4534663</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row302_col3\" class=\"data row302 col3\" >4159738</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row302_col4\" class=\"data row302 col4\" >-374925</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row302_col5\" class=\"data row302 col5\" >-8.27%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row303\" class=\"row_heading level0 row303\" >46</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row303_col0\" class=\"data row303 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row303_col1\" class=\"data row303 col1\" >46</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row303_col2\" class=\"data row303 col2\" >4529716</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row303_col3\" class=\"data row303 col3\" >4077151</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row303_col4\" class=\"data row303 col4\" >-452565</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row303_col5\" class=\"data row303 col5\" >-9.99%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row304\" class=\"row_heading level0 row304\" >47</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row304_col0\" class=\"data row304 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row304_col1\" class=\"data row304 col1\" >47</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row304_col2\" class=\"data row304 col2\" >4535473</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row304_col3\" class=\"data row304 col3\" >4082883</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row304_col4\" class=\"data row304 col4\" >-452590</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row304_col5\" class=\"data row304 col5\" >-9.98%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " <tr>\n",
|
|
|
+ " <th id=\"T_3daade6a_5280_11eb_8c0f_acde48001122level0_row305\" class=\"row_heading level0 row305\" >40</th>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row305_col0\" class=\"data row305 col0\" >0</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row305_col1\" class=\"data row305 col1\" >40</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row305_col2\" class=\"data row305 col2\" >4387480</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row305_col3\" class=\"data row305 col3\" >3859395</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row305_col4\" class=\"data row305 col4\" >-528085</td>\n",
|
|
|
+ " <td id=\"T_3daade6a_5280_11eb_8c0f_acde48001122row305_col5\" class=\"data row305 col5\" >-12.04%</td>\n",
|
|
|
+ " </tr>\n",
|
|
|
+ " </tbody></table>"
|
|
|
+ ],
|
|
|
+ "text/plain": [
|
|
|
+ "<pandas.io.formats.style.Styler at 0x7fd9c3fc23d0>"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "execution_count": 7,
|
|
|
+ "metadata": {},
|
|
|
+ "output_type": "execute_result"
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "source": [
|
|
|
+ "census.sort_values('Change', ascending=False).style.format({'Percent Change': \"{:,.2%}\"})"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "cell_type": "markdown",
|
|
|
+ "metadata": {},
|
|
|
+ "source": [
|
|
|
+ "Not surprisingly, the top row of the sorted table is the line that corresponds to the entire population: both sexes and all age groups. From 2010 to 2014, the population of the United States increased by about 9.5 million people, a change of just over 3%.\n",
|
|
|
+ "\n",
|
|
|
+ "The next two rows correspond to all the men and all the women respectively. The male population grew more than the female population, both in absolute and percentage terms. Both percent changes were around 3%.\n",
|
|
|
+ "\n",
|
|
|
+ "Now take a look at the next few rows. The percent change jumps from about 3% for the overall population to almost 30% for the people in their late sixties and early seventies. This stunning change contributes to what is known as the greying of America.\n",
|
|
|
+ "\n",
|
|
|
+ "By far the greatest absolute change was among those in the 64-67 agegroup in 2014. What could explain this large increase? We can explore this question by examining the years in which the relevant groups were born.\n",
|
|
|
+ "\n",
|
|
|
+ "- Those who were in the 64-67 age group in 2010 were born in the years 1943 to 1946. The attack on Pearl Harbor was in late 1941, and by 1942 U.S. forces were heavily engaged in a massive war that ended in 1945. \n",
|
|
|
+ "\n",
|
|
|
+ "- Those who were 64 to 67 years old in 2014 were born in the years 1947 to 1950, at the height of the post-WWII baby boom in the United States. \n",
|
|
|
+ "\n",
|
|
|
+ "The post-war jump in births is the major reason for the large changes that we have observed."
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "metadata": {
|
|
|
+ "anaconda-cloud": {},
|
|
|
+ "kernelspec": {
|
|
|
+ "display_name": "Python 3",
|
|
|
+ "language": "python",
|
|
|
+ "name": "python3"
|
|
|
+ },
|
|
|
+ "language_info": {
|
|
|
+ "codemirror_mode": {
|
|
|
+ "name": "ipython",
|
|
|
+ "version": 3
|
|
|
+ },
|
|
|
+ "file_extension": ".py",
|
|
|
+ "mimetype": "text/x-python",
|
|
|
+ "name": "python",
|
|
|
+ "nbconvert_exporter": "python",
|
|
|
+ "pygments_lexer": "ipython3",
|
|
|
+ "version": "3.8.5"
|
|
|
+ }
|
|
|
+ },
|
|
|
+ "nbformat": 4,
|
|
|
+ "nbformat_minor": 2
|
|
|
+}
|