Commit 44c15158 authored by aalvarezp's avatar aalvarezp

File update

parent 0ab8e3cf
# Ignore .idea folder
# Byte-compiled / cache
__pycache__/
*.so
# Jupyter notebook checkpoints
.ipynb_checkpoints/
# System files
.DS_Store
# IDEs and editors
.vscode/
.idea/
*.swp
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.9" project-jdk-type="Python SDK" />
<component name="Black">
<option name="sdkName" value="Python 3.12" />
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.12" project-jdk-type="Python SDK" />
</project>
\ No newline at end of file
......@@ -2,7 +2,7 @@
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="jdk" jdkName="Python 3.12" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
\ No newline at end of file
......@@ -12,23 +12,24 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "6e3db0831d32394b"
},
{
"cell_type": "code",
"id": "initial_id",
"metadata": {
"collapsed": true,
"ExecuteTime": {
"end_time": "2025-02-27T09:37:56.583250Z",
"start_time": "2025-02-27T09:37:48.632535Z"
},
"pycharm": {
"name": "#%%\n"
},
"ExecuteTime": {
"end_time": "2025-05-07T13:08:52.533981Z",
"start_time": "2025-05-07T13:08:47.590128Z"
}
},
"source": [
"# import scanpy as sc\n",
"import scanpy as sc\n",
"import sys\n",
"import pandas as pd\n",
"import networkx as nx\n",
......@@ -48,7 +49,7 @@
"import functions"
],
"outputs": [],
"execution_count": 10
"execution_count": 3
},
{
"metadata": {
......@@ -124,7 +125,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "7c9eb390f9654651"
},
{
"metadata": {
......@@ -218,7 +220,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "b327b0c0db43aaee"
},
{
"metadata": {
......@@ -250,7 +253,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "1af23243eaf29f9d"
},
{
"cell_type": "markdown",
......@@ -266,7 +270,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "fdd1e2ccbd382133"
},
{
"cell_type": "code",
......@@ -280,7 +285,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "43637bd25e62f2dd"
},
{
"cell_type": "code",
......@@ -294,7 +300,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "c9c7639db9679fd"
},
{
"cell_type": "code",
......@@ -308,7 +315,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "9867bba3fbce26b4"
},
{
"cell_type": "markdown",
......@@ -321,7 +329,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "1ea50780fc249bf"
},
{
"cell_type": "code",
......@@ -335,7 +344,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "bdeb091f50cba282"
},
{
"cell_type": "code",
......@@ -372,7 +382,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "9aba2e6e2fcbf462"
},
{
"cell_type": "code",
......@@ -399,7 +410,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "5b7875f61f3fa7f7"
},
{
"cell_type": "code",
......@@ -422,7 +434,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "8383266313fe69e5"
},
{
"cell_type": "markdown",
......@@ -431,6 +444,22 @@
"\n",
"Scanpy, when running sc.tl.rank_genes_groups(), automatically prioritises adata.raw if it exists. In this case, we saved the raw array in adata.raw to begin with (which is correct), but Scanpy is using that raw array instead of the normalised, log-transformed .X array.\n",
"\n",
"**sc.tl.rank_genes_groups()** performs a differential expression analysis between groups of cells defined in adata_type.obs['disease']. In this case, compares cells labelled as 'Alzheimer disease' against those labelled as 'normal', which is taken as reference group.\n",
"\n",
"**Wilcoxon rank-sum test** is a non-parametric test which finely adapts to scRNA-seq data. This test compares, for each gene, if its expression is significantly different in one group with respect to the other.\n",
"- Null hyphotesis (H₀): the distribution of gene expression is equal in both groups (Alzheimer and normal).\n",
"- Alternative hypothesis (H₁): the distributions are different (the test is bilateral by default).\n",
"\n",
"The test does not assume normality, only that the values are ordinal, which is ideal for scRNA-seq (where the data are usually noisy and with zeros).\n",
"\n",
"**sc.get.rank_genes_groups_df()** extracts the results in DataFrame format, one per case 'Alzheimer disease' vs 'normal'.\n",
"\n",
"Then, a threshold is applied:\n",
"- **abs(logfoldchange) > 0.25** in order for the change to be biologically relevant.\n",
"- **pvals_adj < 0.05** in order for the change to be statistically significant.\n",
"\n",
"This indicates that there is sufficient evidence to reject the null hypothesis that that gene is equally expressed between groups.The test does not assume normality, only that the values are ordinal, which is ideal for scRNA-seq (where the d\n",
"\n",
"Files **degs_{cell_type}_total.csv** stores all differentially expressed genes found per each cell type, identified by the ENSEMBL ID."
],
"metadata": {
......@@ -438,7 +467,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "2e30f0c5e3294df0"
},
{
"cell_type": "code",
......@@ -593,22 +623,159 @@
" # Extract results of DEGs for \"disease\"\" condition (compared to normal)\n",
" degs_disease = sc.get.rank_genes_groups_df(adata_type, group='Alzheimer disease')\n",
"\n",
" # All DEGs independetly of the logFC and p-adj\n",
" print(f'{len(degs_disease)} total DEGs found for {type} for Alzheimer disease')\n",
"\n",
" # degs_disease.to_csv(f'../data/complete/degs_{type}.csv', index=False)\n",
"\n",
" # Filter by logFC y p-adj\n",
" degs_disease_filtered = degs_disease[\n",
" (degs_disease['logfoldchanges'].abs() >= 0.25) &\n",
" (degs_disease['pvals_adj'] <= 0.05)\n",
" ]\n",
"\n",
" print(f'{len(degs_disease_filtered)} DEGs found for {type} for Alzheimer disease')\n",
" print(f'{len(degs_disease_filtered)} significant DEGs found for {type} for Alzheimer disease')\n",
"\n",
" degs_disease_filtered.to_csv(f'../data/complete/degs_{type}_total.csv', index=False)"
" # degs_disease_filtered.to_csv(f'../data/complete/degs_{type}_total.csv', index=False)"
],
"metadata": {
"collapsed": false,
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "d632f920ae57bec0"
},
{
"metadata": {},
"cell_type": "markdown",
"source": [
"### 3.1. Fraction expressed\n",
"\n",
"The percentage (or proportion) of cells within a group that express a given gene.\n",
"\n",
"For example, suppose you have a cell type (e.g., astrocytes) with 100 cells. For a specific gene (e.g., GEN1), you look at how many of those 100 cells have an expression greater than 0 for that gene. If GEN1 is expressed (i.e., has a value greater than 0) in 25 of those cells, then: fraction_expressed = 25 / 100 = 0.25."
],
"id": "92db8d7ff52f3e4b"
},
{
"metadata": {},
"cell_type": "code",
"outputs": [],
"execution_count": null,
"source": [
"fractions = []\n",
"\n",
"for type, adata_type in tqdm(data_per_type.items(), desc= 'Analyzing cell types...'):\n",
"\n",
" gene_names = adata_type.var_names\n",
"\n",
" # Compute fraction of cells expressing each gene in each group\n",
" fractions_type = {}\n",
"\n",
" fraction = ((adata_type.X > 0).sum(axis=0) / adata_type.shape[0]) * 100\n",
" fraction = np.asarray(fraction).flatten()\n",
"\n",
" # Create dataframe with gene names and fractions\n",
" df = pd.DataFrame({\n",
" 'gene': gene_names,\n",
" 'fraction_expressed': fraction,\n",
" 'cell_type': type\n",
" })\n",
"\n",
" fractions.append(df)\n",
"\n",
"# Convert to DataFrame for easy viewing\n",
"fraction_df = pd.concat(fractions, ignore_index=True)\n",
"\n",
"print(fraction_df)"
],
"id": "eec92c5171f93ed4"
},
{
"metadata": {},
"cell_type": "code",
"outputs": [],
"execution_count": null,
"source": [
"## Fraction expressed but instead of in a dataframe, in a matrix form with genes as columns and cell types as rows\n",
"\n",
"genes = adata.var_names\n",
"\n",
"# Esto te da los grupos (por ejemplo, tipos celulares)\n",
"groupby = adata.obs['cell_type'].unique()\n",
"\n",
"# Creamos un diccionario para guardar la fracción expresada\n",
"fraction_expressed = {}\n",
"\n",
"for group in tqdm(groupby):\n",
" # Subconjunto de células de este tipo\n",
" cells = adata[adata.obs['cell_type'] == group]\n",
"\n",
" # Matriz de expresión para los genes de interés (X es la matriz de expresión)\n",
" X = cells[:, genes].X\n",
"\n",
" # Convertimos a denso si es necesario (algunas veces es sparse)\n",
" if not isinstance(X, np.ndarray):\n",
" X = X.toarray()\n",
"\n",
" # Cálculo: cuántas células tienen expresión > 0 para cada gen\n",
" frac = (X > 0).sum(axis=0) / X.shape[0]\n",
"\n",
" fraction_expressed[group] = frac\n",
"\n",
"# Convertimos a DataFrame para visualizar\n",
"fraction_expressed_df = pd.DataFrame(fraction_expressed, index=genes).T\n",
"print(fraction_expressed_df)"
],
"id": "a75080c359691c8d"
},
{
"metadata": {},
"cell_type": "code",
"outputs": [],
"execution_count": null,
"source": [
"sns.set_context(\"notebook\")\n",
"sns.set_style(\"whitegrid\")\n",
"\n",
"plt.figure(figsize=(5,4))\n",
"\n",
"flierprops = dict(marker='o', markersize=3, linestyle='none')\n",
"\n",
"sns.boxplot(fraction_df, y = 'fraction_expressed', x = 'cell_type', flierprops=flierprops)\n",
"\n",
"plt.tick_params(axis='both', which='both', bottom=True, left=True)\n",
"\n",
"plt.xlabel(\"\")\n",
"plt.ylabel(\"Fraction of cells for each cell type that express a given gene\", fontsize = 5)\n",
"plt.xticks(rotation = 45, fontsize = 5)\n",
"plt.yticks(fontsize = 5)\n",
"\n",
"sns.despine()\n",
"plt.tight_layout()\n",
"plt.show()"
],
"id": "3dde199003b423bc"
},
{
"metadata": {},
"cell_type": "code",
"outputs": [],
"execution_count": null,
"source": [
"# Percentage of zeros in 'fraction_expressed' per 'cell_type'. Conditioned by the number of DEGs per cell type (less DEGs, more zeros)\n",
"\n",
"percentage_zeros = (\n",
" fraction_df.assign(is_zero=fraction_df['fraction_expressed'] == 0)\n",
" .groupby('cell_type')['is_zero']\n",
" .mean()\n",
" .multiply(100)\n",
")\n",
"\n",
"print(\"Percentage of zeros per cell_type:\\n\", percentage_zeros)"
],
"id": "3b0374928af98c82"
},
{
"cell_type": "markdown",
......@@ -626,7 +793,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "1a79dc025e43d3"
},
{
"cell_type": "code",
......@@ -641,7 +809,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "cdf1a85b269314b5"
},
{
"cell_type": "code",
......@@ -675,7 +844,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "71f608e94690e6f1"
},
{
"cell_type": "code",
......@@ -699,7 +869,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "320def8ad16af8cb"
},
{
"cell_type": "code",
......@@ -858,7 +1029,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "677c54fe169190da"
},
{
"cell_type": "markdown",
......@@ -870,7 +1042,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "4b2adc20d87588c9"
},
{
"cell_type": "code",
......@@ -889,7 +1062,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "de00e0b46cc4fd78"
},
{
"cell_type": "code",
......@@ -904,7 +1078,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "b58d0adb9e49f1df"
},
{
"cell_type": "code",
......@@ -929,7 +1104,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "320848226dd257"
},
{
"cell_type": "markdown",
......@@ -945,7 +1121,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "b8f5241a08d75a8d"
},
{
"cell_type": "code",
......@@ -959,7 +1136,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "e44ba2befa4ea4b2"
},
{
"cell_type": "code",
......@@ -1001,7 +1179,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "389ae6f91a195fc2"
},
{
"cell_type": "code",
......@@ -1026,7 +1205,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "83c782bed4b5b159"
},
{
"cell_type": "markdown",
......@@ -1043,7 +1223,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "dad8b5ac45e9241b"
},
{
"cell_type": "code",
......@@ -1059,7 +1240,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "62418fa14954172e"
},
{
"cell_type": "code",
......@@ -1073,7 +1255,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "486eff5f3bbfb63f"
},
{
"cell_type": "code",
......@@ -1095,7 +1278,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "da4460d1aae38f56"
},
{
"cell_type": "code",
......@@ -1109,7 +1293,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "d507efc9b2068b6a"
},
{
"cell_type": "code",
......@@ -1135,7 +1320,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "1105abd8ce45459d"
},
{
"cell_type": "markdown",
......@@ -1153,7 +1339,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "ba65d0b5e37d00"
},
{
"cell_type": "code",
......@@ -1195,7 +1382,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "debe4e5f76e493f1"
},
{
"cell_type": "markdown",
......@@ -1222,7 +1410,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "14c6ef51514baa51"
},
{
"cell_type": "code",
......@@ -1236,7 +1425,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "36ec09d23b5deac6"
},
{
"cell_type": "code",
......@@ -1420,7 +1610,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "26ab0c73b66197fb"
},
{
"cell_type": "code",
......@@ -1444,7 +1635,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "fab2e3fc09d91232"
},
{
"cell_type": "code",
......@@ -1458,7 +1650,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "aad0d6cb90a2a129"
},
{
"cell_type": "markdown",
......@@ -1470,7 +1663,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "73076752d5a07029"
},
{
"cell_type": "code",
......@@ -1484,7 +1678,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "24ffb1d66118d53d"
},
{
"cell_type": "code",
......@@ -1541,7 +1736,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "9ec6f81c3535120b"
},
{
"cell_type": "code",
......@@ -1555,7 +1751,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "756ed2c087c6a80b"
},
{
"cell_type": "markdown",
......@@ -1567,7 +1764,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "c00d209c275d105"
},
{
"cell_type": "code",
......@@ -1582,7 +1780,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "3650bf9c9f06e457"
},
{
"cell_type": "code",
......@@ -1675,7 +1874,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "8ff326052036394c"
},
{
"cell_type": "markdown",
......@@ -1687,7 +1887,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "811f2c043899cde8"
},
{
"cell_type": "code",
......@@ -1702,7 +1903,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "35b6e0963296b42"
},
{
"cell_type": "code",
......@@ -1717,7 +1919,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "cc2ecf08f2268100"
},
{
"cell_type": "markdown",
......@@ -1729,7 +1932,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "5161ee29eae2c753"
},
{
"cell_type": "code",
......@@ -1745,7 +1949,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "cd0c8bf7020ff320"
},
{
"cell_type": "code",
......@@ -1771,7 +1976,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "eb51c1f6f73d00ef"
},
{
"cell_type": "code",
......@@ -1820,7 +2026,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "7c9916fcf5f41771"
},
{
"cell_type": "markdown",
......@@ -1832,7 +2039,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "fc90b950ca3b48da"
},
{
"cell_type": "code",
......@@ -1847,7 +2055,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "2baf164cd35de867"
},
{
"cell_type": "code",
......@@ -1869,7 +2078,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "2316a71810b114b0"
},
{
"cell_type": "code",
......@@ -1884,7 +2094,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "1ae100391c3b3b2b"
},
{
"cell_type": "code",
......@@ -1909,7 +2120,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "79248fec0321c6e6"
},
{
"cell_type": "markdown",
......@@ -1921,7 +2133,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "1568a88bb60744d7"
},
{
"cell_type": "code",
......@@ -1935,7 +2148,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "ed3f1cc6e47a628b"
},
{
"cell_type": "code",
......@@ -2027,7 +2241,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "972930a0f2d2d237"
},
{
"cell_type": "markdown",
......@@ -2045,7 +2260,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "fb4bab50846dc8ed"
},
{
"cell_type": "code",
......@@ -2061,7 +2277,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "729f9cc8a9cb0da2"
},
{
"cell_type": "code",
......@@ -2075,7 +2292,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "ec240b52f8abf701"
},
{
"cell_type": "code",
......@@ -2096,7 +2314,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "e0f294118c7c8b50"
},
{
"cell_type": "code",
......@@ -2111,7 +2330,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "a14c03fb7c7f181b"
},
{
"cell_type": "markdown",
......@@ -2123,7 +2343,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "cebc1f904da014e8"
},
{
"cell_type": "code",
......@@ -2156,7 +2377,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "9d2d785a496d0b74"
},
{
"cell_type": "code",
......@@ -2171,7 +2393,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "91d4e2e356a3135a"
},
{
"cell_type": "code",
......@@ -2192,7 +2415,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "7b0416a26b27e657"
},
{
"cell_type": "code",
......@@ -2206,7 +2430,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "d6685ea1ded8af48"
},
{
"cell_type": "code",
......@@ -2220,7 +2445,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "1566902d75d5d3c5"
},
{
"cell_type": "markdown",
......@@ -2232,7 +2458,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "82770eeeea3b2858"
},
{
"cell_type": "code",
......@@ -2246,7 +2473,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "4af0f8f342eb46f1"
},
{
"cell_type": "code",
......@@ -2305,7 +2533,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "d98d305963c7d4ee"
},
{
"cell_type": "markdown",
......@@ -2317,7 +2546,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "3d0220c29266cc6a"
},
{
"cell_type": "code",
......@@ -2334,7 +2564,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "3237a956b8eb2b7c"
},
{
"cell_type": "code",
......@@ -2374,7 +2605,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "950b80af953c2896"
},
{
"cell_type": "code",
......@@ -2388,7 +2620,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "251c73b3b42201a1"
},
{
"cell_type": "code",
......@@ -2458,7 +2691,135 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "9f37530477a84199"
},
{
"metadata": {},
"cell_type": "code",
"outputs": [],
"execution_count": null,
"source": [
"# Subset sizes calculation\n",
"subset_sizes = combined_data.groupby(\"dataset\")[\"protein_id\"].nunique()\n",
"\n",
"# Generate color palette\n",
"ordered_datasets = subset_sizes.sort_values(ascending=False).index\n",
"combined_data[\"dataset\"] = pd.Categorical(combined_data[\"dataset\"], categories=ordered_datasets, ordered=True)\n",
"palette = {dataset: '#79C4FF' for dataset in ordered_datasets}\n",
"\n",
"# Assign different color to module\n",
"palette[\"General module for AD\"] = \"#D3D3D3\"\n",
"\n",
"fig, ax = plt.subplots(figsize=(9, 5))\n",
"\n",
"sns.set_context(\"paper\")\n",
"sns.set_style(\"whitegrid\")\n",
"\n",
"sns.boxplot(data=combined_data, x=\"dataset\", y=\"betweenness_centrality\", ax=ax, palette=palette, order=ordered_datasets,dodge=False)\n",
"\n",
"ax.tick_params(axis='both', which='both', bottom=True, left=True)\n",
"\n",
"plt.title('Betweenness centrality distribution for the Alzheimer disease module and each cell type', fontsize=16)\n",
"plt.xlabel('')\n",
"ax.set_xticklabels([f\"{titles[i]}\\nn = {subset_sizes[dataset]}\" for i, dataset in enumerate(ordered_datasets)],\n",
" rotation=45, ha=\"center\", fontsize=12)\n",
"\n",
"plt.yticks(fontsize=12)\n",
"plt.yscale('log')\n",
"plt.ylabel('log(Betweenness centrality)', fontsize=12)\n",
"sns.despine()\n",
"\n",
"plt.tight_layout()\n",
"# plt.savefig('../figures/betweenness_boxplot.pdf', format='pdf', dpi=1200)\n",
"plt.savefig('../figures/betweenness_boxplot.svg', format='svg', dpi=1200)\n",
"plt.show()"
],
"id": "a75971402585ab7"
},
{
"metadata": {},
"cell_type": "code",
"outputs": [],
"execution_count": null,
"source": [
"# Subset sizes calculation\n",
"subset_sizes = combined_data.groupby(\"dataset\")[\"protein_id\"].nunique()\n",
"\n",
"# Generate color palette\n",
"ordered_datasets = subset_sizes.sort_values(ascending=False).index\n",
"combined_data[\"dataset\"] = pd.Categorical(combined_data[\"dataset\"], categories=ordered_datasets, ordered=True)\n",
"palette = {dataset: '#79C4FF' for dataset in ordered_datasets}\n",
"\n",
"# Assign different color to module\n",
"palette[\"General module for AD\"] = \"#D3D3D3\"\n",
"\n",
"fig, ax = plt.subplots(figsize=(9, 5))\n",
"\n",
"sns.set_context(\"paper\")\n",
"sns.set_style(\"whitegrid\")\n",
"\n",
"sns.boxplot(data=combined_data, x=\"dataset\", y=\"closeness_centrality\", ax=ax, palette=palette, order=ordered_datasets,dodge=False)\n",
"\n",
"ax.tick_params(axis='both', which='both', bottom=True, left=True)\n",
"\n",
"plt.title('Closeness centrality distribution for the Alzheimer disease module and each cell type', fontsize=16)\n",
"plt.xlabel('')\n",
"ax.set_xticklabels([f\"{titles[i]}\\nn = {subset_sizes[dataset]}\" for i, dataset in enumerate(ordered_datasets)],\n",
" rotation=45, ha=\"center\", fontsize=12)\n",
"\n",
"plt.yticks(fontsize=12)\n",
"plt.ylabel('Closeness centrality', fontsize=12)\n",
"sns.despine()\n",
"\n",
"plt.tight_layout()\n",
"# plt.savefig('../figures/closeness_boxplot.pdf', format='pdf', dpi=1200)\n",
"plt.savefig('../figures/closeness_boxplot.svg', format='svg', dpi=1200)\n",
"plt.show()"
],
"id": "b3f8b51fb337d705"
},
{
"metadata": {},
"cell_type": "code",
"outputs": [],
"execution_count": null,
"source": [
"# Subset sizes calculation\n",
"subset_sizes = combined_data.groupby(\"dataset\")[\"protein_id\"].nunique()\n",
"\n",
"# Generate color palette\n",
"ordered_datasets = subset_sizes.sort_values(ascending=False).index\n",
"combined_data[\"dataset\"] = pd.Categorical(combined_data[\"dataset\"], categories=ordered_datasets, ordered=True)\n",
"palette = {dataset: '#79C4FF' for dataset in ordered_datasets}\n",
"\n",
"# Assign different color to module\n",
"palette[\"General module for AD\"] = \"#D3D3D3\"\n",
"\n",
"fig, ax = plt.subplots(figsize=(9, 5))\n",
"\n",
"sns.set_context(\"paper\")\n",
"sns.set_style(\"whitegrid\")\n",
"\n",
"sns.boxplot(data=combined_data, x=\"dataset\", y=\"clustering_coefficient\", ax=ax, palette=palette, order=ordered_datasets,dodge=False)\n",
"\n",
"ax.tick_params(axis='both', which='both', bottom=True, left=True)\n",
"\n",
"plt.title('Clustering coefficient distribution for the Alzheimer disease module and each cell type', fontsize=16)\n",
"plt.xlabel('')\n",
"ax.set_xticklabels([f\"{titles[i]}\\nn = {subset_sizes[dataset]}\" for i, dataset in enumerate(ordered_datasets)],\n",
" rotation=45, ha=\"center\", fontsize=12)\n",
"\n",
"plt.yticks(fontsize=12)\n",
"plt.ylabel('Clustering coefficient', fontsize=12)\n",
"sns.despine()\n",
"\n",
"plt.tight_layout()\n",
"# plt.savefig('../figures/clustering_boxplot.pdf', format='pdf', dpi=1200)\n",
"plt.savefig('../figures/clustering_boxplot.svg', format='svg', dpi=1200)\n",
"plt.show()"
],
"id": "f5044677900aa100"
},
{
"cell_type": "markdown",
......@@ -2470,7 +2831,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "e6f887b5b178def1"
},
{
"cell_type": "code",
......@@ -2484,7 +2846,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "ab727ee10b040538"
},
{
"cell_type": "code",
......@@ -2531,7 +2894,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "6b57bbe54b5b28"
},
{
"cell_type": "code",
......@@ -2564,7 +2928,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "2581372c52955a56"
},
{
"cell_type": "code",
......@@ -2592,7 +2957,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "e139b54ba0f81255"
},
{
"cell_type": "code",
......@@ -2616,7 +2982,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "cdce48893bc12655"
},
{
"cell_type": "markdown",
......@@ -2630,7 +2997,8 @@
"pycharm": {
"name": "#%% md\n"
}
}
},
"id": "8bd41103417ab828"
},
{
"cell_type": "code",
......@@ -2647,7 +3015,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "ff63fb10fa5b4b3b"
},
{
"cell_type": "code",
......@@ -2663,7 +3032,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "1023e511329af34a"
},
{
"cell_type": "code",
......@@ -2677,7 +3047,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "800b8523df769f3"
},
{
"cell_type": "code",
......@@ -2693,7 +3064,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "54f44484637389"
},
{
"cell_type": "code",
......@@ -2715,7 +3087,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "f9b8f634f6a63750"
},
{
"cell_type": "code",
......@@ -2746,7 +3119,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "153d1bce0152d14c"
},
{
"cell_type": "code",
......@@ -2777,7 +3151,8 @@
"pycharm": {
"name": "#%%\n"
}
}
},
"id": "7a6486a2755f8775"
}
],
"metadata": {
......
This source diff could not be displayed because it is too large. You can view the blob instead.
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="648pt" height="360pt" viewBox="0 0 648 360" xmlns="http://www.w3.org/2000/svg" version="1.1">
<metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2025-05-06T16:23:51.444955</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.9.4, https://matplotlib.org/</dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 360
L 648 360
L 648 0
L 0 0
z
" style="fill: #ffffff"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 56.83425 238.541301
L 637.632 238.541301
L 637.632 27.9555
L 56.83425 27.9555
z
" style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<defs>
<path id="m3f3e4e8213" d="M 0 0
L 0 4.8
" style="stroke: #262626"/>
</defs>
<g>
<use xlink:href="#m3f3e4e8213" x="89.100792" y="238.541301" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_1">
<!-- General module for AD -->
<g style="fill: #262626" transform="translate(43.653359 339.222151) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-47" d="M 2638 1797
L 2638 2334
L 4578 2338
L 4578 638
Q 4131 281 3656 101
Q 3181 -78 2681 -78
Q 2006 -78 1454 211
Q 903 500 622 1047
Q 341 1594 341 2269
Q 341 2938 620 3517
Q 900 4097 1425 4378
Q 1950 4659 2634 4659
Q 3131 4659 3532 4498
Q 3934 4338 4162 4050
Q 4391 3763 4509 3300
L 3963 3150
Q 3859 3500 3706 3700
Q 3553 3900 3268 4020
Q 2984 4141 2638 4141
Q 2222 4141 1919 4014
Q 1616 3888 1430 3681
Q 1244 3475 1141 3228
Q 966 2803 966 2306
Q 966 1694 1177 1281
Q 1388 869 1791 669
Q 2194 469 2647 469
Q 3041 469 3416 620
Q 3791 772 3984 944
L 3984 1797
L 2638 1797
z
" transform="scale(0.015625)"/>
<path id="ArialMT-65" d="M 2694 1069
L 3275 997
Q 3138 488 2766 206
Q 2394 -75 1816 -75
Q 1088 -75 661 373
Q 234 822 234 1631
Q 234 2469 665 2931
Q 1097 3394 1784 3394
Q 2450 3394 2872 2941
Q 3294 2488 3294 1666
Q 3294 1616 3291 1516
L 816 1516
Q 847 969 1125 678
Q 1403 388 1819 388
Q 2128 388 2347 550
Q 2566 713 2694 1069
z
M 847 1978
L 2700 1978
Q 2663 2397 2488 2606
Q 2219 2931 1791 2931
Q 1403 2931 1139 2672
Q 875 2413 847 1978
z
" transform="scale(0.015625)"/>
<path id="ArialMT-6e" d="M 422 0
L 422 3319
L 928 3319
L 928 2847
Q 1294 3394 1984 3394
Q 2284 3394 2536 3286
Q 2788 3178 2913 3003
Q 3038 2828 3088 2588
Q 3119 2431 3119 2041
L 3119 0
L 2556 0
L 2556 2019
Q 2556 2363 2490 2533
Q 2425 2703 2258 2804
Q 2091 2906 1866 2906
Q 1506 2906 1245 2678
Q 984 2450 984 1813
L 984 0
L 422 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-72" d="M 416 0
L 416 3319
L 922 3319
L 922 2816
Q 1116 3169 1280 3281
Q 1444 3394 1641 3394
Q 1925 3394 2219 3213
L 2025 2691
Q 1819 2813 1613 2813
Q 1428 2813 1281 2702
Q 1134 2591 1072 2394
Q 978 2094 978 1738
L 978 0
L 416 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-61" d="M 2588 409
Q 2275 144 1986 34
Q 1697 -75 1366 -75
Q 819 -75 525 192
Q 231 459 231 875
Q 231 1119 342 1320
Q 453 1522 633 1644
Q 813 1766 1038 1828
Q 1203 1872 1538 1913
Q 2219 1994 2541 2106
Q 2544 2222 2544 2253
Q 2544 2597 2384 2738
Q 2169 2928 1744 2928
Q 1347 2928 1158 2789
Q 969 2650 878 2297
L 328 2372
Q 403 2725 575 2942
Q 747 3159 1072 3276
Q 1397 3394 1825 3394
Q 2250 3394 2515 3294
Q 2781 3194 2906 3042
Q 3031 2891 3081 2659
Q 3109 2516 3109 2141
L 3109 1391
Q 3109 606 3145 398
Q 3181 191 3288 0
L 2700 0
Q 2613 175 2588 409
z
M 2541 1666
Q 2234 1541 1622 1453
Q 1275 1403 1131 1340
Q 988 1278 909 1158
Q 831 1038 831 891
Q 831 666 1001 516
Q 1172 366 1500 366
Q 1825 366 2078 508
Q 2331 650 2450 897
Q 2541 1088 2541 1459
L 2541 1666
z
" transform="scale(0.015625)"/>
<path id="ArialMT-6c" d="M 409 0
L 409 4581
L 972 4581
L 972 0
L 409 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-20" transform="scale(0.015625)"/>
<path id="ArialMT-6d" d="M 422 0
L 422 3319
L 925 3319
L 925 2853
Q 1081 3097 1340 3245
Q 1600 3394 1931 3394
Q 2300 3394 2536 3241
Q 2772 3088 2869 2813
Q 3263 3394 3894 3394
Q 4388 3394 4653 3120
Q 4919 2847 4919 2278
L 4919 0
L 4359 0
L 4359 2091
Q 4359 2428 4304 2576
Q 4250 2725 4106 2815
Q 3963 2906 3769 2906
Q 3419 2906 3187 2673
Q 2956 2441 2956 1928
L 2956 0
L 2394 0
L 2394 2156
Q 2394 2531 2256 2718
Q 2119 2906 1806 2906
Q 1569 2906 1367 2781
Q 1166 2656 1075 2415
Q 984 2175 984 1722
L 984 0
L 422 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-6f" d="M 213 1659
Q 213 2581 725 3025
Q 1153 3394 1769 3394
Q 2453 3394 2887 2945
Q 3322 2497 3322 1706
Q 3322 1066 3130 698
Q 2938 331 2570 128
Q 2203 -75 1769 -75
Q 1072 -75 642 372
Q 213 819 213 1659
z
M 791 1659
Q 791 1022 1069 705
Q 1347 388 1769 388
Q 2188 388 2466 706
Q 2744 1025 2744 1678
Q 2744 2294 2464 2611
Q 2184 2928 1769 2928
Q 1347 2928 1069 2612
Q 791 2297 791 1659
z
" transform="scale(0.015625)"/>
<path id="ArialMT-64" d="M 2575 0
L 2575 419
Q 2259 -75 1647 -75
Q 1250 -75 917 144
Q 584 363 401 755
Q 219 1147 219 1656
Q 219 2153 384 2558
Q 550 2963 881 3178
Q 1213 3394 1622 3394
Q 1922 3394 2156 3267
Q 2391 3141 2538 2938
L 2538 4581
L 3097 4581
L 3097 0
L 2575 0
z
M 797 1656
Q 797 1019 1065 703
Q 1334 388 1700 388
Q 2069 388 2326 689
Q 2584 991 2584 1609
Q 2584 2291 2321 2609
Q 2059 2928 1675 2928
Q 1300 2928 1048 2622
Q 797 2316 797 1656
z
" transform="scale(0.015625)"/>
<path id="ArialMT-75" d="M 2597 0
L 2597 488
Q 2209 -75 1544 -75
Q 1250 -75 995 37
Q 741 150 617 320
Q 494 491 444 738
Q 409 903 409 1263
L 409 3319
L 972 3319
L 972 1478
Q 972 1038 1006 884
Q 1059 663 1231 536
Q 1403 409 1656 409
Q 1909 409 2131 539
Q 2353 669 2445 892
Q 2538 1116 2538 1541
L 2538 3319
L 3100 3319
L 3100 0
L 2597 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-66" d="M 556 0
L 556 2881
L 59 2881
L 59 3319
L 556 3319
L 556 3672
Q 556 4006 616 4169
Q 697 4388 901 4523
Q 1106 4659 1475 4659
Q 1713 4659 2000 4603
L 1916 4113
Q 1741 4144 1584 4144
Q 1328 4144 1222 4034
Q 1116 3925 1116 3625
L 1116 3319
L 1763 3319
L 1763 2881
L 1116 2881
L 1116 0
L 556 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-41" d="M -9 0
L 1750 4581
L 2403 4581
L 4278 0
L 3588 0
L 3053 1388
L 1138 1388
L 634 0
L -9 0
z
M 1313 1881
L 2866 1881
L 2388 3150
Q 2169 3728 2063 4100
Q 1975 3659 1816 3225
L 1313 1881
z
" transform="scale(0.015625)"/>
<path id="ArialMT-44" d="M 494 0
L 494 4581
L 2072 4581
Q 2606 4581 2888 4516
Q 3281 4425 3559 4188
Q 3922 3881 4101 3404
Q 4281 2928 4281 2316
Q 4281 1794 4159 1391
Q 4038 988 3847 723
Q 3656 459 3429 307
Q 3203 156 2883 78
Q 2563 0 2147 0
L 494 0
z
M 1100 541
L 2078 541
Q 2531 541 2789 625
Q 3047 709 3200 863
Q 3416 1078 3536 1442
Q 3656 1806 3656 2325
Q 3656 3044 3420 3430
Q 3184 3816 2847 3947
Q 2603 4041 2063 4041
L 1100 4041
L 1100 541
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-47"/>
<use xlink:href="#ArialMT-65" x="77.783203"/>
<use xlink:href="#ArialMT-6e" x="133.398438"/>
<use xlink:href="#ArialMT-65" x="189.013672"/>
<use xlink:href="#ArialMT-72" x="244.628906"/>
<use xlink:href="#ArialMT-61" x="277.929688"/>
<use xlink:href="#ArialMT-6c" x="333.544922"/>
<use xlink:href="#ArialMT-20" x="355.761719"/>
<use xlink:href="#ArialMT-6d" x="383.544922"/>
<use xlink:href="#ArialMT-6f" x="466.845703"/>
<use xlink:href="#ArialMT-64" x="522.460938"/>
<use xlink:href="#ArialMT-75" x="578.076172"/>
<use xlink:href="#ArialMT-6c" x="633.691406"/>
<use xlink:href="#ArialMT-65" x="655.908203"/>
<use xlink:href="#ArialMT-20" x="711.523438"/>
<use xlink:href="#ArialMT-66" x="739.306641"/>
<use xlink:href="#ArialMT-6f" x="767.089844"/>
<use xlink:href="#ArialMT-72" x="822.705078"/>
<use xlink:href="#ArialMT-20" x="856.005859"/>
<use xlink:href="#ArialMT-41" x="878.289062"/>
<use xlink:href="#ArialMT-44" x="944.988281"/>
</g>
<!-- n = 2697 -->
<g style="fill: #262626" transform="translate(79.149943 321.675119) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-3d" d="M 3381 2694
L 356 2694
L 356 3219
L 3381 3219
L 3381 2694
z
M 3381 1303
L 356 1303
L 356 1828
L 3381 1828
L 3381 1303
z
" transform="scale(0.015625)"/>
<path id="ArialMT-32" d="M 3222 541
L 3222 0
L 194 0
Q 188 203 259 391
Q 375 700 629 1000
Q 884 1300 1366 1694
Q 2113 2306 2375 2664
Q 2638 3022 2638 3341
Q 2638 3675 2398 3904
Q 2159 4134 1775 4134
Q 1369 4134 1125 3890
Q 881 3647 878 3216
L 300 3275
Q 359 3922 746 4261
Q 1134 4600 1788 4600
Q 2447 4600 2831 4234
Q 3216 3869 3216 3328
Q 3216 3053 3103 2787
Q 2991 2522 2730 2228
Q 2469 1934 1863 1422
Q 1356 997 1212 845
Q 1069 694 975 541
L 3222 541
z
" transform="scale(0.015625)"/>
<path id="ArialMT-36" d="M 3184 3459
L 2625 3416
Q 2550 3747 2413 3897
Q 2184 4138 1850 4138
Q 1581 4138 1378 3988
Q 1113 3794 959 3422
Q 806 3050 800 2363
Q 1003 2672 1297 2822
Q 1591 2972 1913 2972
Q 2475 2972 2870 2558
Q 3266 2144 3266 1488
Q 3266 1056 3080 686
Q 2894 316 2569 119
Q 2244 -78 1831 -78
Q 1128 -78 684 439
Q 241 956 241 2144
Q 241 3472 731 4075
Q 1159 4600 1884 4600
Q 2425 4600 2770 4297
Q 3116 3994 3184 3459
z
M 888 1484
Q 888 1194 1011 928
Q 1134 663 1356 523
Q 1578 384 1822 384
Q 2178 384 2434 671
Q 2691 959 2691 1453
Q 2691 1928 2437 2201
Q 2184 2475 1800 2475
Q 1419 2475 1153 2201
Q 888 1928 888 1484
z
" transform="scale(0.015625)"/>
<path id="ArialMT-39" d="M 350 1059
L 891 1109
Q 959 728 1153 556
Q 1347 384 1650 384
Q 1909 384 2104 503
Q 2300 622 2425 820
Q 2550 1019 2634 1356
Q 2719 1694 2719 2044
Q 2719 2081 2716 2156
Q 2547 1888 2255 1720
Q 1963 1553 1622 1553
Q 1053 1553 659 1965
Q 266 2378 266 3053
Q 266 3750 677 4175
Q 1088 4600 1706 4600
Q 2153 4600 2523 4359
Q 2894 4119 3086 3673
Q 3278 3228 3278 2384
Q 3278 1506 3087 986
Q 2897 466 2520 194
Q 2144 -78 1638 -78
Q 1100 -78 759 220
Q 419 519 350 1059
z
M 2653 3081
Q 2653 3566 2395 3850
Q 2138 4134 1775 4134
Q 1400 4134 1122 3828
Q 844 3522 844 3034
Q 844 2597 1108 2323
Q 1372 2050 1759 2050
Q 2150 2050 2401 2323
Q 2653 2597 2653 3081
z
" transform="scale(0.015625)"/>
<path id="ArialMT-37" d="M 303 3981
L 303 4522
L 3269 4522
L 3269 4084
Q 2831 3619 2401 2847
Q 1972 2075 1738 1259
Q 1569 684 1522 0
L 944 0
Q 953 541 1156 1306
Q 1359 2072 1739 2783
Q 2119 3494 2547 3981
L 303 3981
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-6e"/>
<use xlink:href="#ArialMT-20" x="55.615234"/>
<use xlink:href="#ArialMT-3d" x="83.398438"/>
<use xlink:href="#ArialMT-20" x="141.796875"/>
<use xlink:href="#ArialMT-32" x="169.580078"/>
<use xlink:href="#ArialMT-36" x="225.195312"/>
<use xlink:href="#ArialMT-39" x="280.810547"/>
<use xlink:href="#ArialMT-37" x="336.425781"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_2">
<g>
<use xlink:href="#m3f3e4e8213" x="153.633875" y="238.541301" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_2">
<!-- Glutamatergic neuron -->
<g style="fill: #262626" transform="translate(110.547075 334.608279) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-74" d="M 1650 503
L 1731 6
Q 1494 -44 1306 -44
Q 1000 -44 831 53
Q 663 150 594 308
Q 525 466 525 972
L 525 2881
L 113 2881
L 113 3319
L 525 3319
L 525 4141
L 1084 4478
L 1084 3319
L 1650 3319
L 1650 2881
L 1084 2881
L 1084 941
Q 1084 700 1114 631
Q 1144 563 1211 522
Q 1278 481 1403 481
Q 1497 481 1650 503
z
" transform="scale(0.015625)"/>
<path id="ArialMT-67" d="M 319 -275
L 866 -356
Q 900 -609 1056 -725
Q 1266 -881 1628 -881
Q 2019 -881 2231 -725
Q 2444 -569 2519 -288
Q 2563 -116 2559 434
Q 2191 0 1641 0
Q 956 0 581 494
Q 206 988 206 1678
Q 206 2153 378 2554
Q 550 2956 876 3175
Q 1203 3394 1644 3394
Q 2231 3394 2613 2919
L 2613 3319
L 3131 3319
L 3131 450
Q 3131 -325 2973 -648
Q 2816 -972 2473 -1159
Q 2131 -1347 1631 -1347
Q 1038 -1347 672 -1080
Q 306 -813 319 -275
z
M 784 1719
Q 784 1066 1043 766
Q 1303 466 1694 466
Q 2081 466 2343 764
Q 2606 1063 2606 1700
Q 2606 2309 2336 2618
Q 2066 2928 1684 2928
Q 1309 2928 1046 2623
Q 784 2319 784 1719
z
" transform="scale(0.015625)"/>
<path id="ArialMT-69" d="M 425 3934
L 425 4581
L 988 4581
L 988 3934
L 425 3934
z
M 425 0
L 425 3319
L 988 3319
L 988 0
L 425 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-63" d="M 2588 1216
L 3141 1144
Q 3050 572 2676 248
Q 2303 -75 1759 -75
Q 1078 -75 664 370
Q 250 816 250 1647
Q 250 2184 428 2587
Q 606 2991 970 3192
Q 1334 3394 1763 3394
Q 2303 3394 2647 3120
Q 2991 2847 3088 2344
L 2541 2259
Q 2463 2594 2264 2762
Q 2066 2931 1784 2931
Q 1359 2931 1093 2626
Q 828 2322 828 1663
Q 828 994 1084 691
Q 1341 388 1753 388
Q 2084 388 2306 591
Q 2528 794 2588 1216
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-47"/>
<use xlink:href="#ArialMT-6c" x="77.783203"/>
<use xlink:href="#ArialMT-75" x="100"/>
<use xlink:href="#ArialMT-74" x="155.615234"/>
<use xlink:href="#ArialMT-61" x="183.398438"/>
<use xlink:href="#ArialMT-6d" x="239.013672"/>
<use xlink:href="#ArialMT-61" x="322.314453"/>
<use xlink:href="#ArialMT-74" x="377.929688"/>
<use xlink:href="#ArialMT-65" x="405.712891"/>
<use xlink:href="#ArialMT-72" x="461.328125"/>
<use xlink:href="#ArialMT-67" x="494.628906"/>
<use xlink:href="#ArialMT-69" x="550.244141"/>
<use xlink:href="#ArialMT-63" x="572.460938"/>
<use xlink:href="#ArialMT-20" x="622.460938"/>
<use xlink:href="#ArialMT-6e" x="650.244141"/>
<use xlink:href="#ArialMT-65" x="705.859375"/>
<use xlink:href="#ArialMT-75" x="761.474609"/>
<use xlink:href="#ArialMT-72" x="817.089844"/>
<use xlink:href="#ArialMT-6f" x="850.390625"/>
<use xlink:href="#ArialMT-6e" x="906.005859"/>
</g>
<!-- n = 733 -->
<g style="fill: #262626" transform="translate(146.143758 317.160021) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-33" d="M 269 1209
L 831 1284
Q 928 806 1161 595
Q 1394 384 1728 384
Q 2125 384 2398 659
Q 2672 934 2672 1341
Q 2672 1728 2419 1979
Q 2166 2231 1775 2231
Q 1616 2231 1378 2169
L 1441 2663
Q 1497 2656 1531 2656
Q 1891 2656 2178 2843
Q 2466 3031 2466 3422
Q 2466 3731 2256 3934
Q 2047 4138 1716 4138
Q 1388 4138 1169 3931
Q 950 3725 888 3313
L 325 3413
Q 428 3978 793 4289
Q 1159 4600 1703 4600
Q 2078 4600 2393 4439
Q 2709 4278 2876 4000
Q 3044 3722 3044 3409
Q 3044 3113 2884 2869
Q 2725 2625 2413 2481
Q 2819 2388 3044 2092
Q 3269 1797 3269 1353
Q 3269 753 2831 336
Q 2394 -81 1725 -81
Q 1122 -81 723 278
Q 325 638 269 1209
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-6e"/>
<use xlink:href="#ArialMT-20" x="55.615234"/>
<use xlink:href="#ArialMT-3d" x="83.398438"/>
<use xlink:href="#ArialMT-20" x="141.796875"/>
<use xlink:href="#ArialMT-37" x="169.580078"/>
<use xlink:href="#ArialMT-33" x="225.195312"/>
<use xlink:href="#ArialMT-33" x="280.810547"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_3">
<g>
<use xlink:href="#m3f3e4e8213" x="218.166958" y="238.541301" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_3">
<!-- Inhibitory interneuron -->
<g style="fill: #262626" transform="translate(175.969124 332.623519) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-49" d="M 597 0
L 597 4581
L 1203 4581
L 1203 0
L 597 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-68" d="M 422 0
L 422 4581
L 984 4581
L 984 2938
Q 1378 3394 1978 3394
Q 2347 3394 2619 3248
Q 2891 3103 3008 2847
Q 3125 2591 3125 2103
L 3125 0
L 2563 0
L 2563 2103
Q 2563 2525 2380 2717
Q 2197 2909 1863 2909
Q 1613 2909 1392 2779
Q 1172 2650 1078 2428
Q 984 2206 984 1816
L 984 0
L 422 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-62" d="M 941 0
L 419 0
L 419 4581
L 981 4581
L 981 2947
Q 1338 3394 1891 3394
Q 2197 3394 2470 3270
Q 2744 3147 2920 2923
Q 3097 2700 3197 2384
Q 3297 2069 3297 1709
Q 3297 856 2875 390
Q 2453 -75 1863 -75
Q 1275 -75 941 416
L 941 0
z
M 934 1684
Q 934 1088 1097 822
Q 1363 388 1816 388
Q 2184 388 2453 708
Q 2722 1028 2722 1663
Q 2722 2313 2464 2622
Q 2206 2931 1841 2931
Q 1472 2931 1203 2611
Q 934 2291 934 1684
z
" transform="scale(0.015625)"/>
<path id="ArialMT-79" d="M 397 -1278
L 334 -750
Q 519 -800 656 -800
Q 844 -800 956 -737
Q 1069 -675 1141 -563
Q 1194 -478 1313 -144
Q 1328 -97 1363 -6
L 103 3319
L 709 3319
L 1400 1397
Q 1534 1031 1641 628
Q 1738 1016 1872 1384
L 2581 3319
L 3144 3319
L 1881 -56
Q 1678 -603 1566 -809
Q 1416 -1088 1222 -1217
Q 1028 -1347 759 -1347
Q 597 -1347 397 -1278
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-49"/>
<use xlink:href="#ArialMT-6e" x="27.783203"/>
<use xlink:href="#ArialMT-68" x="83.398438"/>
<use xlink:href="#ArialMT-69" x="139.013672"/>
<use xlink:href="#ArialMT-62" x="161.230469"/>
<use xlink:href="#ArialMT-69" x="216.845703"/>
<use xlink:href="#ArialMT-74" x="239.0625"/>
<use xlink:href="#ArialMT-6f" x="266.845703"/>
<use xlink:href="#ArialMT-72" x="322.460938"/>
<use xlink:href="#ArialMT-79" x="355.761719"/>
<use xlink:href="#ArialMT-20" x="405.761719"/>
<use xlink:href="#ArialMT-69" x="433.544922"/>
<use xlink:href="#ArialMT-6e" x="455.761719"/>
<use xlink:href="#ArialMT-74" x="511.376953"/>
<use xlink:href="#ArialMT-65" x="539.160156"/>
<use xlink:href="#ArialMT-72" x="594.775391"/>
<use xlink:href="#ArialMT-6e" x="628.076172"/>
<use xlink:href="#ArialMT-65" x="683.691406"/>
<use xlink:href="#ArialMT-75" x="739.306641"/>
<use xlink:href="#ArialMT-72" x="794.921875"/>
<use xlink:href="#ArialMT-6f" x="828.222656"/>
<use xlink:href="#ArialMT-6e" x="883.837891"/>
</g>
<!-- n = 673 -->
<g style="fill: #262626" transform="translate(210.625134 316.115934) rotate(-45) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-6e"/>
<use xlink:href="#ArialMT-20" x="55.615234"/>
<use xlink:href="#ArialMT-3d" x="83.398438"/>
<use xlink:href="#ArialMT-20" x="141.796875"/>
<use xlink:href="#ArialMT-36" x="169.580078"/>
<use xlink:href="#ArialMT-37" x="225.195312"/>
<use xlink:href="#ArialMT-33" x="280.810547"/>
</g>
</g>
</g>
<g id="xtick_4">
<g id="line2d_4">
<g>
<use xlink:href="#m3f3e4e8213" x="282.700042" y="238.541301" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_4">
<!-- Oligodendrocyte -->
<g style="fill: #262626" transform="translate(249.517156 314.811057) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-4f" d="M 309 2231
Q 309 3372 921 4017
Q 1534 4663 2503 4663
Q 3138 4663 3647 4359
Q 4156 4056 4423 3514
Q 4691 2972 4691 2284
Q 4691 1588 4409 1038
Q 4128 488 3612 205
Q 3097 -78 2500 -78
Q 1853 -78 1343 234
Q 834 547 571 1087
Q 309 1628 309 2231
z
M 934 2222
Q 934 1394 1379 917
Q 1825 441 2497 441
Q 3181 441 3623 922
Q 4066 1403 4066 2288
Q 4066 2847 3877 3264
Q 3688 3681 3323 3911
Q 2959 4141 2506 4141
Q 1863 4141 1398 3698
Q 934 3256 934 2222
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-4f"/>
<use xlink:href="#ArialMT-6c" x="77.783203"/>
<use xlink:href="#ArialMT-69" x="100"/>
<use xlink:href="#ArialMT-67" x="122.216797"/>
<use xlink:href="#ArialMT-6f" x="177.832031"/>
<use xlink:href="#ArialMT-64" x="233.447266"/>
<use xlink:href="#ArialMT-65" x="289.0625"/>
<use xlink:href="#ArialMT-6e" x="344.677734"/>
<use xlink:href="#ArialMT-64" x="400.292969"/>
<use xlink:href="#ArialMT-72" x="455.908203"/>
<use xlink:href="#ArialMT-6f" x="489.208984"/>
<use xlink:href="#ArialMT-63" x="544.824219"/>
<use xlink:href="#ArialMT-79" x="594.824219"/>
<use xlink:href="#ArialMT-74" x="644.824219"/>
<use xlink:href="#ArialMT-65" x="672.607422"/>
</g>
<!-- n = 554 -->
<g style="fill: #262626" transform="translate(275.212576 307.264062) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-35" d="M 266 1200
L 856 1250
Q 922 819 1161 601
Q 1400 384 1738 384
Q 2144 384 2425 690
Q 2706 997 2706 1503
Q 2706 1984 2436 2262
Q 2166 2541 1728 2541
Q 1456 2541 1237 2417
Q 1019 2294 894 2097
L 366 2166
L 809 4519
L 3088 4519
L 3088 3981
L 1259 3981
L 1013 2750
Q 1425 3038 1878 3038
Q 2478 3038 2890 2622
Q 3303 2206 3303 1553
Q 3303 931 2941 478
Q 2500 -78 1738 -78
Q 1113 -78 717 272
Q 322 622 266 1200
z
" transform="scale(0.015625)"/>
<path id="ArialMT-34" d="M 2069 0
L 2069 1097
L 81 1097
L 81 1613
L 2172 4581
L 2631 4581
L 2631 1613
L 3250 1613
L 3250 1097
L 2631 1097
L 2631 0
L 2069 0
z
M 2069 1613
L 2069 3678
L 634 1613
L 2069 1613
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-6e"/>
<use xlink:href="#ArialMT-20" x="55.615234"/>
<use xlink:href="#ArialMT-3d" x="83.398438"/>
<use xlink:href="#ArialMT-20" x="141.796875"/>
<use xlink:href="#ArialMT-35" x="169.580078"/>
<use xlink:href="#ArialMT-35" x="225.195312"/>
<use xlink:href="#ArialMT-34" x="280.810547"/>
</g>
</g>
</g>
<g id="xtick_5">
<g id="line2d_5">
<g>
<use xlink:href="#m3f3e4e8213" x="347.233125" y="238.541301" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_5">
<!-- Astrocyte -->
<g style="fill: #262626" transform="translate(327.207065 288.279969) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-73" d="M 197 991
L 753 1078
Q 800 744 1014 566
Q 1228 388 1613 388
Q 2000 388 2187 545
Q 2375 703 2375 916
Q 2375 1106 2209 1216
Q 2094 1291 1634 1406
Q 1016 1563 777 1677
Q 538 1791 414 1992
Q 291 2194 291 2438
Q 291 2659 392 2848
Q 494 3038 669 3163
Q 800 3259 1026 3326
Q 1253 3394 1513 3394
Q 1903 3394 2198 3281
Q 2494 3169 2634 2976
Q 2775 2784 2828 2463
L 2278 2388
Q 2241 2644 2061 2787
Q 1881 2931 1553 2931
Q 1166 2931 1000 2803
Q 834 2675 834 2503
Q 834 2394 903 2306
Q 972 2216 1119 2156
Q 1203 2125 1616 2013
Q 2213 1853 2448 1751
Q 2684 1650 2818 1456
Q 2953 1263 2953 975
Q 2953 694 2789 445
Q 2625 197 2315 61
Q 2006 -75 1616 -75
Q 969 -75 630 194
Q 291 463 197 991
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-41"/>
<use xlink:href="#ArialMT-73" x="66.699219"/>
<use xlink:href="#ArialMT-74" x="116.699219"/>
<use xlink:href="#ArialMT-72" x="144.482422"/>
<use xlink:href="#ArialMT-6f" x="177.783203"/>
<use xlink:href="#ArialMT-63" x="233.398438"/>
<use xlink:href="#ArialMT-79" x="283.398438"/>
<use xlink:href="#ArialMT-74" x="333.398438"/>
<use xlink:href="#ArialMT-65" x="361.181641"/>
</g>
<!-- n = 532 -->
<g style="fill: #262626" transform="translate(339.691301 293.944159) rotate(-45) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-6e"/>
<use xlink:href="#ArialMT-20" x="55.615234"/>
<use xlink:href="#ArialMT-3d" x="83.398438"/>
<use xlink:href="#ArialMT-20" x="141.796875"/>
<use xlink:href="#ArialMT-35" x="169.580078"/>
<use xlink:href="#ArialMT-33" x="225.195312"/>
<use xlink:href="#ArialMT-32" x="280.810547"/>
</g>
</g>
</g>
<g id="xtick_6">
<g id="line2d_6">
<g>
<use xlink:href="#m3f3e4e8213" x="411.766208" y="238.541301" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_6">
<!-- Microglial cell -->
<g style="fill: #262626" transform="translate(383.961532 303.837202) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-4d" d="M 475 0
L 475 4581
L 1388 4581
L 2472 1338
Q 2622 884 2691 659
Q 2769 909 2934 1394
L 4031 4581
L 4847 4581
L 4847 0
L 4263 0
L 4263 3834
L 2931 0
L 2384 0
L 1059 3900
L 1059 0
L 475 0
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-4d"/>
<use xlink:href="#ArialMT-69" x="83.300781"/>
<use xlink:href="#ArialMT-63" x="105.517578"/>
<use xlink:href="#ArialMT-72" x="155.517578"/>
<use xlink:href="#ArialMT-6f" x="188.818359"/>
<use xlink:href="#ArialMT-67" x="244.433594"/>
<use xlink:href="#ArialMT-6c" x="300.048828"/>
<use xlink:href="#ArialMT-69" x="322.265625"/>
<use xlink:href="#ArialMT-61" x="344.482422"/>
<use xlink:href="#ArialMT-6c" x="400.097656"/>
<use xlink:href="#ArialMT-20" x="422.314453"/>
<use xlink:href="#ArialMT-63" x="450.097656"/>
<use xlink:href="#ArialMT-65" x="500.097656"/>
<use xlink:href="#ArialMT-6c" x="555.712891"/>
<use xlink:href="#ArialMT-6c" x="577.929688"/>
</g>
<!-- n = 334 -->
<g style="fill: #262626" transform="translate(404.224384 301.722776) rotate(-45) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-6e"/>
<use xlink:href="#ArialMT-20" x="55.615234"/>
<use xlink:href="#ArialMT-3d" x="83.398438"/>
<use xlink:href="#ArialMT-20" x="141.796875"/>
<use xlink:href="#ArialMT-33" x="169.580078"/>
<use xlink:href="#ArialMT-33" x="225.195312"/>
<use xlink:href="#ArialMT-34" x="280.810547"/>
</g>
</g>
</g>
<g id="xtick_7">
<g id="line2d_7">
<g>
<use xlink:href="#m3f3e4e8213" x="476.299292" y="238.541301" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_7">
<!-- OPC -->
<g style="fill: #262626" transform="translate(464.811547 276.38135) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-50" d="M 494 0
L 494 4581
L 2222 4581
Q 2678 4581 2919 4538
Q 3256 4481 3484 4323
Q 3713 4166 3852 3881
Q 3991 3597 3991 3256
Q 3991 2672 3619 2267
Q 3247 1863 2275 1863
L 1100 1863
L 1100 0
L 494 0
z
M 1100 2403
L 2284 2403
Q 2872 2403 3119 2622
Q 3366 2841 3366 3238
Q 3366 3525 3220 3729
Q 3075 3934 2838 4000
Q 2684 4041 2272 4041
L 1100 4041
L 1100 2403
z
" transform="scale(0.015625)"/>
<path id="ArialMT-43" d="M 3763 1606
L 4369 1453
Q 4178 706 3683 314
Q 3188 -78 2472 -78
Q 1731 -78 1267 223
Q 803 525 561 1097
Q 319 1669 319 2325
Q 319 3041 592 3573
Q 866 4106 1370 4382
Q 1875 4659 2481 4659
Q 3169 4659 3637 4309
Q 4106 3959 4291 3325
L 3694 3184
Q 3534 3684 3231 3912
Q 2928 4141 2469 4141
Q 1941 4141 1586 3887
Q 1231 3634 1087 3207
Q 944 2781 944 2328
Q 944 1744 1114 1308
Q 1284 872 1643 656
Q 2003 441 2422 441
Q 2931 441 3284 734
Q 3638 1028 3763 1606
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-4f"/>
<use xlink:href="#ArialMT-50" x="77.783203"/>
<use xlink:href="#ArialMT-43" x="144.482422"/>
</g>
<!-- n = 320 -->
<g style="fill: #262626" transform="translate(468.707749 290.4347) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-30" d="M 266 2259
Q 266 3072 433 3567
Q 600 4063 929 4331
Q 1259 4600 1759 4600
Q 2128 4600 2406 4451
Q 2684 4303 2865 4023
Q 3047 3744 3150 3342
Q 3253 2941 3253 2259
Q 3253 1453 3087 958
Q 2922 463 2592 192
Q 2263 -78 1759 -78
Q 1097 -78 719 397
Q 266 969 266 2259
z
M 844 2259
Q 844 1131 1108 757
Q 1372 384 1759 384
Q 2147 384 2411 759
Q 2675 1134 2675 2259
Q 2675 3391 2411 3762
Q 2147 4134 1753 4134
Q 1366 4134 1134 3806
Q 844 3388 844 2259
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-6e"/>
<use xlink:href="#ArialMT-20" x="55.615234"/>
<use xlink:href="#ArialMT-3d" x="83.398438"/>
<use xlink:href="#ArialMT-20" x="141.796875"/>
<use xlink:href="#ArialMT-33" x="169.580078"/>
<use xlink:href="#ArialMT-32" x="225.195312"/>
<use xlink:href="#ArialMT-30" x="280.810547"/>
</g>
</g>
</g>
<g id="xtick_8">
<g id="line2d_8">
<g>
<use xlink:href="#m3f3e4e8213" x="540.832375" y="238.541301" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_8">
<!-- Endothelial cell -->
<g style="fill: #262626" transform="translate(510.001503 309.989031) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-45" d="M 506 0
L 506 4581
L 3819 4581
L 3819 4041
L 1113 4041
L 1113 2638
L 3647 2638
L 3647 2100
L 1113 2100
L 1113 541
L 3925 541
L 3925 0
L 506 0
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-45"/>
<use xlink:href="#ArialMT-6e" x="66.699219"/>
<use xlink:href="#ArialMT-64" x="122.314453"/>
<use xlink:href="#ArialMT-6f" x="177.929688"/>
<use xlink:href="#ArialMT-74" x="233.544922"/>
<use xlink:href="#ArialMT-68" x="261.328125"/>
<use xlink:href="#ArialMT-65" x="316.943359"/>
<use xlink:href="#ArialMT-6c" x="372.558594"/>
<use xlink:href="#ArialMT-69" x="394.775391"/>
<use xlink:href="#ArialMT-61" x="416.992188"/>
<use xlink:href="#ArialMT-6c" x="472.607422"/>
<use xlink:href="#ArialMT-20" x="494.824219"/>
<use xlink:href="#ArialMT-63" x="522.607422"/>
<use xlink:href="#ArialMT-65" x="572.607422"/>
<use xlink:href="#ArialMT-6c" x="628.222656"/>
<use xlink:href="#ArialMT-6c" x="650.439453"/>
</g>
<!-- n = 73 -->
<g style="fill: #262626" transform="translate(535.600138 302.339947) rotate(-45) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-6e"/>
<use xlink:href="#ArialMT-20" x="55.615234"/>
<use xlink:href="#ArialMT-3d" x="83.398438"/>
<use xlink:href="#ArialMT-20" x="141.796875"/>
<use xlink:href="#ArialMT-37" x="169.580078"/>
<use xlink:href="#ArialMT-33" x="225.195312"/>
</g>
</g>
</g>
<g id="xtick_9">
<g id="line2d_9">
<g>
<use xlink:href="#m3f3e4e8213" x="605.365458" y="238.541301" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_9">
<!-- Pericyte -->
<g style="fill: #262626" transform="translate(587.696716 283.565334) rotate(-45) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-50"/>
<use xlink:href="#ArialMT-65" x="66.699219"/>
<use xlink:href="#ArialMT-72" x="122.314453"/>
<use xlink:href="#ArialMT-69" x="155.615234"/>
<use xlink:href="#ArialMT-63" x="177.832031"/>
<use xlink:href="#ArialMT-79" x="227.832031"/>
<use xlink:href="#ArialMT-74" x="277.832031"/>
<use xlink:href="#ArialMT-65" x="305.615234"/>
</g>
<!-- n = 20 -->
<g style="fill: #262626" transform="translate(600.18294 289.227536) rotate(-45) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-6e"/>
<use xlink:href="#ArialMT-20" x="55.615234"/>
<use xlink:href="#ArialMT-3d" x="83.398438"/>
<use xlink:href="#ArialMT-20" x="141.796875"/>
<use xlink:href="#ArialMT-32" x="169.580078"/>
<use xlink:href="#ArialMT-30" x="225.195312"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_10">
<path d="M 56.83425 234.138176
L 637.632 234.138176
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
</g>
<g id="line2d_11">
<defs>
<path id="mf67419e822" d="M 0 0
L -4.8 0
" style="stroke: #262626"/>
</defs>
<g>
<use xlink:href="#mf67419e822" x="56.83425" y="234.138176" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_10">
<!-- 0.20 -->
<g style="fill: #262626" transform="translate(25.181125 238.432864) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-2e" d="M 581 0
L 581 641
L 1222 641
L 1222 0
L 581 0
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-30"/>
<use xlink:href="#ArialMT-2e" x="55.615234"/>
<use xlink:href="#ArialMT-32" x="83.398438"/>
<use xlink:href="#ArialMT-30" x="139.013672"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_12">
<path d="M 56.83425 197.416683
L 637.632 197.416683
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
</g>
<g id="line2d_13">
<g>
<use xlink:href="#mf67419e822" x="56.83425" y="197.416683" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_11">
<!-- 0.25 -->
<g style="fill: #262626" transform="translate(25.181125 201.71137) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-30"/>
<use xlink:href="#ArialMT-2e" x="55.615234"/>
<use xlink:href="#ArialMT-32" x="83.398438"/>
<use xlink:href="#ArialMT-35" x="139.013672"/>
</g>
</g>
</g>
<g id="ytick_3">
<g id="line2d_14">
<path d="M 56.83425 160.69519
L 637.632 160.69519
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
</g>
<g id="line2d_15">
<g>
<use xlink:href="#mf67419e822" x="56.83425" y="160.69519" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_12">
<!-- 0.30 -->
<g style="fill: #262626" transform="translate(25.181125 164.989877) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-30"/>
<use xlink:href="#ArialMT-2e" x="55.615234"/>
<use xlink:href="#ArialMT-33" x="83.398438"/>
<use xlink:href="#ArialMT-30" x="139.013672"/>
</g>
</g>
</g>
<g id="ytick_4">
<g id="line2d_16">
<path d="M 56.83425 123.973696
L 637.632 123.973696
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
</g>
<g id="line2d_17">
<g>
<use xlink:href="#mf67419e822" x="56.83425" y="123.973696" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_13">
<!-- 0.35 -->
<g style="fill: #262626" transform="translate(25.181125 128.268384) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-30"/>
<use xlink:href="#ArialMT-2e" x="55.615234"/>
<use xlink:href="#ArialMT-33" x="83.398438"/>
<use xlink:href="#ArialMT-35" x="139.013672"/>
</g>
</g>
</g>
<g id="ytick_5">
<g id="line2d_18">
<path d="M 56.83425 87.252203
L 637.632 87.252203
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
</g>
<g id="line2d_19">
<g>
<use xlink:href="#mf67419e822" x="56.83425" y="87.252203" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_14">
<!-- 0.40 -->
<g style="fill: #262626" transform="translate(25.181125 91.54689) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-30"/>
<use xlink:href="#ArialMT-2e" x="55.615234"/>
<use xlink:href="#ArialMT-34" x="83.398438"/>
<use xlink:href="#ArialMT-30" x="139.013672"/>
</g>
</g>
</g>
<g id="ytick_6">
<g id="line2d_20">
<path d="M 56.83425 50.53071
L 637.632 50.53071
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
</g>
<g id="line2d_21">
<g>
<use xlink:href="#mf67419e822" x="56.83425" y="50.53071" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_15">
<!-- 0.45 -->
<g style="fill: #262626" transform="translate(25.181125 54.825397) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-30"/>
<use xlink:href="#ArialMT-2e" x="55.615234"/>
<use xlink:href="#ArialMT-34" x="83.398438"/>
<use xlink:href="#ArialMT-35" x="139.013672"/>
</g>
</g>
</g>
<g id="text_16">
<!-- Closeness centrality -->
<g style="fill: #262626" transform="translate(18.6555 186.935276) rotate(-90) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-43"/>
<use xlink:href="#ArialMT-6c" x="72.216797"/>
<use xlink:href="#ArialMT-6f" x="94.433594"/>
<use xlink:href="#ArialMT-73" x="150.048828"/>
<use xlink:href="#ArialMT-65" x="200.048828"/>
<use xlink:href="#ArialMT-6e" x="255.664062"/>
<use xlink:href="#ArialMT-65" x="311.279297"/>
<use xlink:href="#ArialMT-73" x="366.894531"/>
<use xlink:href="#ArialMT-73" x="416.894531"/>
<use xlink:href="#ArialMT-20" x="466.894531"/>
<use xlink:href="#ArialMT-63" x="494.677734"/>
<use xlink:href="#ArialMT-65" x="544.677734"/>
<use xlink:href="#ArialMT-6e" x="600.292969"/>
<use xlink:href="#ArialMT-74" x="655.908203"/>
<use xlink:href="#ArialMT-72" x="683.691406"/>
<use xlink:href="#ArialMT-61" x="716.992188"/>
<use xlink:href="#ArialMT-6c" x="772.607422"/>
<use xlink:href="#ArialMT-69" x="794.824219"/>
<use xlink:href="#ArialMT-74" x="817.041016"/>
<use xlink:href="#ArialMT-79" x="844.824219"/>
</g>
</g>
</g>
<g id="patch_3">
<path d="M 63.287558 155.978328
L 114.914025 155.978328
L 114.914025 125.373766
L 63.287558 125.373766
L 63.287558 155.978328
z
" clip-path="url(#p917b23bcda)" style="fill: #d3d3d3; stroke: #717171; stroke-linejoin: miter"/>
</g>
<g id="line2d_22">
<path d="M 89.100792 155.978328
L 89.100792 201.519748
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_23">
<path d="M 89.100792 125.373766
L 89.100792 79.926741
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_24">
<path d="M 76.194175 201.519748
L 102.007408 201.519748
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_25">
<path d="M 76.194175 79.926741
L 102.007408 79.926741
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_26">
<defs>
<path id="m6bf907ffd5" d="M 0 2.4
C 0.636487 2.4 1.246992 2.147121 1.697056 1.697056
C 2.147121 1.246992 2.4 0.636487 2.4 0
C 2.4 -0.636487 2.147121 -1.246992 1.697056 -1.697056
C 1.246992 -2.147121 0.636487 -2.4 0 -2.4
C -0.636487 -2.4 -1.246992 -2.147121 -1.697056 -1.697056
C -2.147121 -1.246992 -2.4 -0.636487 -2.4 0
C -2.4 0.636487 -2.147121 1.246992 -1.697056 1.697056
C -1.246992 2.147121 -0.636487 2.4 0 2.4
z
" style="stroke: #717171"/>
</defs>
<g clip-path="url(#p917b23bcda)">
<use xlink:href="#m6bf907ffd5" x="89.100792" y="212.384379" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="202.47339" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="228.96922" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="204.516555" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="201.921568" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="209.740794" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="203.363522" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="201.890523" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="209.356697" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="222.729426" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="208.942226" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="204.280095" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="208.174731" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="223.579501" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="208.030063" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="204.729832" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="48.879951" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="75.573543" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="37.527582" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="73.391374" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="78.730424" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="63.62038" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="63.847677" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="68.68848" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="73.825733" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="78.479687" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="47.163166" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="73.490546" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="77.09316" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="74.425715" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="71.718748" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="71.980812" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="73.612517" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="89.100792" y="76.779999" style="fill-opacity: 0; stroke: #717171"/>
</g>
</g>
<g id="patch_4">
<path d="M 127.820642 147.981454
L 179.447108 147.981454
L 179.447108 118.178147
L 127.820642 118.178147
L 127.820642 147.981454
z
" clip-path="url(#p917b23bcda)" style="fill: #8ac2ee; stroke: #717171; stroke-linejoin: miter"/>
</g>
<g id="line2d_27">
<path d="M 153.633875 147.981454
L 153.633875 186.745237
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_28">
<path d="M 153.633875 118.178147
L 153.633875 73.490546
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_29">
<path d="M 140.727258 186.745237
L 166.540492 186.745237
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_30">
<path d="M 140.727258 73.490546
L 166.540492 73.490546
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_31">
<g clip-path="url(#p917b23bcda)">
<use xlink:href="#m6bf907ffd5" x="153.633875" y="196.482022" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="153.633875" y="208.174731" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="153.633875" y="47.163166" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="153.633875" y="71.718748" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="153.633875" y="63.847677" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="153.633875" y="63.62038" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="153.633875" y="73.391374" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="153.633875" y="71.980812" style="fill-opacity: 0; stroke: #717171"/>
</g>
</g>
<g id="patch_5">
<path d="M 192.353725 147.053768
L 243.980192 147.053768
L 243.980192 118.372984
L 192.353725 118.372984
L 192.353725 147.053768
z
" clip-path="url(#p917b23bcda)" style="fill: #8ac2ee; stroke: #717171; stroke-linejoin: miter"/>
</g>
<g id="line2d_32">
<path d="M 218.166958 147.053768
L 218.166958 188.75128
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_33">
<path d="M 218.166958 118.372984
L 218.166958 78.479687
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_34">
<path d="M 205.260342 188.75128
L 231.073575 188.75128
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_35">
<path d="M 205.260342 78.479687
L 231.073575 78.479687
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_36">
<g clip-path="url(#p917b23bcda)">
<use xlink:href="#m6bf907ffd5" x="218.166958" y="199.645262" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="218.166958" y="196.482022" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="218.166958" y="191.93213" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="218.166958" y="222.729426" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="218.166958" y="71.718748" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="218.166958" y="48.879951" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="218.166958" y="68.68848" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="218.166958" y="63.847677" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="218.166958" y="63.62038" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="218.166958" y="73.490546" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="218.166958" y="71.980812" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="218.166958" y="73.391374" style="fill-opacity: 0; stroke: #717171"/>
</g>
</g>
<g id="patch_6">
<path d="M 256.886808 147.981454
L 308.513275 147.981454
L 308.513275 119.963938
L 256.886808 119.963938
L 256.886808 147.981454
z
" clip-path="url(#p917b23bcda)" style="fill: #8ac2ee; stroke: #717171; stroke-linejoin: miter"/>
</g>
<g id="line2d_37">
<path d="M 282.700042 147.981454
L 282.700042 188.231187
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_38">
<path d="M 282.700042 119.963938
L 282.700042 78.479687
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_39">
<path d="M 269.793425 188.231187
L 295.606658 188.231187
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_40">
<path d="M 269.793425 78.479687
L 295.606658 78.479687
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_41">
<g clip-path="url(#p917b23bcda)">
<use xlink:href="#m6bf907ffd5" x="282.700042" y="193.118271" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="282.700042" y="198.800424" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="282.700042" y="75.573543" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="282.700042" y="47.163166" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="282.700042" y="73.612517" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="282.700042" y="73.490546" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="282.700042" y="71.980812" style="fill-opacity: 0; stroke: #717171"/>
</g>
</g>
<g id="patch_7">
<path d="M 321.419892 148.166327
L 373.046358 148.166327
L 373.046358 119.735676
L 321.419892 119.735676
L 321.419892 148.166327
z
" clip-path="url(#p917b23bcda)" style="fill: #8ac2ee; stroke: #717171; stroke-linejoin: miter"/>
</g>
<g id="line2d_42">
<path d="M 347.233125 148.166327
L 347.233125 186.107056
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_43">
<path d="M 347.233125 119.735676
L 347.233125 78.479687
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_44">
<path d="M 334.326508 186.107056
L 360.139742 186.107056
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_45">
<path d="M 334.326508 78.479687
L 360.139742 78.479687
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_46">
<g clip-path="url(#p917b23bcda)">
<use xlink:href="#m6bf907ffd5" x="347.233125" y="208.174731" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="347.233125" y="76.779999" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="347.233125" y="75.573543" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="347.233125" y="47.163166" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="347.233125" y="71.718748" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="347.233125" y="68.68848" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="347.233125" y="73.490546" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="347.233125" y="71.980812" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="347.233125" y="73.391374" style="fill-opacity: 0; stroke: #717171"/>
</g>
</g>
<g id="patch_8">
<path d="M 385.952975 143.359093
L 437.579442 143.359093
L 437.579442 118.847425
L 385.952975 118.847425
L 385.952975 143.359093
z
" clip-path="url(#p917b23bcda)" style="fill: #8ac2ee; stroke: #717171; stroke-linejoin: miter"/>
</g>
<g id="line2d_47">
<path d="M 411.766208 143.359093
L 411.766208 177.238162
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_48">
<path d="M 411.766208 118.847425
L 411.766208 85.572093
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_49">
<path d="M 398.859592 177.238162
L 424.672825 177.238162
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_50">
<path d="M 398.859592 85.572093
L 424.672825 85.572093
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_51">
<g clip-path="url(#p917b23bcda)">
<use xlink:href="#m6bf907ffd5" x="411.766208" y="187.864843" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="411.766208" y="188.237181" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="411.766208" y="184.035775" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="411.766208" y="182.506436" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="411.766208" y="47.163166" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="411.766208" y="73.612517" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="411.766208" y="48.879951" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="411.766208" y="78.730424" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="411.766208" y="63.847677" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="411.766208" y="73.490546" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="411.766208" y="71.980812" style="fill-opacity: 0; stroke: #717171"/>
</g>
</g>
<g id="patch_9">
<path d="M 450.486058 141.794549
L 502.112525 141.794549
L 502.112525 116.093525
L 450.486058 116.093525
L 450.486058 141.794549
z
" clip-path="url(#p917b23bcda)" style="fill: #8ac2ee; stroke: #717171; stroke-linejoin: miter"/>
</g>
<g id="line2d_52">
<path d="M 476.299292 141.794549
L 476.299292 177.238162
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_53">
<path d="M 476.299292 116.093525
L 476.299292 78.479687
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_54">
<path d="M 463.392675 177.238162
L 489.205908 177.238162
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_55">
<path d="M 463.392675 78.479687
L 489.205908 78.479687
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_56">
<g clip-path="url(#p917b23bcda)">
<use xlink:href="#m6bf907ffd5" x="476.299292" y="47.163166" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="476.299292" y="73.612517" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="476.299292" y="68.68848" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="476.299292" y="73.490546" style="fill-opacity: 0; stroke: #717171"/>
</g>
</g>
<g id="patch_10">
<path d="M 515.019142 134.23596
L 566.645608 134.23596
L 566.645608 109.386868
L 515.019142 109.386868
L 515.019142 134.23596
z
" clip-path="url(#p917b23bcda)" style="fill: #8ac2ee; stroke: #717171; stroke-linejoin: miter"/>
</g>
<g id="line2d_57">
<path d="M 540.832375 134.23596
L 540.832375 167.593521
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_58">
<path d="M 540.832375 109.386868
L 540.832375 73.490546
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_59">
<path d="M 527.925758 167.593521
L 553.738992 167.593521
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_60">
<path d="M 527.925758 73.490546
L 553.738992 73.490546
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_61">
<g clip-path="url(#p917b23bcda)">
<use xlink:href="#m6bf907ffd5" x="540.832375" y="68.68848" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#m6bf907ffd5" x="540.832375" y="71.980812" style="fill-opacity: 0; stroke: #717171"/>
</g>
</g>
<g id="patch_11">
<path d="M 579.552225 124.224235
L 631.178692 124.224235
L 631.178692 102.977889
L 579.552225 102.977889
L 579.552225 124.224235
z
" clip-path="url(#p917b23bcda)" style="fill: #8ac2ee; stroke: #717171; stroke-linejoin: miter"/>
</g>
<g id="line2d_62">
<path d="M 605.365458 124.224235
L 605.365458 147.981454
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_63">
<path d="M 605.365458 102.977889
L 605.365458 71.980812
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_64">
<path d="M 592.458842 147.981454
L 618.272075 147.981454
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_65">
<path d="M 592.458842 71.980812
L 618.272075 71.980812
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_66"/>
<g id="line2d_67">
<path d="M 63.287558 140.477946
L 114.914025 140.477946
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_68">
<path d="M 127.820642 134.024606
L 179.447108 134.024606
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_69">
<path d="M 192.353725 133.546498
L 243.980192 133.546498
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_70">
<path d="M 256.886808 134.429789
L 308.513275 134.429789
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_71">
<path d="M 321.419892 134.701598
L 373.046358 134.701598
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_72">
<path d="M 385.952975 132.235791
L 437.579442 132.235791
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_73">
<path d="M 450.486058 129.138294
L 502.112525 129.138294
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_74">
<path d="M 515.019142 120.672298
L 566.645608 120.672298
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_75">
<path d="M 579.552225 116.436593
L 631.178692 116.436593
" clip-path="url(#p917b23bcda)" style="fill: none; stroke: #717171"/>
</g>
<g id="patch_12">
<path d="M 56.83425 238.541301
L 56.83425 27.9555
" style="fill: none; stroke: #cccccc; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_13">
<path d="M 56.83425 238.541301
L 637.632 238.541301
" style="fill: none; stroke: #cccccc; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_17">
<!-- Closeness distribution for the Alzheimer disease module and each cell type -->
<g style="fill: #262626" transform="translate(81.768125 21.9555) scale(0.16 -0.16)">
<defs>
<path id="ArialMT-7a" d="M 125 0
L 125 456
L 2238 2881
Q 1878 2863 1603 2863
L 250 2863
L 250 3319
L 2963 3319
L 2963 2947
L 1166 841
L 819 456
Q 1197 484 1528 484
L 3063 484
L 3063 0
L 125 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-70" d="M 422 -1272
L 422 3319
L 934 3319
L 934 2888
Q 1116 3141 1344 3267
Q 1572 3394 1897 3394
Q 2322 3394 2647 3175
Q 2972 2956 3137 2557
Q 3303 2159 3303 1684
Q 3303 1175 3120 767
Q 2938 359 2589 142
Q 2241 -75 1856 -75
Q 1575 -75 1351 44
Q 1128 163 984 344
L 984 -1272
L 422 -1272
z
M 931 1641
Q 931 1000 1190 694
Q 1450 388 1819 388
Q 2194 388 2461 705
Q 2728 1022 2728 1688
Q 2728 2322 2467 2637
Q 2206 2953 1844 2953
Q 1484 2953 1207 2617
Q 931 2281 931 1641
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-43"/>
<use xlink:href="#ArialMT-6c" x="72.216797"/>
<use xlink:href="#ArialMT-6f" x="94.433594"/>
<use xlink:href="#ArialMT-73" x="150.048828"/>
<use xlink:href="#ArialMT-65" x="200.048828"/>
<use xlink:href="#ArialMT-6e" x="255.664062"/>
<use xlink:href="#ArialMT-65" x="311.279297"/>
<use xlink:href="#ArialMT-73" x="366.894531"/>
<use xlink:href="#ArialMT-73" x="416.894531"/>
<use xlink:href="#ArialMT-20" x="466.894531"/>
<use xlink:href="#ArialMT-64" x="494.677734"/>
<use xlink:href="#ArialMT-69" x="550.292969"/>
<use xlink:href="#ArialMT-73" x="572.509766"/>
<use xlink:href="#ArialMT-74" x="622.509766"/>
<use xlink:href="#ArialMT-72" x="650.292969"/>
<use xlink:href="#ArialMT-69" x="683.59375"/>
<use xlink:href="#ArialMT-62" x="705.810547"/>
<use xlink:href="#ArialMT-75" x="761.425781"/>
<use xlink:href="#ArialMT-74" x="817.041016"/>
<use xlink:href="#ArialMT-69" x="844.824219"/>
<use xlink:href="#ArialMT-6f" x="867.041016"/>
<use xlink:href="#ArialMT-6e" x="922.65625"/>
<use xlink:href="#ArialMT-20" x="978.271484"/>
<use xlink:href="#ArialMT-66" x="1006.054688"/>
<use xlink:href="#ArialMT-6f" x="1033.837891"/>
<use xlink:href="#ArialMT-72" x="1089.453125"/>
<use xlink:href="#ArialMT-20" x="1122.753906"/>
<use xlink:href="#ArialMT-74" x="1150.537109"/>
<use xlink:href="#ArialMT-68" x="1178.320312"/>
<use xlink:href="#ArialMT-65" x="1233.935547"/>
<use xlink:href="#ArialMT-20" x="1289.550781"/>
<use xlink:href="#ArialMT-41" x="1311.833984"/>
<use xlink:href="#ArialMT-6c" x="1378.533203"/>
<use xlink:href="#ArialMT-7a" x="1400.75"/>
<use xlink:href="#ArialMT-68" x="1450.75"/>
<use xlink:href="#ArialMT-65" x="1506.365234"/>
<use xlink:href="#ArialMT-69" x="1561.980469"/>
<use xlink:href="#ArialMT-6d" x="1584.197266"/>
<use xlink:href="#ArialMT-65" x="1667.498047"/>
<use xlink:href="#ArialMT-72" x="1723.113281"/>
<use xlink:href="#ArialMT-20" x="1756.414062"/>
<use xlink:href="#ArialMT-64" x="1784.197266"/>
<use xlink:href="#ArialMT-69" x="1839.8125"/>
<use xlink:href="#ArialMT-73" x="1862.029297"/>
<use xlink:href="#ArialMT-65" x="1912.029297"/>
<use xlink:href="#ArialMT-61" x="1967.644531"/>
<use xlink:href="#ArialMT-73" x="2023.259766"/>
<use xlink:href="#ArialMT-65" x="2073.259766"/>
<use xlink:href="#ArialMT-20" x="2128.875"/>
<use xlink:href="#ArialMT-6d" x="2156.658203"/>
<use xlink:href="#ArialMT-6f" x="2239.958984"/>
<use xlink:href="#ArialMT-64" x="2295.574219"/>
<use xlink:href="#ArialMT-75" x="2351.189453"/>
<use xlink:href="#ArialMT-6c" x="2406.804688"/>
<use xlink:href="#ArialMT-65" x="2429.021484"/>
<use xlink:href="#ArialMT-20" x="2484.636719"/>
<use xlink:href="#ArialMT-61" x="2512.419922"/>
<use xlink:href="#ArialMT-6e" x="2568.035156"/>
<use xlink:href="#ArialMT-64" x="2623.650391"/>
<use xlink:href="#ArialMT-20" x="2679.265625"/>
<use xlink:href="#ArialMT-65" x="2707.048828"/>
<use xlink:href="#ArialMT-61" x="2762.664062"/>
<use xlink:href="#ArialMT-63" x="2818.279297"/>
<use xlink:href="#ArialMT-68" x="2868.279297"/>
<use xlink:href="#ArialMT-20" x="2923.894531"/>
<use xlink:href="#ArialMT-63" x="2951.677734"/>
<use xlink:href="#ArialMT-65" x="3001.677734"/>
<use xlink:href="#ArialMT-6c" x="3057.292969"/>
<use xlink:href="#ArialMT-6c" x="3079.509766"/>
<use xlink:href="#ArialMT-20" x="3101.726562"/>
<use xlink:href="#ArialMT-74" x="3129.509766"/>
<use xlink:href="#ArialMT-79" x="3157.292969"/>
<use xlink:href="#ArialMT-70" x="3207.292969"/>
<use xlink:href="#ArialMT-65" x="3262.908203"/>
</g>
</g>
</g>
</g>
<defs>
<clipPath id="p917b23bcda">
<rect x="56.83425" y="27.9555" width="580.79775" height="210.585801"/>
</clipPath>
</defs>
</svg>
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns:xlink="http://www.w3.org/1999/xlink" width="648pt" height="360pt" viewBox="0 0 648 360" xmlns="http://www.w3.org/2000/svg" version="1.1">
<metadata>
<rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:date>2025-05-06T16:25:06.321864</dc:date>
<dc:format>image/svg+xml</dc:format>
<dc:creator>
<cc:Agent>
<dc:title>Matplotlib v3.9.4, https://matplotlib.org/</dc:title>
</cc:Agent>
</dc:creator>
</cc:Work>
</rdf:RDF>
</metadata>
<defs>
<style type="text/css">*{stroke-linejoin: round; stroke-linecap: butt}</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 360
L 648 360
L 648 0
L 0 0
z
" style="fill: #ffffff"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 50.17425 238.541301
L 637.632 238.541301
L 637.632 27.9555
L 50.17425 27.9555
z
" style="fill: #ffffff"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<defs>
<path id="m8f016dc461" d="M 0 0
L 0 4.8
" style="stroke: #262626"/>
</defs>
<g>
<use xlink:href="#m8f016dc461" x="82.810792" y="238.541301" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_1">
<!-- General module for AD -->
<g style="fill: #262626" transform="translate(37.363359 339.222151) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-47" d="M 2638 1797
L 2638 2334
L 4578 2338
L 4578 638
Q 4131 281 3656 101
Q 3181 -78 2681 -78
Q 2006 -78 1454 211
Q 903 500 622 1047
Q 341 1594 341 2269
Q 341 2938 620 3517
Q 900 4097 1425 4378
Q 1950 4659 2634 4659
Q 3131 4659 3532 4498
Q 3934 4338 4162 4050
Q 4391 3763 4509 3300
L 3963 3150
Q 3859 3500 3706 3700
Q 3553 3900 3268 4020
Q 2984 4141 2638 4141
Q 2222 4141 1919 4014
Q 1616 3888 1430 3681
Q 1244 3475 1141 3228
Q 966 2803 966 2306
Q 966 1694 1177 1281
Q 1388 869 1791 669
Q 2194 469 2647 469
Q 3041 469 3416 620
Q 3791 772 3984 944
L 3984 1797
L 2638 1797
z
" transform="scale(0.015625)"/>
<path id="ArialMT-65" d="M 2694 1069
L 3275 997
Q 3138 488 2766 206
Q 2394 -75 1816 -75
Q 1088 -75 661 373
Q 234 822 234 1631
Q 234 2469 665 2931
Q 1097 3394 1784 3394
Q 2450 3394 2872 2941
Q 3294 2488 3294 1666
Q 3294 1616 3291 1516
L 816 1516
Q 847 969 1125 678
Q 1403 388 1819 388
Q 2128 388 2347 550
Q 2566 713 2694 1069
z
M 847 1978
L 2700 1978
Q 2663 2397 2488 2606
Q 2219 2931 1791 2931
Q 1403 2931 1139 2672
Q 875 2413 847 1978
z
" transform="scale(0.015625)"/>
<path id="ArialMT-6e" d="M 422 0
L 422 3319
L 928 3319
L 928 2847
Q 1294 3394 1984 3394
Q 2284 3394 2536 3286
Q 2788 3178 2913 3003
Q 3038 2828 3088 2588
Q 3119 2431 3119 2041
L 3119 0
L 2556 0
L 2556 2019
Q 2556 2363 2490 2533
Q 2425 2703 2258 2804
Q 2091 2906 1866 2906
Q 1506 2906 1245 2678
Q 984 2450 984 1813
L 984 0
L 422 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-72" d="M 416 0
L 416 3319
L 922 3319
L 922 2816
Q 1116 3169 1280 3281
Q 1444 3394 1641 3394
Q 1925 3394 2219 3213
L 2025 2691
Q 1819 2813 1613 2813
Q 1428 2813 1281 2702
Q 1134 2591 1072 2394
Q 978 2094 978 1738
L 978 0
L 416 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-61" d="M 2588 409
Q 2275 144 1986 34
Q 1697 -75 1366 -75
Q 819 -75 525 192
Q 231 459 231 875
Q 231 1119 342 1320
Q 453 1522 633 1644
Q 813 1766 1038 1828
Q 1203 1872 1538 1913
Q 2219 1994 2541 2106
Q 2544 2222 2544 2253
Q 2544 2597 2384 2738
Q 2169 2928 1744 2928
Q 1347 2928 1158 2789
Q 969 2650 878 2297
L 328 2372
Q 403 2725 575 2942
Q 747 3159 1072 3276
Q 1397 3394 1825 3394
Q 2250 3394 2515 3294
Q 2781 3194 2906 3042
Q 3031 2891 3081 2659
Q 3109 2516 3109 2141
L 3109 1391
Q 3109 606 3145 398
Q 3181 191 3288 0
L 2700 0
Q 2613 175 2588 409
z
M 2541 1666
Q 2234 1541 1622 1453
Q 1275 1403 1131 1340
Q 988 1278 909 1158
Q 831 1038 831 891
Q 831 666 1001 516
Q 1172 366 1500 366
Q 1825 366 2078 508
Q 2331 650 2450 897
Q 2541 1088 2541 1459
L 2541 1666
z
" transform="scale(0.015625)"/>
<path id="ArialMT-6c" d="M 409 0
L 409 4581
L 972 4581
L 972 0
L 409 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-20" transform="scale(0.015625)"/>
<path id="ArialMT-6d" d="M 422 0
L 422 3319
L 925 3319
L 925 2853
Q 1081 3097 1340 3245
Q 1600 3394 1931 3394
Q 2300 3394 2536 3241
Q 2772 3088 2869 2813
Q 3263 3394 3894 3394
Q 4388 3394 4653 3120
Q 4919 2847 4919 2278
L 4919 0
L 4359 0
L 4359 2091
Q 4359 2428 4304 2576
Q 4250 2725 4106 2815
Q 3963 2906 3769 2906
Q 3419 2906 3187 2673
Q 2956 2441 2956 1928
L 2956 0
L 2394 0
L 2394 2156
Q 2394 2531 2256 2718
Q 2119 2906 1806 2906
Q 1569 2906 1367 2781
Q 1166 2656 1075 2415
Q 984 2175 984 1722
L 984 0
L 422 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-6f" d="M 213 1659
Q 213 2581 725 3025
Q 1153 3394 1769 3394
Q 2453 3394 2887 2945
Q 3322 2497 3322 1706
Q 3322 1066 3130 698
Q 2938 331 2570 128
Q 2203 -75 1769 -75
Q 1072 -75 642 372
Q 213 819 213 1659
z
M 791 1659
Q 791 1022 1069 705
Q 1347 388 1769 388
Q 2188 388 2466 706
Q 2744 1025 2744 1678
Q 2744 2294 2464 2611
Q 2184 2928 1769 2928
Q 1347 2928 1069 2612
Q 791 2297 791 1659
z
" transform="scale(0.015625)"/>
<path id="ArialMT-64" d="M 2575 0
L 2575 419
Q 2259 -75 1647 -75
Q 1250 -75 917 144
Q 584 363 401 755
Q 219 1147 219 1656
Q 219 2153 384 2558
Q 550 2963 881 3178
Q 1213 3394 1622 3394
Q 1922 3394 2156 3267
Q 2391 3141 2538 2938
L 2538 4581
L 3097 4581
L 3097 0
L 2575 0
z
M 797 1656
Q 797 1019 1065 703
Q 1334 388 1700 388
Q 2069 388 2326 689
Q 2584 991 2584 1609
Q 2584 2291 2321 2609
Q 2059 2928 1675 2928
Q 1300 2928 1048 2622
Q 797 2316 797 1656
z
" transform="scale(0.015625)"/>
<path id="ArialMT-75" d="M 2597 0
L 2597 488
Q 2209 -75 1544 -75
Q 1250 -75 995 37
Q 741 150 617 320
Q 494 491 444 738
Q 409 903 409 1263
L 409 3319
L 972 3319
L 972 1478
Q 972 1038 1006 884
Q 1059 663 1231 536
Q 1403 409 1656 409
Q 1909 409 2131 539
Q 2353 669 2445 892
Q 2538 1116 2538 1541
L 2538 3319
L 3100 3319
L 3100 0
L 2597 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-66" d="M 556 0
L 556 2881
L 59 2881
L 59 3319
L 556 3319
L 556 3672
Q 556 4006 616 4169
Q 697 4388 901 4523
Q 1106 4659 1475 4659
Q 1713 4659 2000 4603
L 1916 4113
Q 1741 4144 1584 4144
Q 1328 4144 1222 4034
Q 1116 3925 1116 3625
L 1116 3319
L 1763 3319
L 1763 2881
L 1116 2881
L 1116 0
L 556 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-41" d="M -9 0
L 1750 4581
L 2403 4581
L 4278 0
L 3588 0
L 3053 1388
L 1138 1388
L 634 0
L -9 0
z
M 1313 1881
L 2866 1881
L 2388 3150
Q 2169 3728 2063 4100
Q 1975 3659 1816 3225
L 1313 1881
z
" transform="scale(0.015625)"/>
<path id="ArialMT-44" d="M 494 0
L 494 4581
L 2072 4581
Q 2606 4581 2888 4516
Q 3281 4425 3559 4188
Q 3922 3881 4101 3404
Q 4281 2928 4281 2316
Q 4281 1794 4159 1391
Q 4038 988 3847 723
Q 3656 459 3429 307
Q 3203 156 2883 78
Q 2563 0 2147 0
L 494 0
z
M 1100 541
L 2078 541
Q 2531 541 2789 625
Q 3047 709 3200 863
Q 3416 1078 3536 1442
Q 3656 1806 3656 2325
Q 3656 3044 3420 3430
Q 3184 3816 2847 3947
Q 2603 4041 2063 4041
L 1100 4041
L 1100 541
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-47"/>
<use xlink:href="#ArialMT-65" x="77.783203"/>
<use xlink:href="#ArialMT-6e" x="133.398438"/>
<use xlink:href="#ArialMT-65" x="189.013672"/>
<use xlink:href="#ArialMT-72" x="244.628906"/>
<use xlink:href="#ArialMT-61" x="277.929688"/>
<use xlink:href="#ArialMT-6c" x="333.544922"/>
<use xlink:href="#ArialMT-20" x="355.761719"/>
<use xlink:href="#ArialMT-6d" x="383.544922"/>
<use xlink:href="#ArialMT-6f" x="466.845703"/>
<use xlink:href="#ArialMT-64" x="522.460938"/>
<use xlink:href="#ArialMT-75" x="578.076172"/>
<use xlink:href="#ArialMT-6c" x="633.691406"/>
<use xlink:href="#ArialMT-65" x="655.908203"/>
<use xlink:href="#ArialMT-20" x="711.523438"/>
<use xlink:href="#ArialMT-66" x="739.306641"/>
<use xlink:href="#ArialMT-6f" x="767.089844"/>
<use xlink:href="#ArialMT-72" x="822.705078"/>
<use xlink:href="#ArialMT-20" x="856.005859"/>
<use xlink:href="#ArialMT-41" x="878.289062"/>
<use xlink:href="#ArialMT-44" x="944.988281"/>
</g>
<!-- n = 2697 -->
<g style="fill: #262626" transform="translate(72.859943 321.675119) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-3d" d="M 3381 2694
L 356 2694
L 356 3219
L 3381 3219
L 3381 2694
z
M 3381 1303
L 356 1303
L 356 1828
L 3381 1828
L 3381 1303
z
" transform="scale(0.015625)"/>
<path id="ArialMT-32" d="M 3222 541
L 3222 0
L 194 0
Q 188 203 259 391
Q 375 700 629 1000
Q 884 1300 1366 1694
Q 2113 2306 2375 2664
Q 2638 3022 2638 3341
Q 2638 3675 2398 3904
Q 2159 4134 1775 4134
Q 1369 4134 1125 3890
Q 881 3647 878 3216
L 300 3275
Q 359 3922 746 4261
Q 1134 4600 1788 4600
Q 2447 4600 2831 4234
Q 3216 3869 3216 3328
Q 3216 3053 3103 2787
Q 2991 2522 2730 2228
Q 2469 1934 1863 1422
Q 1356 997 1212 845
Q 1069 694 975 541
L 3222 541
z
" transform="scale(0.015625)"/>
<path id="ArialMT-36" d="M 3184 3459
L 2625 3416
Q 2550 3747 2413 3897
Q 2184 4138 1850 4138
Q 1581 4138 1378 3988
Q 1113 3794 959 3422
Q 806 3050 800 2363
Q 1003 2672 1297 2822
Q 1591 2972 1913 2972
Q 2475 2972 2870 2558
Q 3266 2144 3266 1488
Q 3266 1056 3080 686
Q 2894 316 2569 119
Q 2244 -78 1831 -78
Q 1128 -78 684 439
Q 241 956 241 2144
Q 241 3472 731 4075
Q 1159 4600 1884 4600
Q 2425 4600 2770 4297
Q 3116 3994 3184 3459
z
M 888 1484
Q 888 1194 1011 928
Q 1134 663 1356 523
Q 1578 384 1822 384
Q 2178 384 2434 671
Q 2691 959 2691 1453
Q 2691 1928 2437 2201
Q 2184 2475 1800 2475
Q 1419 2475 1153 2201
Q 888 1928 888 1484
z
" transform="scale(0.015625)"/>
<path id="ArialMT-39" d="M 350 1059
L 891 1109
Q 959 728 1153 556
Q 1347 384 1650 384
Q 1909 384 2104 503
Q 2300 622 2425 820
Q 2550 1019 2634 1356
Q 2719 1694 2719 2044
Q 2719 2081 2716 2156
Q 2547 1888 2255 1720
Q 1963 1553 1622 1553
Q 1053 1553 659 1965
Q 266 2378 266 3053
Q 266 3750 677 4175
Q 1088 4600 1706 4600
Q 2153 4600 2523 4359
Q 2894 4119 3086 3673
Q 3278 3228 3278 2384
Q 3278 1506 3087 986
Q 2897 466 2520 194
Q 2144 -78 1638 -78
Q 1100 -78 759 220
Q 419 519 350 1059
z
M 2653 3081
Q 2653 3566 2395 3850
Q 2138 4134 1775 4134
Q 1400 4134 1122 3828
Q 844 3522 844 3034
Q 844 2597 1108 2323
Q 1372 2050 1759 2050
Q 2150 2050 2401 2323
Q 2653 2597 2653 3081
z
" transform="scale(0.015625)"/>
<path id="ArialMT-37" d="M 303 3981
L 303 4522
L 3269 4522
L 3269 4084
Q 2831 3619 2401 2847
Q 1972 2075 1738 1259
Q 1569 684 1522 0
L 944 0
Q 953 541 1156 1306
Q 1359 2072 1739 2783
Q 2119 3494 2547 3981
L 303 3981
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-6e"/>
<use xlink:href="#ArialMT-20" x="55.615234"/>
<use xlink:href="#ArialMT-3d" x="83.398438"/>
<use xlink:href="#ArialMT-20" x="141.796875"/>
<use xlink:href="#ArialMT-32" x="169.580078"/>
<use xlink:href="#ArialMT-36" x="225.195312"/>
<use xlink:href="#ArialMT-39" x="280.810547"/>
<use xlink:href="#ArialMT-37" x="336.425781"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_2">
<g>
<use xlink:href="#m8f016dc461" x="148.083875" y="238.541301" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_2">
<!-- Glutamatergic neuron -->
<g style="fill: #262626" transform="translate(104.997075 334.608279) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-74" d="M 1650 503
L 1731 6
Q 1494 -44 1306 -44
Q 1000 -44 831 53
Q 663 150 594 308
Q 525 466 525 972
L 525 2881
L 113 2881
L 113 3319
L 525 3319
L 525 4141
L 1084 4478
L 1084 3319
L 1650 3319
L 1650 2881
L 1084 2881
L 1084 941
Q 1084 700 1114 631
Q 1144 563 1211 522
Q 1278 481 1403 481
Q 1497 481 1650 503
z
" transform="scale(0.015625)"/>
<path id="ArialMT-67" d="M 319 -275
L 866 -356
Q 900 -609 1056 -725
Q 1266 -881 1628 -881
Q 2019 -881 2231 -725
Q 2444 -569 2519 -288
Q 2563 -116 2559 434
Q 2191 0 1641 0
Q 956 0 581 494
Q 206 988 206 1678
Q 206 2153 378 2554
Q 550 2956 876 3175
Q 1203 3394 1644 3394
Q 2231 3394 2613 2919
L 2613 3319
L 3131 3319
L 3131 450
Q 3131 -325 2973 -648
Q 2816 -972 2473 -1159
Q 2131 -1347 1631 -1347
Q 1038 -1347 672 -1080
Q 306 -813 319 -275
z
M 784 1719
Q 784 1066 1043 766
Q 1303 466 1694 466
Q 2081 466 2343 764
Q 2606 1063 2606 1700
Q 2606 2309 2336 2618
Q 2066 2928 1684 2928
Q 1309 2928 1046 2623
Q 784 2319 784 1719
z
" transform="scale(0.015625)"/>
<path id="ArialMT-69" d="M 425 3934
L 425 4581
L 988 4581
L 988 3934
L 425 3934
z
M 425 0
L 425 3319
L 988 3319
L 988 0
L 425 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-63" d="M 2588 1216
L 3141 1144
Q 3050 572 2676 248
Q 2303 -75 1759 -75
Q 1078 -75 664 370
Q 250 816 250 1647
Q 250 2184 428 2587
Q 606 2991 970 3192
Q 1334 3394 1763 3394
Q 2303 3394 2647 3120
Q 2991 2847 3088 2344
L 2541 2259
Q 2463 2594 2264 2762
Q 2066 2931 1784 2931
Q 1359 2931 1093 2626
Q 828 2322 828 1663
Q 828 994 1084 691
Q 1341 388 1753 388
Q 2084 388 2306 591
Q 2528 794 2588 1216
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-47"/>
<use xlink:href="#ArialMT-6c" x="77.783203"/>
<use xlink:href="#ArialMT-75" x="100"/>
<use xlink:href="#ArialMT-74" x="155.615234"/>
<use xlink:href="#ArialMT-61" x="183.398438"/>
<use xlink:href="#ArialMT-6d" x="239.013672"/>
<use xlink:href="#ArialMT-61" x="322.314453"/>
<use xlink:href="#ArialMT-74" x="377.929688"/>
<use xlink:href="#ArialMT-65" x="405.712891"/>
<use xlink:href="#ArialMT-72" x="461.328125"/>
<use xlink:href="#ArialMT-67" x="494.628906"/>
<use xlink:href="#ArialMT-69" x="550.244141"/>
<use xlink:href="#ArialMT-63" x="572.460938"/>
<use xlink:href="#ArialMT-20" x="622.460938"/>
<use xlink:href="#ArialMT-6e" x="650.244141"/>
<use xlink:href="#ArialMT-65" x="705.859375"/>
<use xlink:href="#ArialMT-75" x="761.474609"/>
<use xlink:href="#ArialMT-72" x="817.089844"/>
<use xlink:href="#ArialMT-6f" x="850.390625"/>
<use xlink:href="#ArialMT-6e" x="906.005859"/>
</g>
<!-- n = 733 -->
<g style="fill: #262626" transform="translate(140.593758 317.160021) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-33" d="M 269 1209
L 831 1284
Q 928 806 1161 595
Q 1394 384 1728 384
Q 2125 384 2398 659
Q 2672 934 2672 1341
Q 2672 1728 2419 1979
Q 2166 2231 1775 2231
Q 1616 2231 1378 2169
L 1441 2663
Q 1497 2656 1531 2656
Q 1891 2656 2178 2843
Q 2466 3031 2466 3422
Q 2466 3731 2256 3934
Q 2047 4138 1716 4138
Q 1388 4138 1169 3931
Q 950 3725 888 3313
L 325 3413
Q 428 3978 793 4289
Q 1159 4600 1703 4600
Q 2078 4600 2393 4439
Q 2709 4278 2876 4000
Q 3044 3722 3044 3409
Q 3044 3113 2884 2869
Q 2725 2625 2413 2481
Q 2819 2388 3044 2092
Q 3269 1797 3269 1353
Q 3269 753 2831 336
Q 2394 -81 1725 -81
Q 1122 -81 723 278
Q 325 638 269 1209
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-6e"/>
<use xlink:href="#ArialMT-20" x="55.615234"/>
<use xlink:href="#ArialMT-3d" x="83.398438"/>
<use xlink:href="#ArialMT-20" x="141.796875"/>
<use xlink:href="#ArialMT-37" x="169.580078"/>
<use xlink:href="#ArialMT-33" x="225.195312"/>
<use xlink:href="#ArialMT-33" x="280.810547"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_3">
<g>
<use xlink:href="#m8f016dc461" x="213.356958" y="238.541301" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_3">
<!-- Inhibitory interneuron -->
<g style="fill: #262626" transform="translate(171.159124 332.623519) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-49" d="M 597 0
L 597 4581
L 1203 4581
L 1203 0
L 597 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-68" d="M 422 0
L 422 4581
L 984 4581
L 984 2938
Q 1378 3394 1978 3394
Q 2347 3394 2619 3248
Q 2891 3103 3008 2847
Q 3125 2591 3125 2103
L 3125 0
L 2563 0
L 2563 2103
Q 2563 2525 2380 2717
Q 2197 2909 1863 2909
Q 1613 2909 1392 2779
Q 1172 2650 1078 2428
Q 984 2206 984 1816
L 984 0
L 422 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-62" d="M 941 0
L 419 0
L 419 4581
L 981 4581
L 981 2947
Q 1338 3394 1891 3394
Q 2197 3394 2470 3270
Q 2744 3147 2920 2923
Q 3097 2700 3197 2384
Q 3297 2069 3297 1709
Q 3297 856 2875 390
Q 2453 -75 1863 -75
Q 1275 -75 941 416
L 941 0
z
M 934 1684
Q 934 1088 1097 822
Q 1363 388 1816 388
Q 2184 388 2453 708
Q 2722 1028 2722 1663
Q 2722 2313 2464 2622
Q 2206 2931 1841 2931
Q 1472 2931 1203 2611
Q 934 2291 934 1684
z
" transform="scale(0.015625)"/>
<path id="ArialMT-79" d="M 397 -1278
L 334 -750
Q 519 -800 656 -800
Q 844 -800 956 -737
Q 1069 -675 1141 -563
Q 1194 -478 1313 -144
Q 1328 -97 1363 -6
L 103 3319
L 709 3319
L 1400 1397
Q 1534 1031 1641 628
Q 1738 1016 1872 1384
L 2581 3319
L 3144 3319
L 1881 -56
Q 1678 -603 1566 -809
Q 1416 -1088 1222 -1217
Q 1028 -1347 759 -1347
Q 597 -1347 397 -1278
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-49"/>
<use xlink:href="#ArialMT-6e" x="27.783203"/>
<use xlink:href="#ArialMT-68" x="83.398438"/>
<use xlink:href="#ArialMT-69" x="139.013672"/>
<use xlink:href="#ArialMT-62" x="161.230469"/>
<use xlink:href="#ArialMT-69" x="216.845703"/>
<use xlink:href="#ArialMT-74" x="239.0625"/>
<use xlink:href="#ArialMT-6f" x="266.845703"/>
<use xlink:href="#ArialMT-72" x="322.460938"/>
<use xlink:href="#ArialMT-79" x="355.761719"/>
<use xlink:href="#ArialMT-20" x="405.761719"/>
<use xlink:href="#ArialMT-69" x="433.544922"/>
<use xlink:href="#ArialMT-6e" x="455.761719"/>
<use xlink:href="#ArialMT-74" x="511.376953"/>
<use xlink:href="#ArialMT-65" x="539.160156"/>
<use xlink:href="#ArialMT-72" x="594.775391"/>
<use xlink:href="#ArialMT-6e" x="628.076172"/>
<use xlink:href="#ArialMT-65" x="683.691406"/>
<use xlink:href="#ArialMT-75" x="739.306641"/>
<use xlink:href="#ArialMT-72" x="794.921875"/>
<use xlink:href="#ArialMT-6f" x="828.222656"/>
<use xlink:href="#ArialMT-6e" x="883.837891"/>
</g>
<!-- n = 673 -->
<g style="fill: #262626" transform="translate(205.815134 316.115934) rotate(-45) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-6e"/>
<use xlink:href="#ArialMT-20" x="55.615234"/>
<use xlink:href="#ArialMT-3d" x="83.398438"/>
<use xlink:href="#ArialMT-20" x="141.796875"/>
<use xlink:href="#ArialMT-36" x="169.580078"/>
<use xlink:href="#ArialMT-37" x="225.195312"/>
<use xlink:href="#ArialMT-33" x="280.810547"/>
</g>
</g>
</g>
<g id="xtick_4">
<g id="line2d_4">
<g>
<use xlink:href="#m8f016dc461" x="278.630042" y="238.541301" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_4">
<!-- Oligodendrocyte -->
<g style="fill: #262626" transform="translate(245.447156 314.811057) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-4f" d="M 309 2231
Q 309 3372 921 4017
Q 1534 4663 2503 4663
Q 3138 4663 3647 4359
Q 4156 4056 4423 3514
Q 4691 2972 4691 2284
Q 4691 1588 4409 1038
Q 4128 488 3612 205
Q 3097 -78 2500 -78
Q 1853 -78 1343 234
Q 834 547 571 1087
Q 309 1628 309 2231
z
M 934 2222
Q 934 1394 1379 917
Q 1825 441 2497 441
Q 3181 441 3623 922
Q 4066 1403 4066 2288
Q 4066 2847 3877 3264
Q 3688 3681 3323 3911
Q 2959 4141 2506 4141
Q 1863 4141 1398 3698
Q 934 3256 934 2222
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-4f"/>
<use xlink:href="#ArialMT-6c" x="77.783203"/>
<use xlink:href="#ArialMT-69" x="100"/>
<use xlink:href="#ArialMT-67" x="122.216797"/>
<use xlink:href="#ArialMT-6f" x="177.832031"/>
<use xlink:href="#ArialMT-64" x="233.447266"/>
<use xlink:href="#ArialMT-65" x="289.0625"/>
<use xlink:href="#ArialMT-6e" x="344.677734"/>
<use xlink:href="#ArialMT-64" x="400.292969"/>
<use xlink:href="#ArialMT-72" x="455.908203"/>
<use xlink:href="#ArialMT-6f" x="489.208984"/>
<use xlink:href="#ArialMT-63" x="544.824219"/>
<use xlink:href="#ArialMT-79" x="594.824219"/>
<use xlink:href="#ArialMT-74" x="644.824219"/>
<use xlink:href="#ArialMT-65" x="672.607422"/>
</g>
<!-- n = 554 -->
<g style="fill: #262626" transform="translate(271.142576 307.264062) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-35" d="M 266 1200
L 856 1250
Q 922 819 1161 601
Q 1400 384 1738 384
Q 2144 384 2425 690
Q 2706 997 2706 1503
Q 2706 1984 2436 2262
Q 2166 2541 1728 2541
Q 1456 2541 1237 2417
Q 1019 2294 894 2097
L 366 2166
L 809 4519
L 3088 4519
L 3088 3981
L 1259 3981
L 1013 2750
Q 1425 3038 1878 3038
Q 2478 3038 2890 2622
Q 3303 2206 3303 1553
Q 3303 931 2941 478
Q 2500 -78 1738 -78
Q 1113 -78 717 272
Q 322 622 266 1200
z
" transform="scale(0.015625)"/>
<path id="ArialMT-34" d="M 2069 0
L 2069 1097
L 81 1097
L 81 1613
L 2172 4581
L 2631 4581
L 2631 1613
L 3250 1613
L 3250 1097
L 2631 1097
L 2631 0
L 2069 0
z
M 2069 1613
L 2069 3678
L 634 1613
L 2069 1613
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-6e"/>
<use xlink:href="#ArialMT-20" x="55.615234"/>
<use xlink:href="#ArialMT-3d" x="83.398438"/>
<use xlink:href="#ArialMT-20" x="141.796875"/>
<use xlink:href="#ArialMT-35" x="169.580078"/>
<use xlink:href="#ArialMT-35" x="225.195312"/>
<use xlink:href="#ArialMT-34" x="280.810547"/>
</g>
</g>
</g>
<g id="xtick_5">
<g id="line2d_5">
<g>
<use xlink:href="#m8f016dc461" x="343.903125" y="238.541301" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_5">
<!-- Astrocyte -->
<g style="fill: #262626" transform="translate(323.877065 288.279969) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-73" d="M 197 991
L 753 1078
Q 800 744 1014 566
Q 1228 388 1613 388
Q 2000 388 2187 545
Q 2375 703 2375 916
Q 2375 1106 2209 1216
Q 2094 1291 1634 1406
Q 1016 1563 777 1677
Q 538 1791 414 1992
Q 291 2194 291 2438
Q 291 2659 392 2848
Q 494 3038 669 3163
Q 800 3259 1026 3326
Q 1253 3394 1513 3394
Q 1903 3394 2198 3281
Q 2494 3169 2634 2976
Q 2775 2784 2828 2463
L 2278 2388
Q 2241 2644 2061 2787
Q 1881 2931 1553 2931
Q 1166 2931 1000 2803
Q 834 2675 834 2503
Q 834 2394 903 2306
Q 972 2216 1119 2156
Q 1203 2125 1616 2013
Q 2213 1853 2448 1751
Q 2684 1650 2818 1456
Q 2953 1263 2953 975
Q 2953 694 2789 445
Q 2625 197 2315 61
Q 2006 -75 1616 -75
Q 969 -75 630 194
Q 291 463 197 991
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-41"/>
<use xlink:href="#ArialMT-73" x="66.699219"/>
<use xlink:href="#ArialMT-74" x="116.699219"/>
<use xlink:href="#ArialMT-72" x="144.482422"/>
<use xlink:href="#ArialMT-6f" x="177.783203"/>
<use xlink:href="#ArialMT-63" x="233.398438"/>
<use xlink:href="#ArialMT-79" x="283.398438"/>
<use xlink:href="#ArialMT-74" x="333.398438"/>
<use xlink:href="#ArialMT-65" x="361.181641"/>
</g>
<!-- n = 532 -->
<g style="fill: #262626" transform="translate(336.361301 293.944159) rotate(-45) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-6e"/>
<use xlink:href="#ArialMT-20" x="55.615234"/>
<use xlink:href="#ArialMT-3d" x="83.398438"/>
<use xlink:href="#ArialMT-20" x="141.796875"/>
<use xlink:href="#ArialMT-35" x="169.580078"/>
<use xlink:href="#ArialMT-33" x="225.195312"/>
<use xlink:href="#ArialMT-32" x="280.810547"/>
</g>
</g>
</g>
<g id="xtick_6">
<g id="line2d_6">
<g>
<use xlink:href="#m8f016dc461" x="409.176208" y="238.541301" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_6">
<!-- Microglial cell -->
<g style="fill: #262626" transform="translate(381.371532 303.837202) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-4d" d="M 475 0
L 475 4581
L 1388 4581
L 2472 1338
Q 2622 884 2691 659
Q 2769 909 2934 1394
L 4031 4581
L 4847 4581
L 4847 0
L 4263 0
L 4263 3834
L 2931 0
L 2384 0
L 1059 3900
L 1059 0
L 475 0
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-4d"/>
<use xlink:href="#ArialMT-69" x="83.300781"/>
<use xlink:href="#ArialMT-63" x="105.517578"/>
<use xlink:href="#ArialMT-72" x="155.517578"/>
<use xlink:href="#ArialMT-6f" x="188.818359"/>
<use xlink:href="#ArialMT-67" x="244.433594"/>
<use xlink:href="#ArialMT-6c" x="300.048828"/>
<use xlink:href="#ArialMT-69" x="322.265625"/>
<use xlink:href="#ArialMT-61" x="344.482422"/>
<use xlink:href="#ArialMT-6c" x="400.097656"/>
<use xlink:href="#ArialMT-20" x="422.314453"/>
<use xlink:href="#ArialMT-63" x="450.097656"/>
<use xlink:href="#ArialMT-65" x="500.097656"/>
<use xlink:href="#ArialMT-6c" x="555.712891"/>
<use xlink:href="#ArialMT-6c" x="577.929688"/>
</g>
<!-- n = 334 -->
<g style="fill: #262626" transform="translate(401.634384 301.722776) rotate(-45) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-6e"/>
<use xlink:href="#ArialMT-20" x="55.615234"/>
<use xlink:href="#ArialMT-3d" x="83.398438"/>
<use xlink:href="#ArialMT-20" x="141.796875"/>
<use xlink:href="#ArialMT-33" x="169.580078"/>
<use xlink:href="#ArialMT-33" x="225.195312"/>
<use xlink:href="#ArialMT-34" x="280.810547"/>
</g>
</g>
</g>
<g id="xtick_7">
<g id="line2d_7">
<g>
<use xlink:href="#m8f016dc461" x="474.449292" y="238.541301" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_7">
<!-- OPC -->
<g style="fill: #262626" transform="translate(462.961547 276.38135) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-50" d="M 494 0
L 494 4581
L 2222 4581
Q 2678 4581 2919 4538
Q 3256 4481 3484 4323
Q 3713 4166 3852 3881
Q 3991 3597 3991 3256
Q 3991 2672 3619 2267
Q 3247 1863 2275 1863
L 1100 1863
L 1100 0
L 494 0
z
M 1100 2403
L 2284 2403
Q 2872 2403 3119 2622
Q 3366 2841 3366 3238
Q 3366 3525 3220 3729
Q 3075 3934 2838 4000
Q 2684 4041 2272 4041
L 1100 4041
L 1100 2403
z
" transform="scale(0.015625)"/>
<path id="ArialMT-43" d="M 3763 1606
L 4369 1453
Q 4178 706 3683 314
Q 3188 -78 2472 -78
Q 1731 -78 1267 223
Q 803 525 561 1097
Q 319 1669 319 2325
Q 319 3041 592 3573
Q 866 4106 1370 4382
Q 1875 4659 2481 4659
Q 3169 4659 3637 4309
Q 4106 3959 4291 3325
L 3694 3184
Q 3534 3684 3231 3912
Q 2928 4141 2469 4141
Q 1941 4141 1586 3887
Q 1231 3634 1087 3207
Q 944 2781 944 2328
Q 944 1744 1114 1308
Q 1284 872 1643 656
Q 2003 441 2422 441
Q 2931 441 3284 734
Q 3638 1028 3763 1606
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-4f"/>
<use xlink:href="#ArialMT-50" x="77.783203"/>
<use xlink:href="#ArialMT-43" x="144.482422"/>
</g>
<!-- n = 320 -->
<g style="fill: #262626" transform="translate(466.857749 290.4347) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-30" d="M 266 2259
Q 266 3072 433 3567
Q 600 4063 929 4331
Q 1259 4600 1759 4600
Q 2128 4600 2406 4451
Q 2684 4303 2865 4023
Q 3047 3744 3150 3342
Q 3253 2941 3253 2259
Q 3253 1453 3087 958
Q 2922 463 2592 192
Q 2263 -78 1759 -78
Q 1097 -78 719 397
Q 266 969 266 2259
z
M 844 2259
Q 844 1131 1108 757
Q 1372 384 1759 384
Q 2147 384 2411 759
Q 2675 1134 2675 2259
Q 2675 3391 2411 3762
Q 2147 4134 1753 4134
Q 1366 4134 1134 3806
Q 844 3388 844 2259
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-6e"/>
<use xlink:href="#ArialMT-20" x="55.615234"/>
<use xlink:href="#ArialMT-3d" x="83.398438"/>
<use xlink:href="#ArialMT-20" x="141.796875"/>
<use xlink:href="#ArialMT-33" x="169.580078"/>
<use xlink:href="#ArialMT-32" x="225.195312"/>
<use xlink:href="#ArialMT-30" x="280.810547"/>
</g>
</g>
</g>
<g id="xtick_8">
<g id="line2d_8">
<g>
<use xlink:href="#m8f016dc461" x="539.722375" y="238.541301" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_8">
<!-- Endothelial cell -->
<g style="fill: #262626" transform="translate(508.891503 309.989031) rotate(-45) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-45" d="M 506 0
L 506 4581
L 3819 4581
L 3819 4041
L 1113 4041
L 1113 2638
L 3647 2638
L 3647 2100
L 1113 2100
L 1113 541
L 3925 541
L 3925 0
L 506 0
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-45"/>
<use xlink:href="#ArialMT-6e" x="66.699219"/>
<use xlink:href="#ArialMT-64" x="122.314453"/>
<use xlink:href="#ArialMT-6f" x="177.929688"/>
<use xlink:href="#ArialMT-74" x="233.544922"/>
<use xlink:href="#ArialMT-68" x="261.328125"/>
<use xlink:href="#ArialMT-65" x="316.943359"/>
<use xlink:href="#ArialMT-6c" x="372.558594"/>
<use xlink:href="#ArialMT-69" x="394.775391"/>
<use xlink:href="#ArialMT-61" x="416.992188"/>
<use xlink:href="#ArialMT-6c" x="472.607422"/>
<use xlink:href="#ArialMT-20" x="494.824219"/>
<use xlink:href="#ArialMT-63" x="522.607422"/>
<use xlink:href="#ArialMT-65" x="572.607422"/>
<use xlink:href="#ArialMT-6c" x="628.222656"/>
<use xlink:href="#ArialMT-6c" x="650.439453"/>
</g>
<!-- n = 73 -->
<g style="fill: #262626" transform="translate(534.490138 302.339947) rotate(-45) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-6e"/>
<use xlink:href="#ArialMT-20" x="55.615234"/>
<use xlink:href="#ArialMT-3d" x="83.398438"/>
<use xlink:href="#ArialMT-20" x="141.796875"/>
<use xlink:href="#ArialMT-37" x="169.580078"/>
<use xlink:href="#ArialMT-33" x="225.195312"/>
</g>
</g>
</g>
<g id="xtick_9">
<g id="line2d_9">
<g>
<use xlink:href="#m8f016dc461" x="604.995458" y="238.541301" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_9">
<!-- Pericyte -->
<g style="fill: #262626" transform="translate(587.326716 283.565334) rotate(-45) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-50"/>
<use xlink:href="#ArialMT-65" x="66.699219"/>
<use xlink:href="#ArialMT-72" x="122.314453"/>
<use xlink:href="#ArialMT-69" x="155.615234"/>
<use xlink:href="#ArialMT-63" x="177.832031"/>
<use xlink:href="#ArialMT-79" x="227.832031"/>
<use xlink:href="#ArialMT-74" x="277.832031"/>
<use xlink:href="#ArialMT-65" x="305.615234"/>
</g>
<!-- n = 20 -->
<g style="fill: #262626" transform="translate(599.81294 289.227536) rotate(-45) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-6e"/>
<use xlink:href="#ArialMT-20" x="55.615234"/>
<use xlink:href="#ArialMT-3d" x="83.398438"/>
<use xlink:href="#ArialMT-20" x="141.796875"/>
<use xlink:href="#ArialMT-32" x="169.580078"/>
<use xlink:href="#ArialMT-30" x="225.195312"/>
</g>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_10">
<path d="M 50.17425 228.96922
L 637.632 228.96922
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
</g>
<g id="line2d_11">
<defs>
<path id="mea62ed2a52" d="M 0 0
L -4.8 0
" style="stroke: #262626"/>
</defs>
<g>
<use xlink:href="#mea62ed2a52" x="50.17425" y="228.96922" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_10">
<!-- 0.0 -->
<g style="fill: #262626" transform="translate(25.19425 233.263907) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-2e" d="M 581 0
L 581 641
L 1222 641
L 1222 0
L 581 0
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-30"/>
<use xlink:href="#ArialMT-2e" x="55.615234"/>
<use xlink:href="#ArialMT-30" x="83.398438"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_12">
<path d="M 50.17425 190.680892
L 637.632 190.680892
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
</g>
<g id="line2d_13">
<g>
<use xlink:href="#mea62ed2a52" x="50.17425" y="190.680892" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_11">
<!-- 0.2 -->
<g style="fill: #262626" transform="translate(25.19425 194.97558) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-30"/>
<use xlink:href="#ArialMT-2e" x="55.615234"/>
<use xlink:href="#ArialMT-32" x="83.398438"/>
</g>
</g>
</g>
<g id="ytick_3">
<g id="line2d_14">
<path d="M 50.17425 152.392564
L 637.632 152.392564
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
</g>
<g id="line2d_15">
<g>
<use xlink:href="#mea62ed2a52" x="50.17425" y="152.392564" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_12">
<!-- 0.4 -->
<g style="fill: #262626" transform="translate(25.19425 156.687252) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-30"/>
<use xlink:href="#ArialMT-2e" x="55.615234"/>
<use xlink:href="#ArialMT-34" x="83.398438"/>
</g>
</g>
</g>
<g id="ytick_4">
<g id="line2d_16">
<path d="M 50.17425 114.104237
L 637.632 114.104237
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
</g>
<g id="line2d_17">
<g>
<use xlink:href="#mea62ed2a52" x="50.17425" y="114.104237" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_13">
<!-- 0.6 -->
<g style="fill: #262626" transform="translate(25.19425 118.398924) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-30"/>
<use xlink:href="#ArialMT-2e" x="55.615234"/>
<use xlink:href="#ArialMT-36" x="83.398438"/>
</g>
</g>
</g>
<g id="ytick_5">
<g id="line2d_18">
<path d="M 50.17425 75.815909
L 637.632 75.815909
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
</g>
<g id="line2d_19">
<g>
<use xlink:href="#mea62ed2a52" x="50.17425" y="75.815909" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_14">
<!-- 0.8 -->
<g style="fill: #262626" transform="translate(25.19425 80.110597) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-38" d="M 1131 2484
Q 781 2613 612 2850
Q 444 3088 444 3419
Q 444 3919 803 4259
Q 1163 4600 1759 4600
Q 2359 4600 2725 4251
Q 3091 3903 3091 3403
Q 3091 3084 2923 2848
Q 2756 2613 2416 2484
Q 2838 2347 3058 2040
Q 3278 1734 3278 1309
Q 3278 722 2862 322
Q 2447 -78 1769 -78
Q 1091 -78 675 323
Q 259 725 259 1325
Q 259 1772 486 2073
Q 713 2375 1131 2484
z
M 1019 3438
Q 1019 3113 1228 2906
Q 1438 2700 1772 2700
Q 2097 2700 2305 2904
Q 2513 3109 2513 3406
Q 2513 3716 2298 3927
Q 2084 4138 1766 4138
Q 1444 4138 1231 3931
Q 1019 3725 1019 3438
z
M 838 1322
Q 838 1081 952 856
Q 1066 631 1291 507
Q 1516 384 1775 384
Q 2178 384 2440 643
Q 2703 903 2703 1303
Q 2703 1709 2433 1975
Q 2163 2241 1756 2241
Q 1359 2241 1098 1978
Q 838 1716 838 1322
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-30"/>
<use xlink:href="#ArialMT-2e" x="55.615234"/>
<use xlink:href="#ArialMT-38" x="83.398438"/>
</g>
</g>
</g>
<g id="ytick_6">
<g id="line2d_20">
<path d="M 50.17425 37.527582
L 637.632 37.527582
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #cccccc; stroke-width: 0.8; stroke-linecap: round"/>
</g>
<g id="line2d_21">
<g>
<use xlink:href="#mea62ed2a52" x="50.17425" y="37.527582" style="fill: #262626; stroke: #262626"/>
</g>
</g>
<g id="text_15">
<!-- 1.0 -->
<g style="fill: #262626" transform="translate(25.19425 41.822269) scale(0.12 -0.12)">
<defs>
<path id="ArialMT-31" d="M 2384 0
L 1822 0
L 1822 3584
Q 1619 3391 1289 3197
Q 959 3003 697 2906
L 697 3450
Q 1169 3672 1522 3987
Q 1875 4303 2022 4600
L 2384 4600
L 2384 0
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-31"/>
<use xlink:href="#ArialMT-2e" x="55.615234"/>
<use xlink:href="#ArialMT-30" x="83.398438"/>
</g>
</g>
</g>
<g id="text_16">
<!-- Clustering coefficient -->
<g style="fill: #262626" transform="translate(18.668625 188.833713) rotate(-90) scale(0.12 -0.12)">
<use xlink:href="#ArialMT-43"/>
<use xlink:href="#ArialMT-6c" x="72.216797"/>
<use xlink:href="#ArialMT-75" x="94.433594"/>
<use xlink:href="#ArialMT-73" x="150.048828"/>
<use xlink:href="#ArialMT-74" x="200.048828"/>
<use xlink:href="#ArialMT-65" x="227.832031"/>
<use xlink:href="#ArialMT-72" x="283.447266"/>
<use xlink:href="#ArialMT-69" x="316.748047"/>
<use xlink:href="#ArialMT-6e" x="338.964844"/>
<use xlink:href="#ArialMT-67" x="394.580078"/>
<use xlink:href="#ArialMT-20" x="450.195312"/>
<use xlink:href="#ArialMT-63" x="477.978516"/>
<use xlink:href="#ArialMT-6f" x="527.978516"/>
<use xlink:href="#ArialMT-65" x="583.59375"/>
<use xlink:href="#ArialMT-66" x="639.208984"/>
<use xlink:href="#ArialMT-66" x="665.242188"/>
<use xlink:href="#ArialMT-69" x="693.025391"/>
<use xlink:href="#ArialMT-63" x="715.242188"/>
<use xlink:href="#ArialMT-69" x="765.242188"/>
<use xlink:href="#ArialMT-65" x="787.458984"/>
<use xlink:href="#ArialMT-6e" x="843.074219"/>
<use xlink:href="#ArialMT-74" x="898.689453"/>
</g>
</g>
</g>
<g id="patch_3">
<path d="M 56.701558 224.269082
L 108.920025 224.269082
L 108.920025 210.437357
L 56.701558 210.437357
L 56.701558 224.269082
z
" clip-path="url(#p220e072ede)" style="fill: #d3d3d3; stroke: #717171; stroke-linejoin: miter"/>
</g>
<g id="line2d_22">
<path d="M 82.810792 224.269082
L 82.810792 228.96922
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_23">
<path d="M 82.810792 210.437357
L 82.810792 189.948602
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_24">
<path d="M 69.756175 228.96922
L 95.865408 228.96922
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_25">
<path d="M 69.756175 189.948602
L 95.865408 189.948602
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_26">
<defs>
<path id="mda1db018e9" d="M 0 2.4
C 0.636487 2.4 1.246992 2.147121 1.697056 1.697056
C 2.147121 1.246992 2.4 0.636487 2.4 0
C 2.4 -0.636487 2.147121 -1.246992 1.697056 -1.697056
C 1.246992 -2.147121 0.636487 -2.4 0 -2.4
C -0.636487 -2.4 -1.246992 -2.147121 -1.697056 -1.697056
C -2.147121 -1.246992 -2.4 -0.636487 -2.4 0
C -2.4 0.636487 -2.147121 1.246992 -1.697056 1.697056
C -1.246992 2.147121 -0.636487 2.4 0 2.4
z
" style="stroke: #717171"/>
</defs>
<g clip-path="url(#p220e072ede)">
<use xlink:href="#mda1db018e9" x="82.810792" y="126.867013" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="179.153224" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="179.88162" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="177.918116" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="143.463666" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="177.918116" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="172.51848" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="184.58255" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="187.200135" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="172.51848" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="133.248401" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="113.122485" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="174.271609" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="37.527582" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="168.965124" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="183.501831" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="179.153224" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="163.584537" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="187.658129" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="149.201871" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="185.532882" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="178.045199" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="168.965124" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="113.122485" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="182.516469" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="184.79038" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="172.51848" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="177.918116" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="164.142422" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="152.392564" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="171.536728" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="82.810792" y="184.58255" style="fill-opacity: 0; stroke: #717171"/>
</g>
</g>
<g id="patch_4">
<path d="M 121.974642 224.301574
L 174.193108 224.301574
L 174.193108 211.467582
L 121.974642 211.467582
L 121.974642 224.301574
z
" clip-path="url(#p220e072ede)" style="fill: #8ac2ee; stroke: #717171; stroke-linejoin: miter"/>
</g>
<g id="line2d_27">
<path d="M 148.083875 224.301574
L 148.083875 228.96922
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_28">
<path d="M 148.083875 211.467582
L 148.083875 192.504146
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_29">
<path d="M 135.029258 228.96922
L 161.138492 228.96922
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_30">
<path d="M 135.029258 192.504146
L 161.138492 192.504146
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_31">
<g clip-path="url(#p220e072ede)">
<use xlink:href="#mda1db018e9" x="148.083875" y="113.122485" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="185.740463" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="187.200135" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="187.490198" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="182.336" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="37.527582" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="171.739312" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="190.680892" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="182.516469" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="138.157161" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="190.680892" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="183.501831" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="189.948602" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="179.153224" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="179.88162" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="190.680892" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="164.142422" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="186.426633" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="161.508833" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="182.47625" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="163.584537" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="164.265628" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="177.918116" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="187.658129" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="187.192928" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="190.240796" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="133.572878" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="175.231216" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="190.215852" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="190.680892" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="152.392564" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="186.426633" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="149.201871" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="185.532882" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="145.003589" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="190.680892" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="133.248401" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="178.045199" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="179.465119" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="190.680892" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="169.713475" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="148.083875" y="168.965124" style="fill-opacity: 0; stroke: #717171"/>
</g>
</g>
<g id="patch_5">
<path d="M 187.247725 224.346886
L 239.466192 224.346886
L 239.466192 210.82858
L 187.247725 210.82858
L 187.247725 224.346886
z
" clip-path="url(#p220e072ede)" style="fill: #8ac2ee; stroke: #717171; stroke-linejoin: miter"/>
</g>
<g id="line2d_32">
<path d="M 213.356958 224.346886
L 213.356958 228.96922
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_33">
<path d="M 213.356958 210.82858
L 213.356958 190.680892
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_34">
<path d="M 200.302342 228.96922
L 226.411575 228.96922
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_35">
<path d="M 200.302342 190.680892
L 226.411575 190.680892
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_36">
<g clip-path="url(#p220e072ede)">
<use xlink:href="#mda1db018e9" x="213.356958" y="113.122485" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="185.740463" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="156.039072" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="177.51455" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="125.61848" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="171.739312" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="182.516469" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="171.536728" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="189.948602" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="179.153224" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="184.79038" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="179.88162" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="164.142422" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="186.426633" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="182.47625" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="170.861052" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="187.658129" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="175.231216" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="190.215852" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="187.600222" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="37.527582" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="143.463666" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="186.426633" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="126.411199" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="185.532882" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="101.341461" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="145.003589" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="178.045199" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="189.189139" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="172.51848" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="177.918116" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="187.031791" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="213.356958" y="168.965124" style="fill-opacity: 0; stroke: #717171"/>
</g>
</g>
<g id="patch_6">
<path d="M 252.520808 224.183179
L 304.739275 224.183179
L 304.739275 210.736683
L 252.520808 210.736683
L 252.520808 224.183179
z
" clip-path="url(#p220e072ede)" style="fill: #8ac2ee; stroke: #717171; stroke-linejoin: miter"/>
</g>
<g id="line2d_37">
<path d="M 278.630042 224.183179
L 278.630042 228.96922
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_38">
<path d="M 278.630042 210.736683
L 278.630042 190.680892
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_39">
<path d="M 265.575425 228.96922
L 291.684658 228.96922
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_40">
<path d="M 265.575425 190.680892
L 291.684658 190.680892
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_41">
<g clip-path="url(#p220e072ede)">
<use xlink:href="#mda1db018e9" x="278.630042" y="113.122485" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="69.434521" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="177.42724" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="125.61848" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="171.739312" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="173.857233" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="174.271609" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="187.457969" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="189.948602" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="179.153224" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="179.88162" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="174.271609" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="161.508833" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="182.47625" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="187.658129" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="184.79038" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="175.231216" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="128.027265" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="180.746231" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="185.532882" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="101.341461" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="166.978594" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="178.045199" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="37.527582" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="160.597206" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="133.248401" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="181.10881" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="180.722839" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="169.713475" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="278.630042" y="168.965124" style="fill-opacity: 0; stroke: #717171"/>
</g>
</g>
<g id="patch_7">
<path d="M 317.793892 223.968325
L 370.012358 223.968325
L 370.012358 210.736683
L 317.793892 210.736683
L 317.793892 223.968325
z
" clip-path="url(#p220e072ede)" style="fill: #8ac2ee; stroke: #717171; stroke-linejoin: miter"/>
</g>
<g id="line2d_42">
<path d="M 343.903125 223.968325
L 343.903125 228.96922
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_43">
<path d="M 343.903125 210.736683
L 343.903125 190.9048
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_44">
<path d="M 330.848508 228.96922
L 356.957742 228.96922
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_45">
<path d="M 330.848508 190.9048
L 356.957742 190.9048
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_46">
<g clip-path="url(#p220e072ede)">
<use xlink:href="#mda1db018e9" x="343.903125" y="126.867013" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="113.122485" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="69.434521" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="156.039072" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="187.490198" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="182.336" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="187.946011" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="189.085545" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="189.948602" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="179.153224" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="179.88162" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="174.271609" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="161.508833" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="182.47625" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="189.034082" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="177.918116" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="133.431724" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="143.884047" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="175.231216" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="161.769298" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="183.387877" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="143.463666" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="180.746231" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="152.392564" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="130.480219" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="177.918116" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="185.532882" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="160.597206" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="174.505027" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="178.045199" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="172.51848" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="184.58255" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="181.10881" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="343.903125" y="168.965124" style="fill-opacity: 0; stroke: #717171"/>
</g>
</g>
<g id="patch_8">
<path d="M 383.066975 223.914489
L 435.285442 223.914489
L 435.285442 211.475839
L 383.066975 211.475839
L 383.066975 223.914489
z
" clip-path="url(#p220e072ede)" style="fill: #8ac2ee; stroke: #717171; stroke-linejoin: miter"/>
</g>
<g id="line2d_47">
<path d="M 409.176208 223.914489
L 409.176208 228.96922
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_48">
<path d="M 409.176208 211.475839
L 409.176208 194.17056
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_49">
<path d="M 396.121592 228.96922
L 422.230825 228.96922
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_50">
<path d="M 396.121592 194.17056
L 422.230825 194.17056
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_51">
<g clip-path="url(#p220e072ede)">
<use xlink:href="#mda1db018e9" x="409.176208" y="113.122485" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="69.434521" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="145.43105" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="187.200135" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="177.51455" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="152.392564" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="174.271609" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="101.341461" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="187.946011" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="164.142422" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="161.508833" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="182.47625" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="183.387877" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="152.392564" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="149.201871" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="172.51848" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="177.918116" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="133.248401" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="180.722839" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="409.176208" y="189.673304" style="fill-opacity: 0; stroke: #717171"/>
</g>
</g>
<g id="patch_9">
<path d="M 448.340058 223.827272
L 500.558525 223.827272
L 500.558525 211.207743
L 448.340058 211.207743
L 448.340058 223.827272
z
" clip-path="url(#p220e072ede)" style="fill: #8ac2ee; stroke: #717171; stroke-linejoin: miter"/>
</g>
<g id="line2d_52">
<path d="M 474.449292 223.827272
L 474.449292 228.96922
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_53">
<path d="M 474.449292 211.207743
L 474.449292 192.575902
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_54">
<path d="M 461.394675 228.96922
L 487.503908 228.96922
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_55">
<path d="M 461.394675 192.575902
L 487.503908 192.575902
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_56">
<g clip-path="url(#p220e072ede)">
<use xlink:href="#mda1db018e9" x="474.449292" y="187.200135" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="474.449292" y="189.085545" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="474.449292" y="190.190016" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="474.449292" y="164.142422" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="474.449292" y="161.508833" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="474.449292" y="170.861052" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="474.449292" y="152.392564" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="474.449292" y="171.536728" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="474.449292" y="101.341461" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="474.449292" y="174.505027" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="474.449292" y="189.676414" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="474.449292" y="178.045199" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="474.449292" y="189.554765" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="474.449292" y="165.15534" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="474.449292" y="184.58255" style="fill-opacity: 0; stroke: #717171"/>
<use xlink:href="#mda1db018e9" x="474.449292" y="141.702376" style="fill-opacity: 0; stroke: #717171"/>
</g>
</g>
<g id="patch_10">
<path d="M 513.613142 223.078708
L 565.831608 223.078708
L 565.831608 209.345615
L 513.613142 209.345615
L 513.613142 223.078708
z
" clip-path="url(#p220e072ede)" style="fill: #8ac2ee; stroke: #717171; stroke-linejoin: miter"/>
</g>
<g id="line2d_57">
<path d="M 539.722375 223.078708
L 539.722375 228.96922
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_58">
<path d="M 539.722375 209.345615
L 539.722375 195.83509
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_59">
<path d="M 526.667758 228.96922
L 552.776992 228.96922
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_60">
<path d="M 526.667758 195.83509
L 552.776992 195.83509
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_61">
<g clip-path="url(#p220e072ede)">
<use xlink:href="#mda1db018e9" x="539.722375" y="177.51455" style="fill-opacity: 0; stroke: #717171"/>
</g>
</g>
<g id="patch_11">
<path d="M 578.886225 222.591289
L 631.104692 222.591289
L 631.104692 213.628305
L 578.886225 213.628305
L 578.886225 222.591289
z
" clip-path="url(#p220e072ede)" style="fill: #8ac2ee; stroke: #717171; stroke-linejoin: miter"/>
</g>
<g id="line2d_62">
<path d="M 604.995458 222.591289
L 604.995458 226.617201
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_63">
<path d="M 604.995458 213.628305
L 604.995458 200.252974
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_64">
<path d="M 591.940842 226.617201
L 618.050075 226.617201
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_65">
<path d="M 591.940842 200.252974
L 618.050075 200.252974
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171; stroke-linecap: round"/>
</g>
<g id="line2d_66">
<g clip-path="url(#p220e072ede)">
<use xlink:href="#mda1db018e9" x="604.995458" y="198.029157" style="fill-opacity: 0; stroke: #717171"/>
</g>
</g>
<g id="line2d_67">
<path d="M 56.701558 219.563981
L 108.920025 219.563981
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_68">
<path d="M 121.974642 219.852951
L 174.193108 219.852951
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_69">
<path d="M 187.247725 219.842258
L 239.466192 219.842258
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_70">
<path d="M 252.520808 219.617845
L 304.739275 219.617845
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_71">
<path d="M 317.793892 218.921568
L 370.012358 218.921568
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_72">
<path d="M 383.066975 219.67833
L 435.285442 219.67833
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_73">
<path d="M 448.340058 218.843132
L 500.558525 218.843132
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_74">
<path d="M 513.613142 219.697117
L 565.831608 219.697117
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="line2d_75">
<path d="M 578.886225 218.743682
L 631.104692 218.743682
" clip-path="url(#p220e072ede)" style="fill: none; stroke: #717171"/>
</g>
<g id="patch_12">
<path d="M 50.17425 238.541301
L 50.17425 27.9555
" style="fill: none; stroke: #cccccc; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="patch_13">
<path d="M 50.17425 238.541301
L 637.632 238.541301
" style="fill: none; stroke: #cccccc; stroke-linejoin: miter; stroke-linecap: square"/>
</g>
<g id="text_17">
<!-- Clustering coefficient distribution for the Alzheimer disease module and each cell type -->
<g style="fill: #262626" transform="translate(41.674375 21.9555) scale(0.16 -0.16)">
<defs>
<path id="ArialMT-7a" d="M 125 0
L 125 456
L 2238 2881
Q 1878 2863 1603 2863
L 250 2863
L 250 3319
L 2963 3319
L 2963 2947
L 1166 841
L 819 456
Q 1197 484 1528 484
L 3063 484
L 3063 0
L 125 0
z
" transform="scale(0.015625)"/>
<path id="ArialMT-70" d="M 422 -1272
L 422 3319
L 934 3319
L 934 2888
Q 1116 3141 1344 3267
Q 1572 3394 1897 3394
Q 2322 3394 2647 3175
Q 2972 2956 3137 2557
Q 3303 2159 3303 1684
Q 3303 1175 3120 767
Q 2938 359 2589 142
Q 2241 -75 1856 -75
Q 1575 -75 1351 44
Q 1128 163 984 344
L 984 -1272
L 422 -1272
z
M 931 1641
Q 931 1000 1190 694
Q 1450 388 1819 388
Q 2194 388 2461 705
Q 2728 1022 2728 1688
Q 2728 2322 2467 2637
Q 2206 2953 1844 2953
Q 1484 2953 1207 2617
Q 931 2281 931 1641
z
" transform="scale(0.015625)"/>
</defs>
<use xlink:href="#ArialMT-43"/>
<use xlink:href="#ArialMT-6c" x="72.216797"/>
<use xlink:href="#ArialMT-75" x="94.433594"/>
<use xlink:href="#ArialMT-73" x="150.048828"/>
<use xlink:href="#ArialMT-74" x="200.048828"/>
<use xlink:href="#ArialMT-65" x="227.832031"/>
<use xlink:href="#ArialMT-72" x="283.447266"/>
<use xlink:href="#ArialMT-69" x="316.748047"/>
<use xlink:href="#ArialMT-6e" x="338.964844"/>
<use xlink:href="#ArialMT-67" x="394.580078"/>
<use xlink:href="#ArialMT-20" x="450.195312"/>
<use xlink:href="#ArialMT-63" x="477.978516"/>
<use xlink:href="#ArialMT-6f" x="527.978516"/>
<use xlink:href="#ArialMT-65" x="583.59375"/>
<use xlink:href="#ArialMT-66" x="639.208984"/>
<use xlink:href="#ArialMT-66" x="665.242188"/>
<use xlink:href="#ArialMT-69" x="693.025391"/>
<use xlink:href="#ArialMT-63" x="715.242188"/>
<use xlink:href="#ArialMT-69" x="765.242188"/>
<use xlink:href="#ArialMT-65" x="787.458984"/>
<use xlink:href="#ArialMT-6e" x="843.074219"/>
<use xlink:href="#ArialMT-74" x="898.689453"/>
<use xlink:href="#ArialMT-20" x="926.472656"/>
<use xlink:href="#ArialMT-64" x="954.255859"/>
<use xlink:href="#ArialMT-69" x="1009.871094"/>
<use xlink:href="#ArialMT-73" x="1032.087891"/>
<use xlink:href="#ArialMT-74" x="1082.087891"/>
<use xlink:href="#ArialMT-72" x="1109.871094"/>
<use xlink:href="#ArialMT-69" x="1143.171875"/>
<use xlink:href="#ArialMT-62" x="1165.388672"/>
<use xlink:href="#ArialMT-75" x="1221.003906"/>
<use xlink:href="#ArialMT-74" x="1276.619141"/>
<use xlink:href="#ArialMT-69" x="1304.402344"/>
<use xlink:href="#ArialMT-6f" x="1326.619141"/>
<use xlink:href="#ArialMT-6e" x="1382.234375"/>
<use xlink:href="#ArialMT-20" x="1437.849609"/>
<use xlink:href="#ArialMT-66" x="1465.632812"/>
<use xlink:href="#ArialMT-6f" x="1493.416016"/>
<use xlink:href="#ArialMT-72" x="1549.03125"/>
<use xlink:href="#ArialMT-20" x="1582.332031"/>
<use xlink:href="#ArialMT-74" x="1610.115234"/>
<use xlink:href="#ArialMT-68" x="1637.898438"/>
<use xlink:href="#ArialMT-65" x="1693.513672"/>
<use xlink:href="#ArialMT-20" x="1749.128906"/>
<use xlink:href="#ArialMT-41" x="1771.412109"/>
<use xlink:href="#ArialMT-6c" x="1838.111328"/>
<use xlink:href="#ArialMT-7a" x="1860.328125"/>
<use xlink:href="#ArialMT-68" x="1910.328125"/>
<use xlink:href="#ArialMT-65" x="1965.943359"/>
<use xlink:href="#ArialMT-69" x="2021.558594"/>
<use xlink:href="#ArialMT-6d" x="2043.775391"/>
<use xlink:href="#ArialMT-65" x="2127.076172"/>
<use xlink:href="#ArialMT-72" x="2182.691406"/>
<use xlink:href="#ArialMT-20" x="2215.992188"/>
<use xlink:href="#ArialMT-64" x="2243.775391"/>
<use xlink:href="#ArialMT-69" x="2299.390625"/>
<use xlink:href="#ArialMT-73" x="2321.607422"/>
<use xlink:href="#ArialMT-65" x="2371.607422"/>
<use xlink:href="#ArialMT-61" x="2427.222656"/>
<use xlink:href="#ArialMT-73" x="2482.837891"/>
<use xlink:href="#ArialMT-65" x="2532.837891"/>
<use xlink:href="#ArialMT-20" x="2588.453125"/>
<use xlink:href="#ArialMT-6d" x="2616.236328"/>
<use xlink:href="#ArialMT-6f" x="2699.537109"/>
<use xlink:href="#ArialMT-64" x="2755.152344"/>
<use xlink:href="#ArialMT-75" x="2810.767578"/>
<use xlink:href="#ArialMT-6c" x="2866.382812"/>
<use xlink:href="#ArialMT-65" x="2888.599609"/>
<use xlink:href="#ArialMT-20" x="2944.214844"/>
<use xlink:href="#ArialMT-61" x="2971.998047"/>
<use xlink:href="#ArialMT-6e" x="3027.613281"/>
<use xlink:href="#ArialMT-64" x="3083.228516"/>
<use xlink:href="#ArialMT-20" x="3138.84375"/>
<use xlink:href="#ArialMT-65" x="3166.626953"/>
<use xlink:href="#ArialMT-61" x="3222.242188"/>
<use xlink:href="#ArialMT-63" x="3277.857422"/>
<use xlink:href="#ArialMT-68" x="3327.857422"/>
<use xlink:href="#ArialMT-20" x="3383.472656"/>
<use xlink:href="#ArialMT-63" x="3411.255859"/>
<use xlink:href="#ArialMT-65" x="3461.255859"/>
<use xlink:href="#ArialMT-6c" x="3516.871094"/>
<use xlink:href="#ArialMT-6c" x="3539.087891"/>
<use xlink:href="#ArialMT-20" x="3561.304688"/>
<use xlink:href="#ArialMT-74" x="3589.087891"/>
<use xlink:href="#ArialMT-79" x="3616.871094"/>
<use xlink:href="#ArialMT-70" x="3666.871094"/>
<use xlink:href="#ArialMT-65" x="3722.486328"/>
</g>
</g>
</g>
</g>
<defs>
<clipPath id="p220e072ede">
<rect x="50.17425" y="27.9555" width="587.45775" height="210.585801"/>
</clipPath>
</defs>
</svg>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment