Skip to content

Instantly share code, notes, and snippets.

@PatWalters
Last active August 23, 2024 23:10
Show Gist options
  • Save PatWalters/7c375353ff183be3eae925e0431398aa to your computer and use it in GitHub Desktop.
Save PatWalters/7c375353ff183be3eae925e0431398aa to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"id": "7f839d17-fa63-4698-ad05-c9c201ffa358",
"metadata": {},
"source": [
"This notebook provides a quick demo of the clustering method described in [Efficient clustering of large molecular libraries](https://www.biorxiv.org/content/10.1101/2024.08.10.607459v1) by Vicky Jung, Kenneth Lopez Perez, Lexin Chen, Kate Huddleston, and Ramon Alain Miranda Quintana. To use this notebook, first clone the authors' git repo. \n",
"<pre>\n",
"git clone [email protected]:mqcomplab/bitbirch.git\n",
"</pre>"
]
},
{
"cell_type": "code",
"execution_count": 18,
"id": "3e4f9931",
"metadata": {},
"outputs": [],
"source": [
"import pandas as pd\n",
"from rdkit import Chem, DataStructs\n",
"from rdkit.Chem import rdFingerprintGenerator\n",
"from bitbirch import BitBirch\n",
"import numpy as np\n",
"import mols2grid\n",
"from tqdm.auto import tqdm\n",
"from rdkit.Chem.Descriptors import MolWt\n",
"import seaborn as sns"
]
},
{
"cell_type": "markdown",
"id": "4ca1c9e9-887a-42b8-9ec7-cb22a8dd2b96",
"metadata": {},
"source": [
"Enable progress bars with Pandas **progress_apply**"
]
},
{
"cell_type": "code",
"execution_count": 2,
"id": "94aa3591-4e75-45a9-bf41-6355f7102fb5",
"metadata": {},
"outputs": [],
"source": [
"tqdm.pandas()"
]
},
{
"cell_type": "markdown",
"id": "6a9587fc-d172-4e45-9aee-79f5db27251f",
"metadata": {},
"source": [
"This notebook uses chembl_34_chemreps.txt.gz, which can be downloaded [here](https://ftp.ebi.ac.uk/pub/databases/chembl/ChEMBLdb/latest/chembl_34_chemreps.txt.gz)"
]
},
{
"cell_type": "code",
"execution_count": 3,
"id": "69a60248",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"CPU times: user 7.97 s, sys: 450 ms, total: 8.42 s\n",
"Wall time: 8.62 s\n"
]
},
{
"data": {
"text/plain": [
"2.40927"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"%%time\n",
"df = pd.read_csv(\"chembl_34_chemreps.txt.gz\",sep=\"\\t\")\n",
"len(df)/1e6"
]
},
{
"cell_type": "code",
"execution_count": 7,
"id": "a0d06e90-b923-48ad-9ab1-0916bf4770f2",
"metadata": {},
"outputs": [],
"source": [
"def smi2mw(smi):\n",
" mol = Chem.MolFromSmiles(smi)\n",
" if mol:\n",
" return MolWt(mol)\n",
" else:\n",
" return None"
]
},
{
"cell_type": "code",
"execution_count": 8,
"id": "f48ae2ff-3566-4e86-9db2-03bfeb09d8ff",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "09423de2e5594c11bae747b181f71161",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
" 0%| | 0/2409270 [00:00<?, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[12:07:14] WARNING: not removing hydrogen atom without neighbors\n",
"[12:07:38] WARNING: not removing hydrogen atom without neighbors\n",
"[12:07:38] WARNING: not removing hydrogen atom without neighbors\n",
"[12:08:28] WARNING: not removing hydrogen atom without neighbors\n",
"[12:08:48] WARNING: not removing hydrogen atom without neighbors\n",
"[12:08:50] WARNING: not removing hydrogen atom without neighbors\n",
"[12:08:52] WARNING: not removing hydrogen atom without neighbors\n",
"[12:09:22] WARNING: not removing hydrogen atom without neighbors\n",
"[12:09:22] WARNING: not removing hydrogen atom without neighbors\n",
"[12:09:22] WARNING: not removing hydrogen atom without neighbors\n",
"[12:09:25] Can't kekulize mol. Unkekulized atoms: 1 2 3 4 5 6 10 11 15 16 17 19 20 21\n",
"[12:09:34] WARNING: not removing hydrogen atom without neighbors\n",
"[12:09:34] WARNING: not removing hydrogen atom without neighbors\n",
"[12:09:34] WARNING: not removing hydrogen atom without neighbors\n",
"[12:09:34] WARNING: not removing hydrogen atom without neighbors\n"
]
}
],
"source": [
"df['MW'] = df.canonical_smiles.progress_apply(smi2mw)"
]
},
{
"cell_type": "code",
"execution_count": 15,
"id": "46d1651f-5c3d-467e-b6f1-903fd4ecb785",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>chembl_id</th>\n",
" <th>canonical_smiles</th>\n",
" <th>standard_inchi</th>\n",
" <th>standard_inchi_key</th>\n",
" <th>MW</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>2311326</th>\n",
" <td>CHEMBL4080644</td>\n",
" <td>Cc1ccc2c(c1)-n1-c(=O)/c=c\\c(=O)-n-2-c2cc(C)ccc2-1</td>\n",
" <td>InChI=1S/C18H14N2O2/c1-11-3-5-13-15(9-11)19-14...</td>\n",
" <td>UZIXOQDBFHHCEC-FPLPWBNLSA-N</td>\n",
" <td>NaN</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" chembl_id canonical_smiles \\\n",
"2311326 CHEMBL4080644 Cc1ccc2c(c1)-n1-c(=O)/c=c\\c(=O)-n-2-c2cc(C)ccc2-1 \n",
"\n",
" standard_inchi \\\n",
"2311326 InChI=1S/C18H14N2O2/c1-11-3-5-13-15(9-11)19-14... \n",
"\n",
" standard_inchi_key MW \n",
"2311326 UZIXOQDBFHHCEC-FPLPWBNLSA-N NaN "
]
},
"execution_count": 15,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df[df.MW.isna()]"
]
},
{
"cell_type": "code",
"execution_count": 17,
"id": "ab5baef1-155b-464f-929b-bd33a83bb690",
"metadata": {},
"outputs": [],
"source": [
"df.dropna(subset=\"MW\",inplace=True)"
]
},
{
"cell_type": "code",
"execution_count": 21,
"id": "29a51254-79bf-4c2f-a709-5f3439cf82dc",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"<seaborn.axisgrid.FacetGrid at 0x38526cb10>"
]
},
"execution_count": 21,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"image/png": "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VZdddlm79Th2bbW2turGG2/U6tWrJUnXX3+93n//fT3zzDP6/ve/b9Xj2LX10ksvaePGjdq8ebOuu+46VVVVacmSJcrKytLs2bOtehy7zgvFsQpUv6vHk278bgrm1rjxZtGiRXr11Ve1c+dOXXnlldb2zMxMSerw2GVmZqq5uVkul6vdOnZUWVmp+vp65eXlqU+fPurTp492796t//7v/1afPn2s186xa2vgwIEaPny4z7Zhw4bp2LFjknjfdeQ//uM/9KMf/UgzZszQiBEjVFRUpB/84Adas2aNJI5dV4TqWGVmZurEiRNtfv7Jkye7dDwJ+27i1rjtM8Zo4cKF2rJli3bs2KGcnByf8pycHGVmZvocu+bmZu3evds6dnl5eUpISPCpU1tbq+rqalsf39tuu00HDx5UVVWV9bjxxht19913q6qqSldffTXHrh0333xzm0s8//a3v1k3tOJ9177PP/9cvXr5xkLv3r2tS+84dp0XqmM1evRoud1u7d+/36qzb98+ud3urh3Pzs81RHs8l94999xz5tChQ2bJkiWmb9++5qOPPor0rkXUAw88YJxOp9m1a5epra21Hp9//rlV55e//KVxOp1my5Yt5uDBg2bmzJkBL0258sorzfbt280777xjbr31VltexnMp3rPxjeHYtWf//v2mT58+5pFHHjEffPCB2bRpk7n88svNxo0brTocu8Bmz55tvvKVr1iX3m3ZssWkpaWZhx9+2KrDsfvS6dOnzbvvvmveffddI8k8/vjj5t1337Uuuw7VsZo0aZL5+te/bioqKkxFRYUZMWIEl95FytNPP20GDx5sEhMTzQ033GBdXhbPJAV8bNiwwarT2tpqfvrTn5rMzEyTlJRkvv3tb5uDBw/6/JzGxkazcOFCk5qaapKTk01BQYE5duxYD7+ayPMPe45d+/73f//X5ObmmqSkJHPttdeadevW+ZRz7AJraGgwDz30kBk0aJC57LLLzNVXX21WrlxpmpqarDocuy/t3Lkz4Gfc7NmzjTGhO1affvqpufvuu01KSopJSUkxd999t3G5XF3aV25xCwCAzTFmDwCAzRH2AADYHGEPAIDNEfYAANgcYQ8AgM0R9gAA2BxhDwCAzRH2AADYHGEPAIDNEfYAumzOnDlyOBy6//7725QtWLBADodDc+bM0bPPPquUlBR98cUXVvmZM2eUkJCgb33rWz7f99Zbb8nhcOhvf/tb2PcfiDeEPYCgZGdnq6SkRI2Njda2c+fO6fe//70GDRokSRo/frzOnDmjt99+26rz1ltvKTMzUwcOHNDnn39ubd+1a5eysrJ0zTXX9NyLAOIEYQ8gKDfccIMGDRqkLVu2WNu2bNmi7OxsXX/99ZKkoUOHKisrS7t27bLq7Nq1S9/97nf11a9+VeXl5T7bx48f32P7D8QTwh5A0P7t3/5NGzZssJ7/9re/1b333utTZ9y4cdq5c6f1fOfOnRo3bpzGjh1rbW9ublZFRQVhD4QJYQ8gaEVFRSorK9NHH32kjz/+WHv27NE999zjU2fcuHHas2ePvvjiC50+fVrvvvuuvv3tb2vs2LFWi3/v3r1qbGwk7IEw6RPpHQAQu9LS0jRlyhS98MILMsZoypQpSktL86kzfvx4nT17VgcOHJDL5dI111yj9PR0jR07VkVFRTp79qx27dqlQYMG6eqrr47QKwHsjbAH0C333nuvFi5cKEl6+umn25R/7Wtf05VXXqmdO3fK5XJp7NixkqTMzEzl5ORoz5492rlzp2699dYe3W8gntCND6BbJk2apObmZjU3N2vixIkB64wfP167du3Srl27NG7cOGv72LFj9cYbb2jv3r104QNhRMseQLf07t1bhw8ftr4OZPz48XrwwQd1/vx5q2UvXQj7Bx54QOfOnSPsgTAi7AF0W79+/TosHz9+vBobG3XttdcqIyPD2j527FidPn1aX/3qV5WdnR3u3QTilsMYYyK9EwAAIHwYswcAwOYIewAAbI6wBwDA5gh7AABsjrAHAMDmCHsAAGyOsAcAwOYIewAAbI6wBwDA5gh7AABsjrAHAMDm/j8AGaKqpaMTKAAAAABJRU5ErkJggg==",
"text/plain": [
"<Figure size 500x500 with 1 Axes>"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"g = sns.displot(df.MW)\n",
"g.set(xlim=(0,1000))"
]
},
{
"cell_type": "markdown",
"id": "6509e0b5-4c11-4035-88a1-7f3cbf20393c",
"metadata": {},
"source": [
"Remove molecules with MW > 500 from the dataframe. I did this mainly because I didn't want to look at clusters of very large molecules. "
]
},
{
"cell_type": "code",
"execution_count": 22,
"id": "0e2292dc-c1e9-4280-b1f9-ff66462474fd",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"1.931349"
]
},
"execution_count": 22,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"df = df.query(\"MW <= 500\")\n",
"len(df)/1e6"
]
},
{
"cell_type": "markdown",
"id": "33d37e89-3cce-4e7b-bd1a-c98c57986802",
"metadata": {},
"source": [
"Define a quick class to generate RDKit fingerprints from SMILES. It would have been more efficient to add an RDKit molecule column to the dataframe, but this takes up a lot of memory when the dataframe has 2M rows. "
]
},
{
"cell_type": "code",
"execution_count": 25,
"id": "7c2c25d4",
"metadata": {},
"outputs": [],
"source": [
"class SmiFpGen:\n",
" def __init__(self):\n",
" self.mfpgen = rdFingerprintGenerator.GetMorganGenerator(radius=2,fpSize=2048)\n",
" \n",
" def smi2numpy_fp(self,smi):\n",
" mol = Chem.MolFromSmiles(smi)\n",
" if mol:\n",
" return self.mfpgen.GetFingerprintAsNumPy(mol)\n",
" else:\n",
" return None"
]
},
{
"cell_type": "markdown",
"id": "603ca199-23ba-4d2b-a4b2-f1863b8721ee",
"metadata": {},
"source": [
"Instantiate a fingerprint generator"
]
},
{
"cell_type": "code",
"execution_count": 26,
"id": "bee61037-622f-4f1d-823c-f18e884cbfb1",
"metadata": {},
"outputs": [],
"source": [
"smifpgen = SmiFpGen()"
]
},
{
"cell_type": "markdown",
"id": "1cb8aa42-7467-443f-bae6-1b3e3f0ac1b3",
"metadata": {},
"source": [
"Calculate fingerprints. In practice, it would probably be good to normalize structures, remove salts, etc. "
]
},
{
"cell_type": "code",
"execution_count": 27,
"id": "49ad9592-7699-42e7-b419-7bf1d29a80ac",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "cb05906b22174c0babee5a869f752aab",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
" 0%| | 0/1931349 [00:00<?, ?it/s]"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"name": "stderr",
"output_type": "stream",
"text": [
"[12:21:23] WARNING: not removing hydrogen atom without neighbors\n",
"[12:21:23] WARNING: not removing hydrogen atom without neighbors\n",
"[12:22:20] WARNING: not removing hydrogen atom without neighbors\n",
"[12:22:39] WARNING: not removing hydrogen atom without neighbors\n",
"[12:22:41] WARNING: not removing hydrogen atom without neighbors\n",
"[12:22:43] WARNING: not removing hydrogen atom without neighbors\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"CPU times: user 3min 14s, sys: 8.42 s, total: 3min 23s\n",
"Wall time: 3min 20s\n"
]
}
],
"source": [
"%%time\n",
"df['numpy_fp'] = df.canonical_smiles.progress_apply(smifpgen.smi2numpy_fp)"
]
},
{
"cell_type": "markdown",
"id": "4cbb0bbd-be7b-421e-b5ae-8da33aeb8327",
"metadata": {},
"source": [
"Check to see if fingerprint generation failed for any of the ChEMBL molecules. "
]
},
{
"cell_type": "code",
"execution_count": 28,
"id": "cede294b-477f-4db2-b472-414660bf67c6",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0"
]
},
"execution_count": 28,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"sum(df.numpy_fp.isna())"
]
},
{
"cell_type": "markdown",
"id": "4cf7611b-ce21-4dac-a873-f2e597decb69",
"metadata": {},
"source": [
"Convert the fingerprints to int64"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "e9af04e1-306d-4dcb-a413-9084602c5d90",
"metadata": {},
"outputs": [],
"source": [
"fp64 = np.stack(df.numpy_fp).astype(np.int64)"
]
},
{
"cell_type": "markdown",
"id": "590c8d78-d73b-4b95-adb1-cf856e03bec3",
"metadata": {},
"source": [
"Instantiate a BitBirch object with default parameters"
]
},
{
"cell_type": "code",
"execution_count": 29,
"id": "30d3bba3",
"metadata": {},
"outputs": [],
"source": [
"bb = BitBirch()"
]
},
{
"cell_type": "markdown",
"id": "6345b883-bf85-45a6-a391-b9197f498ae8",
"metadata": {},
"source": [
"Cluster with BitBirch"
]
},
{
"cell_type": "code",
"execution_count": 30,
"id": "a915cf16",
"metadata": {},
"outputs": [
{
"name": "stderr",
"output_type": "stream",
"text": [
"/Users/pwalters/software/bitbirch/bitbirch.py:49: RuntimeWarning: overflow encountered in scalar subtract\n",
" a = (sum_kqsq - sum_kq)/2\n",
"/Users/pwalters/software/bitbirch/bitbirch.py:83: RuntimeWarning: invalid value encountered in divide\n",
" sims_med = a_centroid / (pop_counts + np.sum(centroid) - a_centroid)\n",
"/Users/pwalters/software/bitbirch/bitbirch.py:90: RuntimeWarning: invalid value encountered in divide\n",
" sims_mol1 = a_mol1 / (pop_counts + pop_counts[mol1] - a_mol1)\n",
"/Users/pwalters/software/bitbirch/bitbirch.py:97: RuntimeWarning: invalid value encountered in divide\n",
" sims_mol2 = a_mol2 / (pop_counts + pop_counts[mol2] - a_mol2)\n"
]
},
{
"name": "stdout",
"output_type": "stream",
"text": [
"CPU times: user 6min 8s, sys: 7.51 s, total: 6min 16s\n",
"Wall time: 6min 26s\n"
]
},
{
"data": {
"text/plain": [
"<bitbirch.BitBirch at 0x3890302d0>"
]
},
"execution_count": 30,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"%%time\n",
"bb.fit(np.stack(fp64))"
]
},
{
"cell_type": "markdown",
"id": "3e87c49b-6875-4087-8150-4998a0aacbf7",
"metadata": {},
"source": [
"BitBirch returns a list of lists with cluster membership. Turn this into a dataframe column with cluster ids. "
]
},
{
"cell_type": "code",
"execution_count": 54,
"id": "c11746a0",
"metadata": {},
"outputs": [],
"source": [
"cluster_id_list = np.repeat(-1,len(df))\n",
"for cluster_num,row in enumerate(bb.get_cluster_mol_ids()):\n",
" for r in row:\n",
" cluster_id_list[r] = cluster_num\n",
"df['cluster'] = cluster_id_list"
]
},
{
"cell_type": "markdown",
"id": "9af8eafc-d18e-4ae6-b95f-cdf90b9d8fa0",
"metadata": {},
"source": [
"Examine the sizes of the clusters"
]
},
{
"cell_type": "code",
"execution_count": 55,
"id": "7e781f45",
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>cluster</th>\n",
" <th>count</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>478425</td>\n",
" <td>13</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>23529</td>\n",
" <td>12</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>410274</td>\n",
" <td>11</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>680090</td>\n",
" <td>11</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>147683</td>\n",
" <td>11</td>\n",
" </tr>\n",
" <tr>\n",
" <th>...</th>\n",
" <td>...</td>\n",
" <td>...</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1076920</th>\n",
" <td>712894</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1076921</th>\n",
" <td>354025</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1076922</th>\n",
" <td>356570</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1076923</th>\n",
" <td>965477</td>\n",
" <td>1</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1076924</th>\n",
" <td>339747</td>\n",
" <td>1</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"<p>1076925 rows × 2 columns</p>\n",
"</div>"
],
"text/plain": [
" cluster count\n",
"0 478425 13\n",
"1 23529 12\n",
"2 410274 11\n",
"3 680090 11\n",
"4 147683 11\n",
"... ... ...\n",
"1076920 712894 1\n",
"1076921 354025 1\n",
"1076922 356570 1\n",
"1076923 965477 1\n",
"1076924 339747 1\n",
"\n",
"[1076925 rows x 2 columns]"
]
},
"execution_count": 55,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"count_df = df.cluster.value_counts().to_frame()\n",
"count_df.index.name = \"cluster\"\n",
"count_df.columns = [\"count\"]\n",
"count_df.reset_index(inplace=True)\n",
"count_df"
]
},
{
"cell_type": "markdown",
"id": "0c049e4b-17a6-42e0-8c03-2a7366be0615",
"metadata": {},
"source": [
"How many clusters have at least 5 molecules? "
]
},
{
"cell_type": "code",
"execution_count": 58,
"id": "22c7aa33-e7ef-4031-819d-1ebff71e5730",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"3997"
]
},
"execution_count": 58,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"len(count_df.query(\"count >= 5\"))"
]
},
{
"cell_type": "markdown",
"id": "77e12041-648e-4dea-8eb9-ab6775586a06",
"metadata": {},
"source": [
"What fraction of the clusters are singletons? "
]
},
{
"cell_type": "code",
"execution_count": 59,
"id": "5db53e0c-b162-44eb-830b-c889a951e892",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0.30927316201221067"
]
},
"execution_count": 59,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"len(count_df.query(\"count == 1\"))/len(count_df)"
]
},
{
"cell_type": "markdown",
"id": "80bb136a-22f5-4e53-97e4-7a3617a0a9d3",
"metadata": {},
"source": [
"Use mols2grid to look at cluster members. In the cell below **cluster_idx** is row id in **count_df**. Put differently, cluster_idx = 0, is the cluster with largest number of members, cluster_idx = 1 is the next largest, etc. "
]
},
{
"cell_type": "code",
"execution_count": 61,
"id": "2c1729a3",
"metadata": {},
"outputs": [
{
"data": {
"application/vnd.jupyter.widget-view+json": {
"model_id": "65ea8b687b15419786ca0fd28022ab6b",
"version_major": 2,
"version_minor": 0
},
"text/plain": [
"MolGridWidget()"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/html": [
"<style>\n",
" /* Some CSS to integrate with Jupyter more cleanly */\n",
" div.output_subarea {\n",
" /* Undo an unfortunate max-width parameter\n",
" that causes the output area to be too narrow\n",
" on smaller screens. */\n",
" max-width: none;\n",
"\n",
" /* Align the table with the content */\n",
" padding: 0;\n",
"\n",
" /* Let it breathe */\n",
" margin-top: 20px;\n",
" }\n",
"</style>\n",
"\n",
"<iframe class=\"mols2grid-iframe\" frameborder=\"0\" width=\"100%\"\n",
" \n",
" \n",
" allow=\"clipboard-write\"\n",
" \n",
" \n",
" sandbox=\"allow-scripts allow-same-origin allow-downloads allow-popups allow-modals\"\n",
" \n",
" srcdoc=\"\n",
"\n",
"&lt;html lang=&quot;en&quot;&gt;\n",
" &lt;head&gt;\n",
" &lt;meta charset=&quot;UTF-8&quot; /&gt;\n",
" &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot; /&gt;\n",
" &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot; /&gt;\n",
" &lt;title&gt;Document&lt;/title&gt;\n",
"\n",
"\n",
"\n",
" &lt;style&gt;\n",
" /**\n",
" * General styling\n",
" */\n",
"body {\n",
" font-family: &#x27;DejaVu&#x27;, sans-serif;\n",
"}\n",
"h1,h2,h3,h4 {\n",
" margin: 0 0 10px 0;\n",
"}\n",
"h1 {\n",
" font-size: 26px;\n",
"}\n",
"h2 {\n",
" font-size: 20px;\n",
" font-weight: 400;\n",
"}\n",
"h3 {\n",
"\tfont-size: 16px;\n",
"}\n",
"p {\n",
" margin: 0 0 10px 0;\n",
"}\n",
"\n",
"\n",
"/* Remove body margin inside iframe */\n",
"body.m2g-inside-iframe {\n",
" margin: 0;\n",
"}\n",
"\n",
"/* In-cell text */\n",
"#mols2grid .data:not(.data-img) {\n",
" height: 16px;\n",
" line-height: 16px;\n",
"}\n",
"/* Text truncation */\n",
"#mols2grid .data {\n",
" /* Break text into multiple lines (default for static)... */\n",
" word-wrap: break-word;\n",
"\n",
" /* ...or truncate it (default for interactive). */\n",
" overflow: visible;\n",
" white-space: normal;\n",
" text-overflow: clip;\n",
"}\n",
"\n",
"\n",
"/**\n",
" * Popover\n",
" * - - -\n",
" * Note: this is a bootstrap variable which is not namespaced.\n",
" * To avoid any contamination, we only style it when the\n",
" * x-placement parameter is set.\n",
" */\n",
".popover[x-placement] {\n",
" font-family: &#x27;DejaVu&#x27;, sans-serif;\n",
" background: white;\n",
" border: solid 1px rgba(0,0,0,.2);\n",
" font-size: 12px;\n",
" padding: 10px;\n",
" border-radius: 5px;\n",
" box-shadow: 0 0 20px rgba(0,0,0,.15);\n",
" user-select: none;\n",
"}\n",
".popover[x-placement] h3 {\n",
" margin: 0;\n",
"}\n",
".popover[x-placement] .arrow {\n",
" width: 10px;\n",
" height: 10px;\n",
" background: #fff;\n",
" border: solid 1px rgba(0,0,0,.2);\n",
" box-sizing: border-box;\n",
" position: absolute;\n",
" transform-origin: 5px 5px;\n",
" clip-path: polygon(0 0, 100% 0, 100% 100%);\n",
"}\n",
".popover[x-placement=&#x27;left&#x27;] .arrow {\n",
" transform: rotate(45deg);\n",
" top: 50%;\n",
" right: -5px;\n",
"}\n",
".popover[x-placement=&#x27;right&#x27;] .arrow {\n",
" transform: rotate(-135deg);\n",
" top: 50%;\n",
" left: -5px;\n",
"}\n",
".popover[x-placement=&#x27;top&#x27;] .arrow {\n",
" transform: rotate(135deg);\n",
" left: 50%;\n",
" bottom: -5px;\n",
"}\n",
".popover[x-placement=&#x27;bottom&#x27;] .arrow {\n",
" transform: rotate(-45deg);\n",
" left: 50%;\n",
" top: -5px;\n",
"}\n",
" /* Note: #mols2grid is the table element */\n",
"#mols2grid {\n",
" border-collapse: collapse;\n",
" border-spacing: 0px;\n",
" /* Compensate for gap so table stays aligned with content above */\n",
" margin: 0px;\n",
"}\n",
"#mols2grid, tr, td {\n",
" border: none;\n",
"}\n",
"#mols2grid tr {\n",
" page-break-inside: avoid !important;\n",
"}\n",
"\n",
"/* Cell */\n",
"#mols2grid td {\n",
" border: 1px solid #cccccc;\n",
" text-align: center;\n",
" vertical-align: top;\n",
" max-width: 150px;\n",
" width: 150px;\n",
" font-family: &#x27;DejaVu&#x27;, sans-serif;\n",
" font-size: 12px;\n",
" margin: 0;\n",
" padding: 10px;\n",
" position: relative;\n",
"}\n",
"\n",
"/* Call focus state */\n",
"#mols2grid td:focus-within,\n",
"#mols2grid td:focus {\n",
" outline: solid 2px #555;\n",
" border-color: transparent;\n",
"}\n",
"\n",
"/* ID */\n",
"#mols2grid .data-mols2grid-id {\n",
" position: absolute;\n",
" top: 0;\n",
" left: 0;\n",
" padding: 5px;\n",
"}\n",
"\n",
"/* Tooltip margin */\n",
"/* Adjusted so it plays well with the extruded outline */\n",
".popover[x-placement] {\n",
" margin: 1px 2px 2px 1px;\n",
"}\n",
"\n",
"\n",
"#mols2grid td div img {\n",
" max-width: px;\n",
" width: px;\n",
" height: auto;\n",
" padding: 0;\n",
"}\n",
"\n",
" /* Custom CSS */\n",
" \n",
" &lt;/style&gt;\n",
" &lt;script src=&quot;https://code.jquery.com/jquery-3.5.1.slim.min.js&quot; integrity=&quot;sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj&quot; crossorigin=&quot;anonymous&quot;&gt;&lt;/script&gt;\n",
" &lt;script&gt;\n",
" // Set iframe height to fit content.\n",
" function fitIframe(iframe) {\n",
" // Ignore when there&#x27;s no iframe\n",
" if (!iframe) return\n",
"\n",
" // Only fit height when no specific height was given.\n",
" if (iframe.getAttribute(&#x27;height&#x27;)) return;\n",
"\n",
" // Initial fit + refit whenever the window width changes.\n",
" _fit()\n",
" $(window).on(&#x27;resize&#x27;, function() {\n",
" if (window.innerWidth != window.prevInnerWidth) {\n",
" window.prevInnerWidth = window.innerWidth\n",
" _fit();\n",
" }\n",
" })\n",
"\n",
" // Fit iframe height to content height.\n",
" function _fit() {\n",
" var height = iframe.contentDocument.body.scrollHeight + 18 + &#x27;px&#x27;;\n",
" iframe.style.height = height;\n",
" }\n",
" }\n",
"&lt;/script&gt;\n",
"\n",
"&lt;!-- prettier-ignore --&gt;\n",
"&lt;script src=&quot;https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js&quot; integrity=&quot;sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns&quot; crossorigin=&quot;anonymous&quot;&gt;&lt;/script&gt;\n",
" \n",
" &lt;!-- Custom header --&gt;\n",
" \n",
"\n",
"\n",
"\n",
"\n",
" &lt;/head&gt;\n",
" &lt;body class=&quot;m2g-inside-iframe&quot;&gt;\n",
"\n",
"\n",
" &lt;table id=&quot;mols2grid&quot;&gt;\n",
" &lt;tbody&gt;\n",
" &lt;tr class=&quot;row-0&quot;&gt;\n",
"&lt;td class=&quot;col-0 m2g-tooltip&quot; tabindex=&quot;0&quot; data-toggle=&quot;popover&quot; data-content=&quot;&amp;lt;strong&amp;gt;chembl_id&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;CHEMBL3818103&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;canonical_smiles&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;OCCCNc1nccc(NCCNc2ccnc3cc(Cl)ccc23)n1&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;InChI=1S/C18H21ClN6O/c19-13-2-3-14-15(4-7-20-16(14)12-13)21-9-10-22-17-5-8-24-18(25-17)23-6-1-11-26/h2-5,7-8,12,26H,1,6,9-11H2,(H,20,21)(H2,22,23,24,25)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi_key&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;FWZLFPHJIJRJGB-UHFFFAOYSA-N&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;MW&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;372.8600000000001&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;numpy_fp&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;[0 0 0 ... 0 0 0]&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;cluster&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;478425&amp;lt;/span&amp;gt;&quot;&gt;\n",
"&lt;div class=&quot;m2g-cell-0&quot;&gt;\n",
"&lt;div class=&quot;data data-img&quot;&gt;&lt;?xml version=&#x27;1.0&#x27; encoding=&#x27;iso-8859-1&#x27;?&gt;\n",
"&lt;svg version=&#x27;1.1&#x27; baseProfile=&#x27;full&#x27;\n",
" xmlns=&#x27;http://www.w3.org/2000/svg&#x27;\n",
" xmlns:rdkit=&#x27;http://www.rdkit.org/xml&#x27;\n",
" xmlns:xlink=&#x27;http://www.w3.org/1999/xlink&#x27;\n",
" xml:space=&#x27;preserve&#x27;\n",
"width=&#x27;150px&#x27; height=&#x27;150px&#x27; viewBox=&#x27;0 0 150 150&#x27;&gt;\n",
"&lt;!-- END OF HEADER --&gt;\n",
"&lt;rect style=&#x27;opacity:1.0;fill:#FFFFFF;stroke:none&#x27; width=&#x27;150.0&#x27; height=&#x27;150.0&#x27; x=&#x27;0.0&#x27; y=&#x27;0.0&#x27;&gt; &lt;/rect&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 122.1,11.6 L 118.4,13.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 118.4,13.8 L 114.6,15.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-1 atom-1 atom-2&#x27; d=&#x27;M 114.6,15.9 L 114.6,27.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-2 atom-2 atom-3&#x27; d=&#x27;M 114.6,27.7 L 104.4,33.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-3 atom-3 atom-4&#x27; d=&#x27;M 104.4,33.6 L 104.4,38.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-3 atom-3 atom-4&#x27; d=&#x27;M 104.4,38.1 L 104.4,42.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 102.2,46.7 L 98.2,49.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 98.2,49.0 L 94.2,51.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 94.2,51.3 L 90.3,49.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 90.3,49.0 L 86.3,46.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 92.5,52.3 L 89.0,50.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 89.0,50.3 L 85.4,48.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 81.7,46.7 L 77.8,49.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 77.8,49.0 L 73.8,51.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 73.8,51.3 L 73.8,63.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 75.6,52.3 L 75.6,62.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 73.8,63.1 L 84.1,69.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 84.1,69.0 L 84.1,73.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 84.1,73.4 L 84.1,77.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 81.8,82.1 L 77.8,84.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 77.8,84.4 L 73.9,86.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 73.9,86.7 L 73.9,98.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 73.9,98.5 L 69.9,100.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 69.9,100.8 L 66.0,103.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 63.7,107.3 L 63.7,111.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 63.7,111.7 L 63.7,116.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 63.7,116.2 L 73.9,122.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 63.7,118.2 L 72.1,123.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 73.9,122.0 L 73.9,133.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 73.9,133.8 L 69.9,136.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 69.9,136.1 L 66.0,138.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 72.1,132.8 L 68.6,134.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 68.6,134.8 L 65.1,136.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 61.4,138.4 L 57.4,136.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 57.4,136.1 L 53.5,133.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 53.5,133.8 L 43.3,139.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 51.7,132.8 L 43.3,137.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 43.3,139.7 L 33.1,133.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 33.1,133.9 L 28.3,136.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 28.3,136.6 L 23.6,139.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-20 atom-22&#x27; d=&#x27;M 33.1,133.9 L 33.1,122.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-20 atom-22&#x27; d=&#x27;M 34.8,132.8 L 34.8,123.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-22 atom-23&#x27; d=&#x27;M 33.1,122.1 L 43.3,116.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-23 atom-24&#x27; d=&#x27;M 43.3,116.2 L 53.5,122.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-23 atom-24&#x27; d=&#x27;M 43.3,118.2 L 51.7,123.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-9 atom-25&#x27; d=&#x27;M 84.1,69.0 L 88.0,66.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-9 atom-25&#x27; d=&#x27;M 88.0,66.7 L 92.0,64.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-9 atom-25&#x27; d=&#x27;M 84.0,67.0 L 87.6,64.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-9 atom-25&#x27; d=&#x27;M 87.6,64.9 L 91.1,62.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-25 atom-5&#x27; d=&#x27;M 94.3,60.2 L 94.2,55.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-25 atom-5&#x27; d=&#x27;M 94.2,55.8 L 94.2,51.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-24 atom-14&#x27; d=&#x27;M 53.5,122.0 L 63.7,116.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-24 atom-18&#x27; d=&#x27;M 53.5,122.0 L 53.5,133.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path d=&#x27;M 114.8,15.8 L 114.6,15.9 L 114.6,16.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 114.6,27.1 L 114.6,27.7 L 114.1,28.0&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 104.9,33.3 L 104.4,33.6 L 104.4,33.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 74.0,51.2 L 73.8,51.3 L 73.8,51.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 73.8,62.5 L 73.8,63.1 L 74.4,63.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 74.1,86.6 L 73.9,86.7 L 73.9,87.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 73.9,97.9 L 73.9,98.5 L 73.7,98.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 73.4,121.7 L 73.9,122.0 L 73.9,122.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 73.9,133.2 L 73.9,133.8 L 73.7,133.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 43.8,139.4 L 43.3,139.7 L 42.8,139.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 33.1,122.7 L 33.1,122.1 L 33.6,121.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 42.8,116.5 L 43.3,116.2 L 43.8,116.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 122.5 10.0\n",
"Q 122.5 8.8, 123.1 8.2\n",
"Q 123.7 7.5, 124.8 7.5\n",
"Q 125.9 7.5, 126.5 8.2\n",
"Q 127.1 8.8, 127.1 10.0\n",
"Q 127.1 11.3, 126.5 12.0\n",
"Q 125.9 12.6, 124.8 12.6\n",
"Q 123.7 12.6, 123.1 12.0\n",
"Q 122.5 11.3, 122.5 10.0\n",
"M 124.8 12.1\n",
"Q 125.6 12.1, 126.0 11.6\n",
"Q 126.4 11.0, 126.4 10.0\n",
"Q 126.4 9.1, 126.0 8.6\n",
"Q 125.6 8.1, 124.8 8.1\n",
"Q 124.1 8.1, 123.6 8.6\n",
"Q 123.2 9.1, 123.2 10.0\n",
"Q 123.2 11.1, 123.6 11.6\n",
"Q 124.1 12.1, 124.8 12.1\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 127.9 7.6\n",
"L 128.6 7.6\n",
"L 128.6 9.7\n",
"L 131.1 9.7\n",
"L 131.1 7.6\n",
"L 131.8 7.6\n",
"L 131.8 12.6\n",
"L 131.1 12.6\n",
"L 131.1 10.3\n",
"L 128.6 10.3\n",
"L 128.6 12.6\n",
"L 127.9 12.6\n",
"L 127.9 7.6\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-4&#x27; d=&#x27;M 103.3 42.9\n",
"L 105.0 45.6\n",
"Q 105.1 45.8, 105.4 46.3\n",
"Q 105.7 46.8, 105.7 46.8\n",
"L 105.7 42.9\n",
"L 106.3 42.9\n",
"L 106.3 47.9\n",
"L 105.7 47.9\n",
"L 103.9 45.0\n",
"Q 103.7 44.7, 103.5 44.3\n",
"Q 103.3 43.9, 103.2 43.8\n",
"L 103.2 47.9\n",
"L 102.5 47.9\n",
"L 102.5 42.9\n",
"L 103.3 42.9\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-4&#x27; d=&#x27;M 107.3 42.9\n",
"L 108.0 42.9\n",
"L 108.0 45.0\n",
"L 110.6 45.0\n",
"L 110.6 42.9\n",
"L 111.2 42.9\n",
"L 111.2 47.9\n",
"L 110.6 47.9\n",
"L 110.6 45.6\n",
"L 108.0 45.6\n",
"L 108.0 47.9\n",
"L 107.3 47.9\n",
"L 107.3 42.9\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-6&#x27; d=&#x27;M 82.9 42.9\n",
"L 84.6 45.6\n",
"Q 84.7 45.8, 85.0 46.3\n",
"Q 85.3 46.8, 85.3 46.8\n",
"L 85.3 42.9\n",
"L 85.9 42.9\n",
"L 85.9 47.9\n",
"L 85.2 47.9\n",
"L 83.5 45.0\n",
"Q 83.3 44.7, 83.1 44.3\n",
"Q 82.8 43.9, 82.8 43.8\n",
"L 82.8 47.9\n",
"L 82.1 47.9\n",
"L 82.1 42.9\n",
"L 82.9 42.9\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-10&#x27; d=&#x27;M 83.0 78.3\n",
"L 84.6 80.9\n",
"Q 84.8 81.2, 85.0 81.7\n",
"Q 85.3 82.1, 85.3 82.2\n",
"L 85.3 78.3\n",
"L 86.0 78.3\n",
"L 86.0 83.3\n",
"L 85.3 83.3\n",
"L 83.5 80.4\n",
"Q 83.3 80.0, 83.1 79.7\n",
"Q 82.9 79.3, 82.8 79.1\n",
"L 82.8 83.3\n",
"L 82.2 83.3\n",
"L 82.2 78.3\n",
"L 83.0 78.3\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-10&#x27; d=&#x27;M 86.9 78.3\n",
"L 87.6 78.3\n",
"L 87.6 80.4\n",
"L 90.2 80.4\n",
"L 90.2 78.3\n",
"L 90.8 78.3\n",
"L 90.8 83.3\n",
"L 90.2 83.3\n",
"L 90.2 81.0\n",
"L 87.6 81.0\n",
"L 87.6 83.3\n",
"L 86.9 83.3\n",
"L 86.9 78.3\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-13&#x27; d=&#x27;M 56.9 101.9\n",
"L 57.5 101.9\n",
"L 57.5 104.0\n",
"L 60.1 104.0\n",
"L 60.1 101.9\n",
"L 60.8 101.9\n",
"L 60.8 106.9\n",
"L 60.1 106.9\n",
"L 60.1 104.6\n",
"L 57.5 104.6\n",
"L 57.5 106.9\n",
"L 56.9 106.9\n",
"L 56.9 101.9\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-13&#x27; d=&#x27;M 62.6 101.9\n",
"L 64.2 104.5\n",
"Q 64.4 104.8, 64.6 105.2\n",
"Q 64.9 105.7, 64.9 105.7\n",
"L 64.9 101.9\n",
"L 65.6 101.9\n",
"L 65.6 106.9\n",
"L 64.9 106.9\n",
"L 63.1 104.0\n",
"Q 62.9 103.6, 62.7 103.2\n",
"Q 62.5 102.9, 62.4 102.7\n",
"L 62.4 106.9\n",
"L 61.8 106.9\n",
"L 61.8 101.9\n",
"L 62.6 101.9\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-17&#x27; d=&#x27;M 62.6 137.2\n",
"L 64.2 139.9\n",
"Q 64.4 140.1, 64.7 140.6\n",
"Q 64.9 141.1, 64.9 141.1\n",
"L 64.9 137.2\n",
"L 65.6 137.2\n",
"L 65.6 142.2\n",
"L 64.9 142.2\n",
"L 63.1 139.3\n",
"Q 62.9 139.0, 62.7 138.6\n",
"Q 62.5 138.2, 62.4 138.1\n",
"L 62.4 142.2\n",
"L 61.8 142.2\n",
"L 61.8 137.2\n",
"L 62.6 137.2\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-21&#x27; d=&#x27;M 18.2 139.9\n",
"Q 18.2 138.7, 18.8 138.0\n",
"Q 19.3 137.4, 20.5 137.4\n",
"Q 21.5 137.4, 22.0 138.1\n",
"L 21.6 138.5\n",
"Q 21.2 138.0, 20.5 138.0\n",
"Q 19.7 138.0, 19.3 138.5\n",
"Q 18.9 139.0, 18.9 139.9\n",
"Q 18.9 140.9, 19.3 141.4\n",
"Q 19.7 141.9, 20.5 141.9\n",
"Q 21.1 141.9, 21.7 141.6\n",
"L 21.9 142.1\n",
"Q 21.7 142.3, 21.3 142.4\n",
"Q 20.9 142.5, 20.4 142.5\n",
"Q 19.3 142.5, 18.8 141.8\n",
"Q 18.2 141.2, 18.2 139.9\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-21&#x27; d=&#x27;M 22.5 137.1\n",
"L 23.2 137.1\n",
"L 23.2 142.4\n",
"L 22.5 142.4\n",
"L 22.5 137.1\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-25&#x27; d=&#x27;M 93.1 60.6\n",
"L 94.8 63.2\n",
"Q 94.9 63.5, 95.2 64.0\n",
"Q 95.5 64.4, 95.5 64.5\n",
"L 95.5 60.6\n",
"L 96.2 60.6\n",
"L 96.2 65.6\n",
"L 95.5 65.6\n",
"L 93.7 62.7\n",
"Q 93.5 62.4, 93.3 62.0\n",
"Q 93.1 61.6, 93.0 61.5\n",
"L 93.0 65.6\n",
"L 92.4 65.6\n",
"L 92.4 60.6\n",
"L 93.1 60.6\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;/svg&gt;\n",
"&lt;/div&gt;\n",
"&lt;div class=&quot;data copy-me data-mols2grid-id&quot;&gt;0&lt;/div&gt;\n",
"&lt;/div&gt;\n",
"&lt;/td&gt;\n",
"&lt;td class=&quot;col-1 m2g-tooltip&quot; tabindex=&quot;0&quot; data-toggle=&quot;popover&quot; data-content=&quot;&amp;lt;strong&amp;gt;chembl_id&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;CHEMBL3818190&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;canonical_smiles&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;OCCCCNc1nccc(NCCNc2ccnc3cc(Cl)ccc23)n1&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;InChI=1S/C19H23ClN6O/c20-14-3-4-15-16(5-8-21-17(15)13-14)22-10-11-23-18-6-9-25-19(26-18)24-7-1-2-12-27/h3-6,8-9,13,27H,1-2,7,10-12H2,(H,21,22)(H2,23,24,25,26)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi_key&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;ZLRKGMRIBSGTSV-UHFFFAOYSA-N&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;MW&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;386.88700000000006&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;numpy_fp&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;[0 0 0 ... 0 0 0]&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;cluster&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;478425&amp;lt;/span&amp;gt;&quot;&gt;\n",
"&lt;div class=&quot;m2g-cell-1&quot;&gt;\n",
"&lt;div class=&quot;data data-img&quot;&gt;&lt;?xml version=&#x27;1.0&#x27; encoding=&#x27;iso-8859-1&#x27;?&gt;\n",
"&lt;svg version=&#x27;1.1&#x27; baseProfile=&#x27;full&#x27;\n",
" xmlns=&#x27;http://www.w3.org/2000/svg&#x27;\n",
" xmlns:rdkit=&#x27;http://www.rdkit.org/xml&#x27;\n",
" xmlns:xlink=&#x27;http://www.w3.org/1999/xlink&#x27;\n",
" xml:space=&#x27;preserve&#x27;\n",
"width=&#x27;150px&#x27; height=&#x27;150px&#x27; viewBox=&#x27;0 0 150 150&#x27;&gt;\n",
"&lt;!-- END OF HEADER --&gt;\n",
"&lt;rect style=&#x27;opacity:1.0;fill:#FFFFFF;stroke:none&#x27; width=&#x27;150.0&#x27; height=&#x27;150.0&#x27; x=&#x27;0.0&#x27; y=&#x27;0.0&#x27;&gt; &lt;/rect&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 135.0,74.3 L 132.4,72.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 132.4,72.8 L 129.8,71.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-1 atom-1 atom-2&#x27; d=&#x27;M 129.8,71.3 L 122.4,75.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-2 atom-2 atom-3&#x27; d=&#x27;M 122.4,75.6 L 114.9,71.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-3 atom-3 atom-4&#x27; d=&#x27;M 114.9,71.4 L 107.5,75.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 107.5,75.7 L 104.7,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 104.7,74.1 L 101.9,72.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 98.1,72.5 L 95.4,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 95.4,74.1 L 92.6,75.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 92.6,75.7 L 92.6,78.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 92.6,78.8 L 92.6,81.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 91.3,76.5 L 91.3,79.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 91.3,79.2 L 91.3,81.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 90.7,85.4 L 88.0,87.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 88.0,87.0 L 85.2,88.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 85.2,88.6 L 77.8,84.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 85.2,87.2 L 79.0,83.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 77.8,84.4 L 77.7,75.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 77.7,75.8 L 74.9,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 74.9,74.2 L 72.2,72.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 68.4,72.6 L 65.6,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 65.6,74.2 L 62.8,75.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 62.8,75.8 L 55.4,71.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 55.4,71.6 L 52.6,73.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 52.6,73.2 L 49.8,74.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 46.1,74.8 L 43.3,73.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 43.3,73.2 L 40.5,71.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 40.5,71.6 L 40.5,63.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 39.2,70.9 L 39.2,63.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 40.5,63.0 L 33.0,58.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 33.0,58.8 L 30.2,60.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 30.2,60.4 L 27.5,62.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 33.0,60.2 L 30.6,61.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 30.6,61.7 L 28.1,63.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 25.6,65.5 L 25.6,68.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 25.6,68.6 L 25.6,71.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 25.6,71.7 L 18.2,76.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 25.6,73.2 L 19.5,76.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 18.2,76.0 L 18.2,84.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 18.2,84.6 L 14.8,86.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 14.8,86.6 L 11.3,88.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-21 atom-23&#x27; d=&#x27;M 18.2,84.6 L 25.7,88.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-21 atom-23&#x27; d=&#x27;M 19.5,83.8 L 25.7,87.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-23 atom-24&#x27; d=&#x27;M 25.7,88.9 L 33.1,84.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-24 atom-25&#x27; d=&#x27;M 33.1,84.5 L 33.1,75.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-24 atom-25&#x27; d=&#x27;M 31.8,83.8 L 31.8,76.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-10 atom-26&#x27; d=&#x27;M 77.7,75.8 L 80.5,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-10 atom-26&#x27; d=&#x27;M 80.5,74.2 L 83.3,72.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-10 atom-26&#x27; d=&#x27;M 79.0,76.5 L 81.5,75.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-10 atom-26&#x27; d=&#x27;M 81.5,75.1 L 83.9,73.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-26 atom-6&#x27; d=&#x27;M 87.0,72.5 L 89.8,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-26 atom-6&#x27; d=&#x27;M 89.8,74.1 L 92.6,75.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-25 atom-15&#x27; d=&#x27;M 33.1,75.9 L 40.5,71.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-25 atom-19&#x27; d=&#x27;M 33.1,75.9 L 25.6,71.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path d=&#x27;M 129.9,71.4 L 129.8,71.3 L 129.4,71.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 122.7,75.4 L 122.4,75.6 L 122.0,75.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 115.3,71.6 L 114.9,71.4 L 114.5,71.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 107.9,75.5 L 107.5,75.7 L 107.4,75.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 85.4,88.6 L 85.2,88.6 L 84.8,88.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 78.1,84.6 L 77.8,84.4 L 77.8,83.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 63.0,75.8 L 62.8,75.8 L 62.5,75.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 55.8,71.8 L 55.4,71.6 L 55.2,71.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 40.5,63.5 L 40.5,63.0 L 40.1,62.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 33.4,59.0 L 33.0,58.8 L 32.9,58.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 18.6,75.8 L 18.2,76.0 L 18.2,76.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 25.3,88.6 L 25.7,88.9 L 26.0,88.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 32.7,84.8 L 33.1,84.5 L 33.1,84.1&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 135.3 75.6\n",
"Q 135.3 74.6, 135.8 74.0\n",
"Q 136.3 73.4, 137.3 73.4\n",
"Q 138.2 73.4, 138.7 74.0\n",
"Q 139.2 74.6, 139.2 75.6\n",
"Q 139.2 76.6, 138.7 77.2\n",
"Q 138.2 77.8, 137.3 77.8\n",
"Q 136.3 77.8, 135.8 77.2\n",
"Q 135.3 76.6, 135.3 75.6\n",
"M 137.3 77.3\n",
"Q 137.9 77.3, 138.3 76.9\n",
"Q 138.6 76.4, 138.6 75.6\n",
"Q 138.6 74.7, 138.3 74.3\n",
"Q 137.9 73.9, 137.3 73.9\n",
"Q 136.6 73.9, 136.3 74.3\n",
"Q 135.9 74.7, 135.9 75.6\n",
"Q 135.9 76.4, 136.3 76.9\n",
"Q 136.6 77.3, 137.3 77.3\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 139.9 73.5\n",
"L 140.4 73.5\n",
"L 140.4 75.3\n",
"L 142.6 75.3\n",
"L 142.6 73.5\n",
"L 143.2 73.5\n",
"L 143.2 77.7\n",
"L 142.6 77.7\n",
"L 142.6 75.8\n",
"L 140.4 75.8\n",
"L 140.4 77.7\n",
"L 139.9 77.7\n",
"L 139.9 73.5\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-5&#x27; d=&#x27;M 99.1 69.3\n",
"L 100.5 71.5\n",
"Q 100.6 71.8, 100.8 72.2\n",
"Q 101.1 72.6, 101.1 72.6\n",
"L 101.1 69.3\n",
"L 101.6 69.3\n",
"L 101.6 73.5\n",
"L 101.1 73.5\n",
"L 99.6 71.1\n",
"Q 99.4 70.8, 99.2 70.5\n",
"Q 99.0 70.1, 99.0 70.0\n",
"L 99.0 73.5\n",
"L 98.4 73.5\n",
"L 98.4 69.3\n",
"L 99.1 69.3\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-5&#x27; d=&#x27;M 98.4 64.6\n",
"L 98.9 64.6\n",
"L 98.9 66.4\n",
"L 101.1 66.4\n",
"L 101.1 64.6\n",
"L 101.7 64.6\n",
"L 101.7 68.9\n",
"L 101.1 68.9\n",
"L 101.1 66.9\n",
"L 98.9 66.9\n",
"L 98.9 68.9\n",
"L 98.4 68.9\n",
"L 98.4 64.6\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-7&#x27; d=&#x27;M 91.7 82.2\n",
"L 93.1 84.4\n",
"Q 93.2 84.7, 93.4 85.1\n",
"Q 93.7 85.5, 93.7 85.5\n",
"L 93.7 82.2\n",
"L 94.2 82.2\n",
"L 94.2 86.4\n",
"L 93.7 86.4\n",
"L 92.2 84.0\n",
"Q 92.0 83.7, 91.8 83.4\n",
"Q 91.6 83.0, 91.6 82.9\n",
"L 91.6 86.4\n",
"L 91.0 86.4\n",
"L 91.0 82.2\n",
"L 91.7 82.2\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-11&#x27; d=&#x27;M 69.3 69.4\n",
"L 70.7 71.6\n",
"Q 70.9 71.9, 71.1 72.3\n",
"Q 71.3 72.7, 71.3 72.7\n",
"L 71.3 69.4\n",
"L 71.9 69.4\n",
"L 71.9 73.6\n",
"L 71.3 73.6\n",
"L 69.8 71.2\n",
"Q 69.6 70.9, 69.4 70.6\n",
"Q 69.3 70.2, 69.2 70.1\n",
"L 69.2 73.6\n",
"L 68.7 73.6\n",
"L 68.7 69.4\n",
"L 69.3 69.4\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-11&#x27; d=&#x27;M 68.6 64.7\n",
"L 69.2 64.7\n",
"L 69.2 66.5\n",
"L 71.3 66.5\n",
"L 71.3 64.7\n",
"L 71.9 64.7\n",
"L 71.9 69.0\n",
"L 71.3 69.0\n",
"L 71.3 67.0\n",
"L 69.2 67.0\n",
"L 69.2 69.0\n",
"L 68.6 69.0\n",
"L 68.6 64.7\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-14&#x27; d=&#x27;M 47.0 73.8\n",
"L 48.4 76.0\n",
"Q 48.5 76.2, 48.8 76.6\n",
"Q 49.0 77.0, 49.0 77.1\n",
"L 49.0 73.8\n",
"L 49.6 73.8\n",
"L 49.6 78.0\n",
"L 49.0 78.0\n",
"L 47.5 75.6\n",
"Q 47.3 75.3, 47.1 74.9\n",
"Q 46.9 74.6, 46.9 74.5\n",
"L 46.9 78.0\n",
"L 46.3 78.0\n",
"L 46.3 73.8\n",
"L 47.0 73.8\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-14&#x27; d=&#x27;M 46.3 78.4\n",
"L 46.9 78.4\n",
"L 46.9 80.2\n",
"L 49.0 80.2\n",
"L 49.0 78.4\n",
"L 49.6 78.4\n",
"L 49.6 82.7\n",
"L 49.0 82.7\n",
"L 49.0 80.7\n",
"L 46.9 80.7\n",
"L 46.9 82.7\n",
"L 46.3 82.7\n",
"L 46.3 78.4\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-18&#x27; d=&#x27;M 24.6 61.0\n",
"L 26.0 63.2\n",
"Q 26.2 63.4, 26.4 63.8\n",
"Q 26.6 64.2, 26.6 64.3\n",
"L 26.6 61.0\n",
"L 27.2 61.0\n",
"L 27.2 65.2\n",
"L 26.6 65.2\n",
"L 25.1 62.7\n",
"Q 24.9 62.5, 24.8 62.1\n",
"Q 24.6 61.8, 24.5 61.7\n",
"L 24.5 65.2\n",
"L 24.0 65.2\n",
"L 24.0 61.0\n",
"L 24.6 61.0\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-22&#x27; d=&#x27;M 6.8 89.1\n",
"Q 6.8 88.0, 7.3 87.5\n",
"Q 7.8 86.9, 8.7 86.9\n",
"Q 9.6 86.9, 10.1 87.5\n",
"L 9.7 87.8\n",
"Q 9.3 87.4, 8.7 87.4\n",
"Q 8.1 87.4, 7.8 87.8\n",
"Q 7.4 88.2, 7.4 89.1\n",
"Q 7.4 89.9, 7.8 90.3\n",
"Q 8.1 90.8, 8.8 90.8\n",
"Q 9.3 90.8, 9.8 90.5\n",
"L 10.0 90.9\n",
"Q 9.8 91.1, 9.4 91.2\n",
"Q 9.1 91.2, 8.7 91.2\n",
"Q 7.8 91.2, 7.3 90.7\n",
"Q 6.8 90.1, 6.8 89.1\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-22&#x27; d=&#x27;M 10.5 86.6\n",
"L 11.1 86.6\n",
"L 11.1 91.2\n",
"L 10.5 91.2\n",
"L 10.5 86.6\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-26&#x27; d=&#x27;M 84.2 69.3\n",
"L 85.6 71.6\n",
"Q 85.7 71.8, 86.0 72.2\n",
"Q 86.2 72.6, 86.2 72.6\n",
"L 86.2 69.3\n",
"L 86.8 69.3\n",
"L 86.8 73.6\n",
"L 86.2 73.6\n",
"L 84.7 71.1\n",
"Q 84.5 70.8, 84.3 70.5\n",
"Q 84.1 70.2, 84.1 70.1\n",
"L 84.1 73.6\n",
"L 83.5 73.6\n",
"L 83.5 69.3\n",
"L 84.2 69.3\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;/svg&gt;\n",
"&lt;/div&gt;\n",
"&lt;div class=&quot;data copy-me data-mols2grid-id&quot;&gt;1&lt;/div&gt;\n",
"&lt;/div&gt;\n",
"&lt;/td&gt;\n",
"&lt;td class=&quot;col-2 m2g-tooltip&quot; tabindex=&quot;0&quot; data-toggle=&quot;popover&quot; data-content=&quot;&amp;lt;strong&amp;gt;chembl_id&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;CHEMBL3817994&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;canonical_smiles&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;OCCCCCNc1nccc(NCCNc2ccnc3cc(Cl)ccc23)n1&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;InChI=1S/C20H25ClN6O/c21-15-4-5-16-17(6-9-22-18(16)14-15)23-11-12-24-19-7-10-26-20(27-19)25-8-2-1-3-13-28/h4-7,9-10,14,28H,1-3,8,11-13H2,(H,22,23)(H2,24,25,26,27)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi_key&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;XXQWACLUILBJKC-UHFFFAOYSA-N&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;MW&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;400.9140000000001&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;numpy_fp&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;[0 0 0 ... 0 0 0]&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;cluster&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;478425&amp;lt;/span&amp;gt;&quot;&gt;\n",
"&lt;div class=&quot;m2g-cell-2&quot;&gt;\n",
"&lt;div class=&quot;data data-img&quot;&gt;&lt;?xml version=&#x27;1.0&#x27; encoding=&#x27;iso-8859-1&#x27;?&gt;\n",
"&lt;svg version=&#x27;1.1&#x27; baseProfile=&#x27;full&#x27;\n",
" xmlns=&#x27;http://www.w3.org/2000/svg&#x27;\n",
" xmlns:rdkit=&#x27;http://www.rdkit.org/xml&#x27;\n",
" xmlns:xlink=&#x27;http://www.w3.org/1999/xlink&#x27;\n",
" xml:space=&#x27;preserve&#x27;\n",
"width=&#x27;150px&#x27; height=&#x27;150px&#x27; viewBox=&#x27;0 0 150 150&#x27;&gt;\n",
"&lt;!-- END OF HEADER --&gt;\n",
"&lt;rect style=&#x27;opacity:1.0;fill:#FFFFFF;stroke:none&#x27; width=&#x27;150.0&#x27; height=&#x27;150.0&#x27; x=&#x27;0.0&#x27; y=&#x27;0.0&#x27;&gt; &lt;/rect&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 135.3,72.7 L 132.9,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 132.9,74.1 L 130.4,75.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-1 atom-1 atom-2&#x27; d=&#x27;M 130.4,75.5 L 123.4,71.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-2 atom-2 atom-3&#x27; d=&#x27;M 123.4,71.4 L 116.3,75.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-3 atom-3 atom-4&#x27; d=&#x27;M 116.3,75.5 L 109.3,71.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 109.3,71.5 L 102.2,75.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 102.2,75.6 L 99.6,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 99.6,74.1 L 97.0,72.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 93.3,72.6 L 90.7,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 90.7,74.1 L 88.1,75.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 88.1,75.6 L 88.1,78.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 88.1,78.5 L 88.1,81.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 86.9,76.3 L 86.9,78.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 86.9,78.9 L 86.9,81.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 86.3,84.9 L 83.7,86.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 83.7,86.4 L 81.1,87.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 81.1,87.9 L 74.0,83.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 81.1,86.5 L 75.3,83.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 74.0,83.8 L 74.0,75.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 74.0,75.7 L 71.4,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 71.4,74.2 L 68.8,72.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 65.1,72.7 L 62.5,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 62.5,74.2 L 59.9,75.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 59.9,75.7 L 52.8,71.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 52.8,71.7 L 50.3,73.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 50.3,73.2 L 47.7,74.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 43.9,74.7 L 41.3,73.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 41.3,73.2 L 38.7,71.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 38.7,71.7 L 38.7,63.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 37.5,71.0 L 37.5,64.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 38.7,63.6 L 31.6,59.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 31.6,59.5 L 29.0,61.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 29.0,61.0 L 26.5,62.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 31.6,61.0 L 29.4,62.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 29.4,62.3 L 27.1,63.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 24.6,66.0 L 24.6,68.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 24.6,68.9 L 24.6,71.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 24.6,71.8 L 17.6,75.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 24.6,73.2 L 18.8,76.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 17.6,75.9 L 17.6,84.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-22 atom-23&#x27; d=&#x27;M 17.6,84.0 L 14.4,85.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-22 atom-23&#x27; d=&#x27;M 14.4,85.9 L 11.1,87.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-22 atom-24&#x27; d=&#x27;M 17.6,84.0 L 24.7,88.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-22 atom-24&#x27; d=&#x27;M 18.8,83.3 L 24.7,86.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-24 atom-25&#x27; d=&#x27;M 24.7,88.1 L 31.7,84.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-25 atom-26&#x27; d=&#x27;M 31.7,84.0 L 31.7,75.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-25 atom-26&#x27; d=&#x27;M 30.5,83.3 L 30.5,76.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-11 atom-27&#x27; d=&#x27;M 74.0,75.7 L 76.6,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-11 atom-27&#x27; d=&#x27;M 76.6,74.2 L 79.2,72.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-11 atom-27&#x27; d=&#x27;M 75.2,76.4 L 77.5,75.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-11 atom-27&#x27; d=&#x27;M 77.5,75.1 L 79.8,73.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-27 atom-7&#x27; d=&#x27;M 82.9,72.7 L 85.5,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-27 atom-7&#x27; d=&#x27;M 85.5,74.1 L 88.1,75.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-26 atom-16&#x27; d=&#x27;M 31.7,75.8 L 38.7,71.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-29 atom-26 atom-20&#x27; d=&#x27;M 31.7,75.8 L 24.6,71.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path d=&#x27;M 130.6,75.4 L 130.4,75.5 L 130.1,75.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 123.7,71.6 L 123.4,71.4 L 123.0,71.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 116.7,75.3 L 116.3,75.5 L 116.0,75.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 109.6,71.7 L 109.3,71.5 L 108.9,71.7&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 102.6,75.4 L 102.2,75.6 L 102.1,75.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 81.2,87.8 L 81.1,87.9 L 80.8,87.7&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 74.4,84.0 L 74.0,83.8 L 74.0,83.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 60.0,75.7 L 59.9,75.7 L 59.5,75.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 53.2,71.9 L 52.8,71.7 L 52.7,71.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 38.7,64.0 L 38.7,63.6 L 38.3,63.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 32.0,59.7 L 31.6,59.5 L 31.5,59.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 17.9,75.7 L 17.6,75.9 L 17.6,76.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 24.3,87.9 L 24.7,88.1 L 25.0,87.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 31.4,84.2 L 31.7,84.0 L 31.7,83.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 135.5 71.4\n",
"Q 135.5 70.4, 136.0 69.8\n",
"Q 136.5 69.2, 137.5 69.2\n",
"Q 138.4 69.2, 138.9 69.8\n",
"Q 139.4 70.4, 139.4 71.4\n",
"Q 139.4 72.4, 138.9 73.0\n",
"Q 138.4 73.6, 137.5 73.6\n",
"Q 136.5 73.6, 136.0 73.0\n",
"Q 135.5 72.4, 135.5 71.4\n",
"M 137.5 73.1\n",
"Q 138.1 73.1, 138.5 72.7\n",
"Q 138.8 72.2, 138.8 71.4\n",
"Q 138.8 70.6, 138.5 70.1\n",
"Q 138.1 69.7, 137.5 69.7\n",
"Q 136.8 69.7, 136.5 70.1\n",
"Q 136.1 70.6, 136.1 71.4\n",
"Q 136.1 72.3, 136.5 72.7\n",
"Q 136.8 73.1, 137.5 73.1\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 140.1 69.3\n",
"L 140.7 69.3\n",
"L 140.7 71.1\n",
"L 142.8 71.1\n",
"L 142.8 69.3\n",
"L 143.4 69.3\n",
"L 143.4 73.5\n",
"L 142.8 73.5\n",
"L 142.8 71.6\n",
"L 140.7 71.6\n",
"L 140.7 73.5\n",
"L 140.1 73.5\n",
"L 140.1 69.3\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-6&#x27; d=&#x27;M 94.2 69.4\n",
"L 95.6 71.7\n",
"Q 95.7 71.9, 96.0 72.3\n",
"Q 96.2 72.7, 96.2 72.7\n",
"L 96.2 69.4\n",
"L 96.8 69.4\n",
"L 96.8 73.7\n",
"L 96.2 73.7\n",
"L 94.7 71.2\n",
"Q 94.5 70.9, 94.3 70.6\n",
"Q 94.2 70.2, 94.1 70.1\n",
"L 94.1 73.7\n",
"L 93.5 73.7\n",
"L 93.5 69.4\n",
"L 94.2 69.4\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-6&#x27; d=&#x27;M 93.5 64.7\n",
"L 94.1 64.7\n",
"L 94.1 66.5\n",
"L 96.2 66.5\n",
"L 96.2 64.7\n",
"L 96.8 64.7\n",
"L 96.8 69.0\n",
"L 96.2 69.0\n",
"L 96.2 67.0\n",
"L 94.1 67.0\n",
"L 94.1 69.0\n",
"L 93.5 69.0\n",
"L 93.5 64.7\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-8&#x27; d=&#x27;M 87.2 81.7\n",
"L 88.6 83.9\n",
"Q 88.7 84.1, 89.0 84.5\n",
"Q 89.2 84.9, 89.2 85.0\n",
"L 89.2 81.7\n",
"L 89.8 81.7\n",
"L 89.8 85.9\n",
"L 89.2 85.9\n",
"L 87.7 83.4\n",
"Q 87.5 83.2, 87.3 82.8\n",
"Q 87.1 82.5, 87.1 82.4\n",
"L 87.1 85.9\n",
"L 86.5 85.9\n",
"L 86.5 81.7\n",
"L 87.2 81.7\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-12&#x27; d=&#x27;M 66.0 69.5\n",
"L 67.4 71.8\n",
"Q 67.5 72.0, 67.8 72.4\n",
"Q 68.0 72.8, 68.0 72.8\n",
"L 68.0 69.5\n",
"L 68.6 69.5\n",
"L 68.6 73.8\n",
"L 68.0 73.8\n",
"L 66.5 71.3\n",
"Q 66.3 71.0, 66.1 70.7\n",
"Q 65.9 70.3, 65.9 70.2\n",
"L 65.9 73.8\n",
"L 65.3 73.8\n",
"L 65.3 69.5\n",
"L 66.0 69.5\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-12&#x27; d=&#x27;M 65.3 64.8\n",
"L 65.9 64.8\n",
"L 65.9 66.6\n",
"L 68.0 66.6\n",
"L 68.0 64.8\n",
"L 68.6 64.8\n",
"L 68.6 69.1\n",
"L 68.0 69.1\n",
"L 68.0 67.1\n",
"L 65.9 67.1\n",
"L 65.9 69.1\n",
"L 65.3 69.1\n",
"L 65.3 64.8\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-15&#x27; d=&#x27;M 44.9 73.7\n",
"L 46.2 75.9\n",
"Q 46.4 76.1, 46.6 76.5\n",
"Q 46.8 76.9, 46.8 77.0\n",
"L 46.8 73.7\n",
"L 47.4 73.7\n",
"L 47.4 77.9\n",
"L 46.8 77.9\n",
"L 45.3 75.4\n",
"Q 45.2 75.2, 45.0 74.8\n",
"Q 44.8 74.5, 44.7 74.4\n",
"L 44.7 77.9\n",
"L 44.2 77.9\n",
"L 44.2 73.7\n",
"L 44.9 73.7\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-15&#x27; d=&#x27;M 44.1 78.3\n",
"L 44.7 78.3\n",
"L 44.7 80.1\n",
"L 46.9 80.1\n",
"L 46.9 78.3\n",
"L 47.5 78.3\n",
"L 47.5 82.6\n",
"L 46.9 82.6\n",
"L 46.9 80.6\n",
"L 44.7 80.6\n",
"L 44.7 82.6\n",
"L 44.1 82.6\n",
"L 44.1 78.3\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-19&#x27; d=&#x27;M 23.6 61.5\n",
"L 25.0 63.8\n",
"Q 25.2 64.0, 25.4 64.4\n",
"Q 25.6 64.8, 25.6 64.8\n",
"L 25.6 61.5\n",
"L 26.2 61.5\n",
"L 26.2 65.8\n",
"L 25.6 65.8\n",
"L 24.1 63.3\n",
"Q 23.9 63.0, 23.8 62.7\n",
"Q 23.6 62.4, 23.5 62.3\n",
"L 23.5 65.8\n",
"L 23.0 65.8\n",
"L 23.0 61.5\n",
"L 23.6 61.5\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-23&#x27; d=&#x27;M 6.6 88.3\n",
"Q 6.6 87.2, 7.1 86.7\n",
"Q 7.6 86.1, 8.5 86.1\n",
"Q 9.4 86.1, 9.9 86.7\n",
"L 9.5 87.1\n",
"Q 9.1 86.6, 8.5 86.6\n",
"Q 7.9 86.6, 7.5 87.0\n",
"Q 7.2 87.5, 7.2 88.3\n",
"Q 7.2 89.1, 7.5 89.5\n",
"Q 7.9 90.0, 8.6 90.0\n",
"Q 9.0 90.0, 9.6 89.7\n",
"L 9.8 90.1\n",
"Q 9.5 90.3, 9.2 90.4\n",
"Q 8.9 90.5, 8.5 90.5\n",
"Q 7.6 90.5, 7.1 89.9\n",
"Q 6.6 89.3, 6.6 88.3\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-23&#x27; d=&#x27;M 10.3 85.9\n",
"L 10.8 85.9\n",
"L 10.8 90.4\n",
"L 10.3 90.4\n",
"L 10.3 85.9\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-27&#x27; d=&#x27;M 80.1 69.5\n",
"L 81.5 71.7\n",
"Q 81.6 71.9, 81.9 72.3\n",
"Q 82.1 72.7, 82.1 72.8\n",
"L 82.1 69.5\n",
"L 82.7 69.5\n",
"L 82.7 73.7\n",
"L 82.1 73.7\n",
"L 80.6 71.2\n",
"Q 80.4 71.0, 80.2 70.6\n",
"Q 80.0 70.3, 80.0 70.2\n",
"L 80.0 73.7\n",
"L 79.4 73.7\n",
"L 79.4 69.5\n",
"L 80.1 69.5\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;/svg&gt;\n",
"&lt;/div&gt;\n",
"&lt;div class=&quot;data copy-me data-mols2grid-id&quot;&gt;2&lt;/div&gt;\n",
"&lt;/div&gt;\n",
"&lt;/td&gt;\n",
"&lt;td class=&quot;col-3 m2g-tooltip&quot; tabindex=&quot;0&quot; data-toggle=&quot;popover&quot; data-content=&quot;&amp;lt;strong&amp;gt;chembl_id&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;CHEMBL3819242&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;canonical_smiles&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;OCCCCCCNc1nccc(NCCNc2ccnc3cc(Cl)ccc23)n1&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;InChI=1S/C21H27ClN6O/c22-16-5-6-17-18(7-10-23-19(17)15-16)24-12-13-25-20-8-11-27-21(28-20)26-9-3-1-2-4-14-29/h5-8,10-11,15,29H,1-4,9,12-14H2,(H,23,24)(H2,25,26,27,28)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi_key&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;HUNOHPGKZOHFQW-UHFFFAOYSA-N&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;MW&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;414.94100000000014&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;numpy_fp&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;[0 0 0 ... 0 0 0]&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;cluster&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;478425&amp;lt;/span&amp;gt;&quot;&gt;\n",
"&lt;div class=&quot;m2g-cell-3&quot;&gt;\n",
"&lt;div class=&quot;data data-img&quot;&gt;&lt;?xml version=&#x27;1.0&#x27; encoding=&#x27;iso-8859-1&#x27;?&gt;\n",
"&lt;svg version=&#x27;1.1&#x27; baseProfile=&#x27;full&#x27;\n",
" xmlns=&#x27;http://www.w3.org/2000/svg&#x27;\n",
" xmlns:rdkit=&#x27;http://www.rdkit.org/xml&#x27;\n",
" xmlns:xlink=&#x27;http://www.w3.org/1999/xlink&#x27;\n",
" xml:space=&#x27;preserve&#x27;\n",
"width=&#x27;150px&#x27; height=&#x27;150px&#x27; viewBox=&#x27;0 0 150 150&#x27;&gt;\n",
"&lt;!-- END OF HEADER --&gt;\n",
"&lt;rect style=&#x27;opacity:1.0;fill:#FFFFFF;stroke:none&#x27; width=&#x27;150.0&#x27; height=&#x27;150.0&#x27; x=&#x27;0.0&#x27; y=&#x27;0.0&#x27;&gt; &lt;/rect&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 135.5,74.1 L 133.2,72.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 133.2,72.8 L 131.0,71.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-1 atom-1 atom-2&#x27; d=&#x27;M 131.0,71.5 L 124.3,75.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-2 atom-2 atom-3&#x27; d=&#x27;M 124.3,75.4 L 117.6,71.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-3 atom-3 atom-4&#x27; d=&#x27;M 117.6,71.6 L 110.9,75.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 110.9,75.4 L 104.2,71.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 104.2,71.6 L 97.5,75.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 97.5,75.5 L 95.0,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 95.0,74.1 L 92.6,72.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 88.9,72.7 L 86.5,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 86.5,74.1 L 84.1,75.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 84.1,75.5 L 84.1,78.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 84.1,78.2 L 84.1,80.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 82.9,76.2 L 82.9,78.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 82.9,78.6 L 82.9,80.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 82.2,84.4 L 79.8,85.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 79.8,85.8 L 77.4,87.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 77.4,87.2 L 70.7,83.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 77.4,85.8 L 71.8,82.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 70.7,83.3 L 70.7,75.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 70.7,75.6 L 68.2,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 68.2,74.2 L 65.8,72.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 62.1,72.8 L 59.7,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 59.7,74.2 L 57.2,75.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 57.2,75.6 L 50.5,71.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 50.5,71.8 L 48.1,73.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 48.1,73.2 L 45.7,74.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 42.0,74.6 L 39.5,73.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 39.5,73.2 L 37.1,71.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 37.1,71.8 L 37.1,64.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 36.0,71.2 L 35.9,64.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 37.1,64.1 L 30.4,60.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 30.4,60.3 L 28.0,61.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 28.0,61.7 L 25.6,63.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 30.4,61.6 L 28.3,62.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 28.3,62.8 L 26.1,64.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 23.7,66.5 L 23.7,69.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 23.7,69.2 L 23.7,71.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 23.7,71.9 L 17.0,75.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 23.7,73.2 L 18.2,76.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-22 atom-23&#x27; d=&#x27;M 17.0,75.8 L 17.1,83.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-23 atom-24&#x27; d=&#x27;M 17.1,83.5 L 14.0,85.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-23 atom-24&#x27; d=&#x27;M 14.0,85.3 L 10.9,87.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-23 atom-25&#x27; d=&#x27;M 17.1,83.5 L 23.8,87.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-23 atom-25&#x27; d=&#x27;M 18.2,82.8 L 23.8,86.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-25 atom-26&#x27; d=&#x27;M 23.8,87.4 L 30.5,83.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-26 atom-27&#x27; d=&#x27;M 30.5,83.5 L 30.4,75.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-26 atom-27&#x27; d=&#x27;M 29.3,82.8 L 29.3,76.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-12 atom-28&#x27; d=&#x27;M 70.7,75.6 L 73.1,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-12 atom-28&#x27; d=&#x27;M 73.1,74.2 L 75.5,72.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-12 atom-28&#x27; d=&#x27;M 71.8,76.3 L 73.9,75.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-12 atom-28&#x27; d=&#x27;M 73.9,75.0 L 76.1,73.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-28 atom-8&#x27; d=&#x27;M 79.2,72.8 L 81.6,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-28 atom-8&#x27; d=&#x27;M 81.6,74.2 L 84.1,75.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-29 atom-27 atom-17&#x27; d=&#x27;M 30.4,75.7 L 37.1,71.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-30 atom-27 atom-21&#x27; d=&#x27;M 30.4,75.7 L 23.7,71.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path d=&#x27;M 131.1,71.6 L 131.0,71.5 L 130.6,71.7&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 124.6,75.2 L 124.3,75.4 L 123.9,75.2&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 117.9,71.7 L 117.6,71.6 L 117.2,71.7&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 111.2,75.3 L 110.9,75.4 L 110.5,75.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 104.5,71.8 L 104.2,71.6 L 103.8,71.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 97.8,75.3 L 97.5,75.5 L 97.3,75.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 77.5,87.1 L 77.4,87.2 L 77.1,87.0&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 71.0,83.5 L 70.7,83.3 L 70.7,82.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 57.4,75.6 L 57.2,75.6 L 56.9,75.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 50.9,72.0 L 50.5,71.8 L 50.4,71.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 37.1,64.5 L 37.1,64.1 L 36.8,63.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 30.7,60.4 L 30.4,60.3 L 30.3,60.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 17.4,75.6 L 17.0,75.8 L 17.0,76.2&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 23.4,87.2 L 23.8,87.4 L 24.1,87.2&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 30.1,83.7 L 30.5,83.5 L 30.5,83.1&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 135.7 75.4\n",
"Q 135.7 74.3, 136.2 73.8\n",
"Q 136.7 73.2, 137.7 73.2\n",
"Q 138.6 73.2, 139.1 73.8\n",
"Q 139.6 74.3, 139.6 75.4\n",
"Q 139.6 76.4, 139.1 77.0\n",
"Q 138.6 77.6, 137.7 77.6\n",
"Q 136.7 77.6, 136.2 77.0\n",
"Q 135.7 76.4, 135.7 75.4\n",
"M 137.7 77.1\n",
"Q 138.3 77.1, 138.7 76.7\n",
"Q 139.0 76.2, 139.0 75.4\n",
"Q 139.0 74.5, 138.7 74.1\n",
"Q 138.3 73.7, 137.7 73.7\n",
"Q 137.0 73.7, 136.7 74.1\n",
"Q 136.3 74.5, 136.3 75.4\n",
"Q 136.3 76.2, 136.7 76.7\n",
"Q 137.0 77.1, 137.7 77.1\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 140.3 73.2\n",
"L 140.9 73.2\n",
"L 140.9 75.1\n",
"L 143.0 75.1\n",
"L 143.0 73.2\n",
"L 143.6 73.2\n",
"L 143.6 77.5\n",
"L 143.0 77.5\n",
"L 143.0 75.5\n",
"L 140.9 75.5\n",
"L 140.9 77.5\n",
"L 140.3 77.5\n",
"L 140.3 73.2\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-7&#x27; d=&#x27;M 89.8 69.5\n",
"L 91.2 71.8\n",
"Q 91.3 72.0, 91.6 72.4\n",
"Q 91.8 72.8, 91.8 72.8\n",
"L 91.8 69.5\n",
"L 92.4 69.5\n",
"L 92.4 73.8\n",
"L 91.8 73.8\n",
"L 90.3 71.3\n",
"Q 90.1 71.0, 89.9 70.7\n",
"Q 89.7 70.4, 89.7 70.3\n",
"L 89.7 73.8\n",
"L 89.1 73.8\n",
"L 89.1 69.5\n",
"L 89.8 69.5\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-7&#x27; d=&#x27;M 89.1 64.9\n",
"L 89.7 64.9\n",
"L 89.7 66.7\n",
"L 91.8 66.7\n",
"L 91.8 64.9\n",
"L 92.4 64.9\n",
"L 92.4 69.1\n",
"L 91.8 69.1\n",
"L 91.8 67.1\n",
"L 89.7 67.1\n",
"L 89.7 69.1\n",
"L 89.1 69.1\n",
"L 89.1 64.9\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-9&#x27; d=&#x27;M 83.1 81.2\n",
"L 84.5 83.4\n",
"Q 84.7 83.6, 84.9 84.0\n",
"Q 85.1 84.4, 85.1 84.5\n",
"L 85.1 81.2\n",
"L 85.7 81.2\n",
"L 85.7 85.4\n",
"L 85.1 85.4\n",
"L 83.6 82.9\n",
"Q 83.4 82.7, 83.3 82.3\n",
"Q 83.1 82.0, 83.0 81.9\n",
"L 83.0 85.4\n",
"L 82.5 85.4\n",
"L 82.5 81.2\n",
"L 83.1 81.2\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-13&#x27; d=&#x27;M 63.0 69.6\n",
"L 64.4 71.9\n",
"Q 64.5 72.1, 64.7 72.5\n",
"Q 65.0 72.9, 65.0 72.9\n",
"L 65.0 69.6\n",
"L 65.5 69.6\n",
"L 65.5 73.9\n",
"L 65.0 73.9\n",
"L 63.5 71.4\n",
"Q 63.3 71.1, 63.1 70.8\n",
"Q 62.9 70.5, 62.9 70.4\n",
"L 62.9 73.9\n",
"L 62.3 73.9\n",
"L 62.3 69.6\n",
"L 63.0 69.6\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-13&#x27; d=&#x27;M 62.3 64.9\n",
"L 62.8 64.9\n",
"L 62.8 66.8\n",
"L 65.0 66.8\n",
"L 65.0 64.9\n",
"L 65.6 64.9\n",
"L 65.6 69.2\n",
"L 65.0 69.2\n",
"L 65.0 67.2\n",
"L 62.8 67.2\n",
"L 62.8 69.2\n",
"L 62.3 69.2\n",
"L 62.3 64.9\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-16&#x27; d=&#x27;M 42.9 73.6\n",
"L 44.3 75.8\n",
"Q 44.4 76.0, 44.7 76.4\n",
"Q 44.9 76.8, 44.9 76.9\n",
"L 44.9 73.6\n",
"L 45.4 73.6\n",
"L 45.4 77.8\n",
"L 44.9 77.8\n",
"L 43.4 75.4\n",
"Q 43.2 75.1, 43.0 74.7\n",
"Q 42.8 74.4, 42.8 74.3\n",
"L 42.8 77.8\n",
"L 42.2 77.8\n",
"L 42.2 73.6\n",
"L 42.9 73.6\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-16&#x27; d=&#x27;M 42.2 78.2\n",
"L 42.8 78.2\n",
"L 42.8 80.0\n",
"L 44.9 80.0\n",
"L 44.9 78.2\n",
"L 45.5 78.2\n",
"L 45.5 82.5\n",
"L 44.9 82.5\n",
"L 44.9 80.5\n",
"L 42.8 80.5\n",
"L 42.8 82.5\n",
"L 42.2 82.5\n",
"L 42.2 78.2\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-20&#x27; d=&#x27;M 22.7 62.0\n",
"L 24.1 64.3\n",
"Q 24.3 64.5, 24.5 64.9\n",
"Q 24.7 65.3, 24.7 65.3\n",
"L 24.7 62.0\n",
"L 25.3 62.0\n",
"L 25.3 66.3\n",
"L 24.7 66.3\n",
"L 23.2 63.8\n",
"Q 23.0 63.5, 22.9 63.2\n",
"Q 22.7 62.9, 22.6 62.8\n",
"L 22.6 66.3\n",
"L 22.1 66.3\n",
"L 22.1 62.0\n",
"L 22.7 62.0\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-24&#x27; d=&#x27;M 6.4 87.6\n",
"Q 6.4 86.5, 6.9 86.0\n",
"Q 7.4 85.4, 8.3 85.4\n",
"Q 9.2 85.4, 9.7 86.0\n",
"L 9.3 86.3\n",
"Q 8.9 85.9, 8.3 85.9\n",
"Q 7.7 85.9, 7.3 86.3\n",
"Q 7.0 86.7, 7.0 87.6\n",
"Q 7.0 88.4, 7.3 88.8\n",
"Q 7.7 89.3, 8.4 89.3\n",
"Q 8.8 89.3, 9.4 89.0\n",
"L 9.6 89.4\n",
"Q 9.3 89.6, 9.0 89.7\n",
"Q 8.7 89.7, 8.3 89.7\n",
"Q 7.4 89.7, 6.9 89.2\n",
"Q 6.4 88.6, 6.4 87.6\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-24&#x27; d=&#x27;M 10.1 85.1\n",
"L 10.6 85.1\n",
"L 10.6 89.7\n",
"L 10.1 89.7\n",
"L 10.1 85.1\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-28&#x27; d=&#x27;M 76.4 69.6\n",
"L 77.8 71.8\n",
"Q 77.9 72.0, 78.2 72.4\n",
"Q 78.4 72.8, 78.4 72.9\n",
"L 78.4 69.6\n",
"L 79.0 69.6\n",
"L 79.0 73.8\n",
"L 78.4 73.8\n",
"L 76.9 71.4\n",
"Q 76.7 71.1, 76.5 70.7\n",
"Q 76.3 70.4, 76.3 70.3\n",
"L 76.3 73.8\n",
"L 75.7 73.8\n",
"L 75.7 69.6\n",
"L 76.4 69.6\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;/svg&gt;\n",
"&lt;/div&gt;\n",
"&lt;div class=&quot;data copy-me data-mols2grid-id&quot;&gt;3&lt;/div&gt;\n",
"&lt;/div&gt;\n",
"&lt;/td&gt;\n",
"&lt;td class=&quot;col-4 m2g-tooltip&quot; tabindex=&quot;0&quot; data-toggle=&quot;popover&quot; data-content=&quot;&amp;lt;strong&amp;gt;chembl_id&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;CHEMBL3819257&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;canonical_smiles&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;OCCNc1nccc(NCCCNc2ccnc3cc(Cl)ccc23)n1&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;InChI=1S/C18H21ClN6O/c19-13-2-3-14-15(4-8-21-16(14)12-13)20-6-1-7-22-17-5-9-23-18(25-17)24-10-11-26/h2-5,8-9,12,26H,1,6-7,10-11H2,(H,20,21)(H2,22,23,24,25)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi_key&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;YPRIYDYUUDNSQI-UHFFFAOYSA-N&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;MW&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;372.86&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;numpy_fp&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;[0 0 0 ... 0 0 0]&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;cluster&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;478425&amp;lt;/span&amp;gt;&quot;&gt;\n",
"&lt;div class=&quot;m2g-cell-4&quot;&gt;\n",
"&lt;div class=&quot;data data-img&quot;&gt;&lt;?xml version=&#x27;1.0&#x27; encoding=&#x27;iso-8859-1&#x27;?&gt;\n",
"&lt;svg version=&#x27;1.1&#x27; baseProfile=&#x27;full&#x27;\n",
" xmlns=&#x27;http://www.w3.org/2000/svg&#x27;\n",
" xmlns:rdkit=&#x27;http://www.rdkit.org/xml&#x27;\n",
" xmlns:xlink=&#x27;http://www.w3.org/1999/xlink&#x27;\n",
" xml:space=&#x27;preserve&#x27;\n",
"width=&#x27;150px&#x27; height=&#x27;150px&#x27; viewBox=&#x27;0 0 150 150&#x27;&gt;\n",
"&lt;!-- END OF HEADER --&gt;\n",
"&lt;rect style=&#x27;opacity:1.0;fill:#FFFFFF;stroke:none&#x27; width=&#x27;150.0&#x27; height=&#x27;150.0&#x27; x=&#x27;0.0&#x27; y=&#x27;0.0&#x27;&gt; &lt;/rect&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 122.1,11.6 L 118.4,13.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 118.4,13.8 L 114.6,15.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-1 atom-1 atom-2&#x27; d=&#x27;M 114.6,15.9 L 114.6,27.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-2 atom-2 atom-3&#x27; d=&#x27;M 114.6,27.7 L 110.7,30.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-2 atom-2 atom-3&#x27; d=&#x27;M 110.7,30.0 L 106.7,32.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-3 atom-3 atom-4&#x27; d=&#x27;M 104.4,36.5 L 104.4,41.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-3 atom-3 atom-4&#x27; d=&#x27;M 104.4,41.0 L 104.4,45.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 104.4,45.4 L 108.4,47.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 108.4,47.7 L 112.4,50.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 104.4,47.4 L 108.0,49.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 108.0,49.5 L 111.5,51.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 114.7,54.2 L 114.7,58.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 114.7,58.6 L 114.7,63.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 114.7,63.1 L 104.5,69.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 112.9,62.1 L 104.5,66.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 104.5,69.0 L 94.3,63.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 94.3,63.1 L 90.3,65.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 90.3,65.4 L 86.3,67.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 84.1,71.9 L 84.1,76.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 84.1,76.3 L 84.1,80.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 84.1,80.8 L 73.9,86.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 73.9,86.7 L 73.9,98.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 73.9,98.5 L 69.9,100.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 69.9,100.8 L 66.0,103.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 63.7,107.3 L 63.7,111.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 63.7,111.7 L 63.7,116.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 63.7,116.2 L 73.9,122.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 63.7,118.2 L 72.1,123.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 73.9,122.0 L 73.9,133.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 73.9,133.8 L 69.9,136.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 69.9,136.1 L 66.0,138.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 72.1,132.8 L 68.6,134.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 68.6,134.8 L 65.1,136.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 61.4,138.4 L 57.4,136.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 57.4,136.1 L 53.5,133.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 53.5,133.8 L 43.3,139.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 51.7,132.8 L 43.3,137.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 43.3,139.7 L 33.1,133.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 33.1,133.9 L 28.3,136.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 28.3,136.6 L 23.6,139.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-20 atom-22&#x27; d=&#x27;M 33.1,133.9 L 33.1,122.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-20 atom-22&#x27; d=&#x27;M 34.8,132.8 L 34.8,123.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-22 atom-23&#x27; d=&#x27;M 33.1,122.1 L 43.3,116.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-23 atom-24&#x27; d=&#x27;M 43.3,116.2 L 53.5,122.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-23 atom-24&#x27; d=&#x27;M 43.3,118.2 L 51.7,123.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-8 atom-25&#x27; d=&#x27;M 94.3,63.1 L 94.2,58.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-8 atom-25&#x27; d=&#x27;M 94.2,58.6 L 94.2,54.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-8 atom-25&#x27; d=&#x27;M 96.0,62.1 L 96.0,58.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-8 atom-25&#x27; d=&#x27;M 96.0,58.1 L 96.0,54.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-25 atom-4&#x27; d=&#x27;M 96.5,50.0 L 100.5,47.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-25 atom-4&#x27; d=&#x27;M 100.5,47.7 L 104.4,45.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-24 atom-14&#x27; d=&#x27;M 53.5,122.1 L 63.7,116.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-24 atom-18&#x27; d=&#x27;M 53.5,122.1 L 53.5,133.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path d=&#x27;M 114.8,15.8 L 114.6,15.9 L 114.6,16.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 114.6,27.1 L 114.6,27.7 L 114.4,27.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 114.7,62.9 L 114.7,63.1 L 114.2,63.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 105.0,68.7 L 104.5,69.0 L 104.0,68.7&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 84.1,80.6 L 84.1,80.8 L 83.6,81.1&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 74.4,86.4 L 73.9,86.7 L 73.9,87.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 73.9,97.9 L 73.9,98.5 L 73.7,98.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 73.4,121.7 L 73.9,122.0 L 73.9,122.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 73.9,133.2 L 73.9,133.8 L 73.7,133.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 43.8,139.4 L 43.3,139.7 L 42.8,139.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 33.1,122.7 L 33.1,122.1 L 33.6,121.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 42.8,116.5 L 43.3,116.2 L 43.8,116.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 122.5 10.0\n",
"Q 122.5 8.8, 123.1 8.2\n",
"Q 123.7 7.5, 124.8 7.5\n",
"Q 125.9 7.5, 126.5 8.2\n",
"Q 127.1 8.8, 127.1 10.0\n",
"Q 127.1 11.3, 126.5 12.0\n",
"Q 125.9 12.6, 124.8 12.6\n",
"Q 123.7 12.6, 123.1 12.0\n",
"Q 122.5 11.3, 122.5 10.0\n",
"M 124.8 12.1\n",
"Q 125.6 12.1, 126.0 11.6\n",
"Q 126.4 11.0, 126.4 10.0\n",
"Q 126.4 9.1, 126.0 8.6\n",
"Q 125.6 8.1, 124.8 8.1\n",
"Q 124.1 8.1, 123.6 8.6\n",
"Q 123.2 9.1, 123.2 10.0\n",
"Q 123.2 11.1, 123.6 11.6\n",
"Q 124.1 12.1, 124.8 12.1\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 127.9 7.6\n",
"L 128.6 7.6\n",
"L 128.6 9.7\n",
"L 131.1 9.7\n",
"L 131.1 7.6\n",
"L 131.8 7.6\n",
"L 131.8 12.6\n",
"L 131.1 12.6\n",
"L 131.1 10.3\n",
"L 128.6 10.3\n",
"L 128.6 12.6\n",
"L 127.9 12.6\n",
"L 127.9 7.6\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-3&#x27; d=&#x27;M 97.6 31.1\n",
"L 98.3 31.1\n",
"L 98.3 33.2\n",
"L 100.9 33.2\n",
"L 100.9 31.1\n",
"L 101.6 31.1\n",
"L 101.6 36.1\n",
"L 100.9 36.1\n",
"L 100.9 33.8\n",
"L 98.3 33.8\n",
"L 98.3 36.1\n",
"L 97.6 36.1\n",
"L 97.6 31.1\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-3&#x27; d=&#x27;M 103.3 31.1\n",
"L 105.0 33.8\n",
"Q 105.1 34.0, 105.4 34.5\n",
"Q 105.7 35.0, 105.7 35.0\n",
"L 105.7 31.1\n",
"L 106.3 31.1\n",
"L 106.3 36.1\n",
"L 105.6 36.1\n",
"L 103.9 33.2\n",
"Q 103.7 32.9, 103.5 32.5\n",
"Q 103.3 32.1, 103.2 32.0\n",
"L 103.2 36.1\n",
"L 102.5 36.1\n",
"L 102.5 31.1\n",
"L 103.3 31.1\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-5&#x27; d=&#x27;M 113.5 48.8\n",
"L 115.2 51.4\n",
"Q 115.4 51.7, 115.6 52.2\n",
"Q 115.9 52.6, 115.9 52.7\n",
"L 115.9 48.8\n",
"L 116.6 48.8\n",
"L 116.6 53.8\n",
"L 115.9 53.8\n",
"L 114.1 50.9\n",
"Q 113.9 50.6, 113.7 50.2\n",
"Q 113.5 49.8, 113.4 49.7\n",
"L 113.4 53.8\n",
"L 112.8 53.8\n",
"L 112.8 48.8\n",
"L 113.5 48.8\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-9&#x27; d=&#x27;M 77.2 66.5\n",
"L 77.9 66.5\n",
"L 77.9 68.6\n",
"L 80.5 68.6\n",
"L 80.5 66.5\n",
"L 81.2 66.5\n",
"L 81.2 71.5\n",
"L 80.5 71.5\n",
"L 80.5 69.2\n",
"L 77.9 69.2\n",
"L 77.9 71.5\n",
"L 77.2 71.5\n",
"L 77.2 66.5\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-9&#x27; d=&#x27;M 82.9 66.5\n",
"L 84.6 69.1\n",
"Q 84.7 69.4, 85.0 69.9\n",
"Q 85.3 70.4, 85.3 70.4\n",
"L 85.3 66.5\n",
"L 86.0 66.5\n",
"L 86.0 71.5\n",
"L 85.3 71.5\n",
"L 83.5 68.6\n",
"Q 83.3 68.3, 83.1 67.9\n",
"Q 82.9 67.5, 82.8 67.4\n",
"L 82.8 71.5\n",
"L 82.2 71.5\n",
"L 82.2 66.5\n",
"L 82.9 66.5\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-13&#x27; d=&#x27;M 56.9 101.9\n",
"L 57.5 101.9\n",
"L 57.5 104.0\n",
"L 60.1 104.0\n",
"L 60.1 101.9\n",
"L 60.8 101.9\n",
"L 60.8 106.9\n",
"L 60.1 106.9\n",
"L 60.1 104.6\n",
"L 57.5 104.6\n",
"L 57.5 106.9\n",
"L 56.9 106.9\n",
"L 56.9 101.9\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-13&#x27; d=&#x27;M 62.6 101.9\n",
"L 64.2 104.5\n",
"Q 64.4 104.8, 64.6 105.2\n",
"Q 64.9 105.7, 64.9 105.7\n",
"L 64.9 101.9\n",
"L 65.6 101.9\n",
"L 65.6 106.9\n",
"L 64.9 106.9\n",
"L 63.1 104.0\n",
"Q 62.9 103.6, 62.7 103.2\n",
"Q 62.5 102.8, 62.4 102.7\n",
"L 62.4 106.9\n",
"L 61.8 106.9\n",
"L 61.8 101.9\n",
"L 62.6 101.9\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-17&#x27; d=&#x27;M 62.6 137.2\n",
"L 64.2 139.9\n",
"Q 64.4 140.1, 64.7 140.6\n",
"Q 64.9 141.1, 64.9 141.1\n",
"L 64.9 137.2\n",
"L 65.6 137.2\n",
"L 65.6 142.2\n",
"L 64.9 142.2\n",
"L 63.1 139.3\n",
"Q 62.9 139.0, 62.7 138.6\n",
"Q 62.5 138.2, 62.4 138.1\n",
"L 62.4 142.2\n",
"L 61.8 142.2\n",
"L 61.8 137.2\n",
"L 62.6 137.2\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-21&#x27; d=&#x27;M 18.2 139.9\n",
"Q 18.2 138.7, 18.8 138.0\n",
"Q 19.3 137.4, 20.5 137.4\n",
"Q 21.5 137.4, 22.0 138.1\n",
"L 21.6 138.5\n",
"Q 21.2 138.0, 20.5 138.0\n",
"Q 19.7 138.0, 19.3 138.5\n",
"Q 18.9 139.0, 18.9 139.9\n",
"Q 18.9 140.9, 19.3 141.4\n",
"Q 19.7 141.9, 20.5 141.9\n",
"Q 21.1 141.9, 21.7 141.6\n",
"L 21.9 142.1\n",
"Q 21.7 142.3, 21.3 142.4\n",
"Q 20.9 142.5, 20.4 142.5\n",
"Q 19.3 142.5, 18.8 141.8\n",
"Q 18.2 141.2, 18.2 139.9\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-21&#x27; d=&#x27;M 22.5 137.1\n",
"L 23.2 137.1\n",
"L 23.2 142.4\n",
"L 22.5 142.4\n",
"L 22.5 137.1\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-25&#x27; d=&#x27;M 93.1 48.8\n",
"L 94.8 51.5\n",
"Q 94.9 51.7, 95.2 52.2\n",
"Q 95.5 52.7, 95.5 52.7\n",
"L 95.5 48.8\n",
"L 96.1 48.8\n",
"L 96.1 53.8\n",
"L 95.5 53.8\n",
"L 93.7 50.9\n",
"Q 93.5 50.6, 93.3 50.2\n",
"Q 93.1 49.8, 93.0 49.7\n",
"L 93.0 53.8\n",
"L 92.3 53.8\n",
"L 92.3 48.8\n",
"L 93.1 48.8\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;/svg&gt;\n",
"&lt;/div&gt;\n",
"&lt;div class=&quot;data copy-me data-mols2grid-id&quot;&gt;4&lt;/div&gt;\n",
"&lt;/div&gt;\n",
"&lt;/td&gt;\n",
"&lt;/tr&gt;\n",
"&lt;tr class=&quot;row-1&quot;&gt;\n",
"&lt;td class=&quot;col-0 m2g-tooltip&quot; tabindex=&quot;0&quot; data-toggle=&quot;popover&quot; data-content=&quot;&amp;lt;strong&amp;gt;chembl_id&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;CHEMBL3818306&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;canonical_smiles&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;OCCCNc1nccc(NCCCNc2ccnc3cc(Cl)ccc23)n1&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;InChI=1S/C19H23ClN6O/c20-14-3-4-15-16(5-10-22-17(15)13-14)21-7-1-8-23-18-6-11-25-19(26-18)24-9-2-12-27/h3-6,10-11,13,27H,1-2,7-9,12H2,(H,21,22)(H2,23,24,25,26)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi_key&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;MZKOJAIKJKJDHW-UHFFFAOYSA-N&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;MW&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;386.88700000000006&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;numpy_fp&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;[0 0 0 ... 0 0 0]&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;cluster&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;478425&amp;lt;/span&amp;gt;&quot;&gt;\n",
"&lt;div class=&quot;m2g-cell-5&quot;&gt;\n",
"&lt;div class=&quot;data data-img&quot;&gt;&lt;?xml version=&#x27;1.0&#x27; encoding=&#x27;iso-8859-1&#x27;?&gt;\n",
"&lt;svg version=&#x27;1.1&#x27; baseProfile=&#x27;full&#x27;\n",
" xmlns=&#x27;http://www.w3.org/2000/svg&#x27;\n",
" xmlns:rdkit=&#x27;http://www.rdkit.org/xml&#x27;\n",
" xmlns:xlink=&#x27;http://www.w3.org/1999/xlink&#x27;\n",
" xml:space=&#x27;preserve&#x27;\n",
"width=&#x27;150px&#x27; height=&#x27;150px&#x27; viewBox=&#x27;0 0 150 150&#x27;&gt;\n",
"&lt;!-- END OF HEADER --&gt;\n",
"&lt;rect style=&#x27;opacity:1.0;fill:#FFFFFF;stroke:none&#x27; width=&#x27;150.0&#x27; height=&#x27;150.0&#x27; x=&#x27;0.0&#x27; y=&#x27;0.0&#x27;&gt; &lt;/rect&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 135.0,75.6 L 132.4,77.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 132.4,77.1 L 129.8,78.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-1 atom-1 atom-2&#x27; d=&#x27;M 129.8,78.6 L 122.4,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-2 atom-2 atom-3&#x27; d=&#x27;M 122.4,74.2 L 114.9,78.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-3 atom-3 atom-4&#x27; d=&#x27;M 114.9,78.5 L 112.2,76.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-3 atom-3 atom-4&#x27; d=&#x27;M 112.2,76.9 L 109.4,75.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 105.6,75.3 L 102.8,76.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 102.8,76.9 L 100.0,78.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 100.0,78.5 L 100.0,81.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 100.0,81.6 L 100.0,84.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 98.7,79.2 L 98.7,81.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 98.7,81.9 L 98.7,84.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 98.1,88.1 L 95.3,89.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 95.3,89.7 L 92.5,91.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 92.5,91.3 L 85.1,87.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 92.5,89.8 L 86.4,86.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 85.1,87.0 L 85.1,78.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 85.1,78.4 L 82.4,76.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 82.4,76.8 L 79.6,75.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 75.8,75.2 L 73.0,76.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 73.0,76.8 L 70.3,78.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 70.3,78.4 L 62.8,74.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 62.8,74.0 L 55.4,78.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 55.4,78.3 L 52.6,76.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 52.6,76.7 L 49.8,75.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 46.1,75.1 L 43.3,76.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 43.3,76.7 L 40.5,78.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 40.5,78.2 L 40.5,86.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 39.2,79.0 L 39.2,86.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 40.5,86.8 L 33.0,91.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 33.0,91.1 L 30.2,89.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 30.2,89.5 L 27.5,87.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 33.0,89.6 L 30.6,88.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 30.6,88.2 L 28.1,86.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 25.6,84.4 L 25.6,81.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 25.6,81.3 L 25.6,78.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 25.6,78.2 L 18.2,73.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 25.6,76.7 L 19.5,73.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 18.2,73.9 L 18.2,65.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 18.2,65.3 L 14.8,63.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 14.8,63.3 L 11.3,61.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-21 atom-23&#x27; d=&#x27;M 18.2,65.3 L 25.7,61.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-21 atom-23&#x27; d=&#x27;M 19.5,66.0 L 25.7,62.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-23 atom-24&#x27; d=&#x27;M 25.7,61.0 L 33.1,65.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-24 atom-25&#x27; d=&#x27;M 33.1,65.3 L 33.1,73.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-24 atom-25&#x27; d=&#x27;M 31.8,66.1 L 31.8,73.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-9 atom-26&#x27; d=&#x27;M 85.1,78.4 L 87.9,76.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-9 atom-26&#x27; d=&#x27;M 87.9,76.8 L 90.7,75.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-9 atom-26&#x27; d=&#x27;M 86.4,79.2 L 88.9,77.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-9 atom-26&#x27; d=&#x27;M 88.9,77.7 L 91.4,76.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-26 atom-5&#x27; d=&#x27;M 94.5,75.2 L 97.3,76.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-26 atom-5&#x27; d=&#x27;M 97.3,76.9 L 100.0,78.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-25 atom-15&#x27; d=&#x27;M 33.1,73.9 L 40.5,78.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-25 atom-19&#x27; d=&#x27;M 33.1,73.9 L 25.6,78.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path d=&#x27;M 129.9,78.5 L 129.8,78.6 L 129.4,78.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 122.7,74.5 L 122.4,74.2 L 122.0,74.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 115.3,78.3 L 114.9,78.5 L 114.8,78.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 92.7,91.2 L 92.5,91.3 L 92.2,91.1&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 85.5,87.2 L 85.1,87.0 L 85.1,86.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 70.4,78.3 L 70.3,78.4 L 69.9,78.1&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 63.2,74.2 L 62.8,74.0 L 62.5,74.2&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 55.8,78.1 L 55.4,78.3 L 55.2,78.2&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 40.5,86.4 L 40.5,86.8 L 40.1,87.1&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 33.4,90.9 L 33.0,91.1 L 32.9,91.0&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 18.6,74.1 L 18.2,73.9 L 18.2,73.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 25.3,61.2 L 25.7,61.0 L 26.0,61.2&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 32.7,65.1 L 33.1,65.3 L 33.1,65.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 135.3 74.3\n",
"Q 135.3 73.3, 135.8 72.7\n",
"Q 136.3 72.1, 137.3 72.1\n",
"Q 138.2 72.1, 138.7 72.7\n",
"Q 139.2 73.3, 139.2 74.3\n",
"Q 139.2 75.3, 138.7 75.9\n",
"Q 138.2 76.5, 137.3 76.5\n",
"Q 136.3 76.5, 135.8 75.9\n",
"Q 135.3 75.3, 135.3 74.3\n",
"M 137.3 76.0\n",
"Q 137.9 76.0, 138.3 75.6\n",
"Q 138.6 75.2, 138.6 74.3\n",
"Q 138.6 73.5, 138.3 73.1\n",
"Q 137.9 72.6, 137.3 72.6\n",
"Q 136.6 72.6, 136.3 73.0\n",
"Q 135.9 73.5, 135.9 74.3\n",
"Q 135.9 75.2, 136.3 75.6\n",
"Q 136.6 76.0, 137.3 76.0\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 139.9 72.2\n",
"L 140.4 72.2\n",
"L 140.4 74.0\n",
"L 142.6 74.0\n",
"L 142.6 72.2\n",
"L 143.2 72.2\n",
"L 143.2 76.4\n",
"L 142.6 76.4\n",
"L 142.6 74.5\n",
"L 140.4 74.5\n",
"L 140.4 76.4\n",
"L 139.9 76.4\n",
"L 139.9 72.2\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-4&#x27; d=&#x27;M 106.6 72.1\n",
"L 107.9 74.3\n",
"Q 108.1 74.5, 108.3 74.9\n",
"Q 108.5 75.3, 108.5 75.4\n",
"L 108.5 72.1\n",
"L 109.1 72.1\n",
"L 109.1 76.3\n",
"L 108.5 76.3\n",
"L 107.0 73.9\n",
"Q 106.9 73.6, 106.7 73.2\n",
"Q 106.5 72.9, 106.4 72.8\n",
"L 106.4 76.3\n",
"L 105.9 76.3\n",
"L 105.9 72.1\n",
"L 106.6 72.1\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-4&#x27; d=&#x27;M 105.8 67.4\n",
"L 106.4 67.4\n",
"L 106.4 69.2\n",
"L 108.6 69.2\n",
"L 108.6 67.4\n",
"L 109.2 67.4\n",
"L 109.2 71.6\n",
"L 108.6 71.6\n",
"L 108.6 69.7\n",
"L 106.4 69.7\n",
"L 106.4 71.6\n",
"L 105.8 71.6\n",
"L 105.8 67.4\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-6&#x27; d=&#x27;M 99.1 84.9\n",
"L 100.5 87.2\n",
"Q 100.6 87.4, 100.8 87.8\n",
"Q 101.0 88.2, 101.1 88.2\n",
"L 101.1 84.9\n",
"L 101.6 84.9\n",
"L 101.6 89.2\n",
"L 101.0 89.2\n",
"L 99.5 86.7\n",
"Q 99.4 86.4, 99.2 86.1\n",
"Q 99.0 85.8, 98.9 85.7\n",
"L 98.9 89.2\n",
"L 98.4 89.2\n",
"L 98.4 84.9\n",
"L 99.1 84.9\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-10&#x27; d=&#x27;M 76.8 72.0\n",
"L 78.2 74.2\n",
"Q 78.3 74.4, 78.5 74.8\n",
"Q 78.8 75.2, 78.8 75.3\n",
"L 78.8 72.0\n",
"L 79.3 72.0\n",
"L 79.3 76.2\n",
"L 78.8 76.2\n",
"L 77.3 73.7\n",
"Q 77.1 73.5, 76.9 73.1\n",
"Q 76.7 72.8, 76.7 72.7\n",
"L 76.7 76.2\n",
"L 76.1 76.2\n",
"L 76.1 72.0\n",
"L 76.8 72.0\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-10&#x27; d=&#x27;M 76.1 67.3\n",
"L 76.6 67.3\n",
"L 76.6 69.1\n",
"L 78.8 69.1\n",
"L 78.8 67.3\n",
"L 79.4 67.3\n",
"L 79.4 71.5\n",
"L 78.8 71.5\n",
"L 78.8 69.6\n",
"L 76.6 69.6\n",
"L 76.6 71.5\n",
"L 76.1 71.5\n",
"L 76.1 67.3\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-14&#x27; d=&#x27;M 47.0 71.9\n",
"L 48.4 74.1\n",
"Q 48.5 74.3, 48.8 74.7\n",
"Q 49.0 75.1, 49.0 75.2\n",
"L 49.0 71.9\n",
"L 49.6 71.9\n",
"L 49.6 76.1\n",
"L 49.0 76.1\n",
"L 47.5 73.6\n",
"Q 47.3 73.4, 47.1 73.0\n",
"Q 46.9 72.7, 46.9 72.6\n",
"L 46.9 76.1\n",
"L 46.3 76.1\n",
"L 46.3 71.9\n",
"L 47.0 71.9\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-14&#x27; d=&#x27;M 46.3 67.2\n",
"L 46.9 67.2\n",
"L 46.9 69.0\n",
"L 49.0 69.0\n",
"L 49.0 67.2\n",
"L 49.6 67.2\n",
"L 49.6 71.4\n",
"L 49.0 71.4\n",
"L 49.0 69.5\n",
"L 46.9 69.5\n",
"L 46.9 71.4\n",
"L 46.3 71.4\n",
"L 46.3 67.2\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-18&#x27; d=&#x27;M 24.6 84.7\n",
"L 26.0 86.9\n",
"Q 26.2 87.1, 26.4 87.5\n",
"Q 26.6 87.9, 26.6 88.0\n",
"L 26.6 84.7\n",
"L 27.2 84.7\n",
"L 27.2 88.9\n",
"L 26.6 88.9\n",
"L 25.1 86.5\n",
"Q 24.9 86.2, 24.8 85.8\n",
"Q 24.6 85.5, 24.5 85.4\n",
"L 24.5 88.9\n",
"L 24.0 88.9\n",
"L 24.0 84.7\n",
"L 24.6 84.7\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-22&#x27; d=&#x27;M 6.8 61.1\n",
"Q 6.8 60.0, 7.3 59.5\n",
"Q 7.8 58.9, 8.7 58.9\n",
"Q 9.6 58.9, 10.1 59.6\n",
"L 9.7 59.9\n",
"Q 9.3 59.4, 8.7 59.4\n",
"Q 8.1 59.4, 7.8 59.9\n",
"Q 7.4 60.3, 7.4 61.1\n",
"Q 7.4 61.9, 7.8 62.4\n",
"Q 8.1 62.8, 8.8 62.8\n",
"Q 9.3 62.8, 9.8 62.5\n",
"L 10.0 63.0\n",
"Q 9.8 63.1, 9.4 63.2\n",
"Q 9.1 63.3, 8.7 63.3\n",
"Q 7.8 63.3, 7.3 62.7\n",
"Q 6.8 62.2, 6.8 61.1\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-22&#x27; d=&#x27;M 10.5 58.7\n",
"L 11.1 58.7\n",
"L 11.1 63.2\n",
"L 10.5 63.2\n",
"L 10.5 58.7\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-26&#x27; d=&#x27;M 91.7 72.0\n",
"L 93.1 74.3\n",
"Q 93.2 74.5, 93.4 74.9\n",
"Q 93.6 75.3, 93.7 75.3\n",
"L 93.7 72.0\n",
"L 94.2 72.0\n",
"L 94.2 76.3\n",
"L 93.6 76.3\n",
"L 92.1 73.8\n",
"Q 92.0 73.5, 91.8 73.2\n",
"Q 91.6 72.9, 91.5 72.8\n",
"L 91.5 76.3\n",
"L 91.0 76.3\n",
"L 91.0 72.0\n",
"L 91.7 72.0\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;/svg&gt;\n",
"&lt;/div&gt;\n",
"&lt;div class=&quot;data copy-me data-mols2grid-id&quot;&gt;5&lt;/div&gt;\n",
"&lt;/div&gt;\n",
"&lt;/td&gt;\n",
"&lt;td class=&quot;col-1 m2g-tooltip&quot; tabindex=&quot;0&quot; data-toggle=&quot;popover&quot; data-content=&quot;&amp;lt;strong&amp;gt;chembl_id&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;CHEMBL3819413&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;canonical_smiles&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;OCCCCCNc1nccc(NCCCNc2ccnc3cc(Cl)ccc23)n1&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;InChI=1S/C21H27ClN6O/c22-16-5-6-17-18(7-12-24-19(17)15-16)23-10-4-11-25-20-8-13-27-21(28-20)26-9-2-1-3-14-29/h5-8,12-13,15,29H,1-4,9-11,14H2,(H,23,24)(H2,25,26,27,28)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi_key&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;LIPPMTBYGFWROU-UHFFFAOYSA-N&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;MW&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;414.94100000000014&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;numpy_fp&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;[0 0 0 ... 0 0 0]&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;cluster&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;478425&amp;lt;/span&amp;gt;&quot;&gt;\n",
"&lt;div class=&quot;m2g-cell-6&quot;&gt;\n",
"&lt;div class=&quot;data data-img&quot;&gt;&lt;?xml version=&#x27;1.0&#x27; encoding=&#x27;iso-8859-1&#x27;?&gt;\n",
"&lt;svg version=&#x27;1.1&#x27; baseProfile=&#x27;full&#x27;\n",
" xmlns=&#x27;http://www.w3.org/2000/svg&#x27;\n",
" xmlns:rdkit=&#x27;http://www.rdkit.org/xml&#x27;\n",
" xmlns:xlink=&#x27;http://www.w3.org/1999/xlink&#x27;\n",
" xml:space=&#x27;preserve&#x27;\n",
"width=&#x27;150px&#x27; height=&#x27;150px&#x27; viewBox=&#x27;0 0 150 150&#x27;&gt;\n",
"&lt;!-- END OF HEADER --&gt;\n",
"&lt;rect style=&#x27;opacity:1.0;fill:#FFFFFF;stroke:none&#x27; width=&#x27;150.0&#x27; height=&#x27;150.0&#x27; x=&#x27;0.0&#x27; y=&#x27;0.0&#x27;&gt; &lt;/rect&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 135.5,75.8 L 133.2,77.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 133.2,77.1 L 131.0,78.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-1 atom-1 atom-2&#x27; d=&#x27;M 131.0,78.4 L 124.3,74.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-2 atom-2 atom-3&#x27; d=&#x27;M 124.3,74.5 L 117.6,78.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-3 atom-3 atom-4&#x27; d=&#x27;M 117.6,78.3 L 110.9,74.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 110.9,74.4 L 104.2,78.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 104.2,78.3 L 101.7,76.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 101.7,76.9 L 99.3,75.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 95.6,75.5 L 93.2,76.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 93.2,76.8 L 90.7,78.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 90.7,78.2 L 90.7,80.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 90.7,80.9 L 90.7,83.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 89.6,78.9 L 89.6,81.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 89.6,81.2 L 89.6,83.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 88.9,87.0 L 86.4,88.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 86.4,88.4 L 84.0,89.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 84.0,89.8 L 77.3,85.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 84.0,88.5 L 78.5,85.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 77.3,85.9 L 77.3,78.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 77.3,78.2 L 74.9,76.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 74.9,76.8 L 72.5,75.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 68.8,75.4 L 66.4,76.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 66.4,76.7 L 63.9,78.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 63.9,78.1 L 57.2,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 57.2,74.2 L 50.5,78.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 50.5,78.1 L 48.1,76.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 48.1,76.7 L 45.7,75.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 42.0,75.3 L 39.5,76.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 39.5,76.6 L 37.1,78.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 37.1,78.0 L 37.1,85.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 36.0,78.7 L 35.9,85.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 37.1,85.8 L 30.4,89.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 30.4,89.6 L 28.0,88.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 28.0,88.2 L 25.6,86.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 30.4,88.3 L 28.3,87.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 28.3,87.0 L 26.1,85.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 23.7,83.3 L 23.7,80.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 23.7,80.7 L 23.7,78.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 23.7,78.0 L 17.0,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 23.7,76.6 L 18.2,73.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-22 atom-23&#x27; d=&#x27;M 17.0,74.1 L 17.1,66.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-23 atom-24&#x27; d=&#x27;M 17.1,66.4 L 14.0,64.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-23 atom-24&#x27; d=&#x27;M 14.0,64.6 L 10.9,62.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-23 atom-25&#x27; d=&#x27;M 17.1,66.4 L 23.8,62.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-23 atom-25&#x27; d=&#x27;M 18.2,67.0 L 23.8,63.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-25 atom-26&#x27; d=&#x27;M 23.8,62.5 L 30.5,66.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-26 atom-27&#x27; d=&#x27;M 30.5,66.4 L 30.4,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-26 atom-27&#x27; d=&#x27;M 29.3,67.1 L 29.3,73.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-11 atom-28&#x27; d=&#x27;M 77.3,78.2 L 79.8,76.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-11 atom-28&#x27; d=&#x27;M 79.8,76.8 L 82.2,75.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-11 atom-28&#x27; d=&#x27;M 78.5,78.9 L 80.6,77.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-11 atom-28&#x27; d=&#x27;M 80.6,77.6 L 82.8,76.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-28 atom-7&#x27; d=&#x27;M 85.9,75.4 L 88.3,76.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-28 atom-7&#x27; d=&#x27;M 88.3,76.8 L 90.7,78.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-29 atom-27 atom-17&#x27; d=&#x27;M 30.4,74.1 L 37.1,78.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-30 atom-27 atom-21&#x27; d=&#x27;M 30.4,74.1 L 23.7,78.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path d=&#x27;M 131.1,78.3 L 131.0,78.4 L 130.6,78.2&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 124.6,74.7 L 124.3,74.5 L 123.9,74.7&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 117.9,78.1 L 117.6,78.3 L 117.2,78.1&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 111.2,74.6 L 110.9,74.4 L 110.5,74.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 104.5,78.1 L 104.2,78.3 L 104.0,78.2&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 84.1,89.7 L 84.0,89.8 L 83.7,89.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 77.6,86.1 L 77.3,85.9 L 77.3,85.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 64.1,78.1 L 63.9,78.1 L 63.6,77.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 57.6,74.4 L 57.2,74.2 L 56.9,74.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 50.9,77.9 L 50.5,78.1 L 50.4,78.0&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 37.1,85.4 L 37.1,85.8 L 36.8,86.0&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 30.7,89.4 L 30.4,89.6 L 30.3,89.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 17.4,74.3 L 17.0,74.1 L 17.0,73.7&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 23.4,62.7 L 23.8,62.5 L 24.1,62.7&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 30.1,66.2 L 30.5,66.4 L 30.5,66.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 135.7 74.5\n",
"Q 135.7 73.5, 136.2 72.9\n",
"Q 136.7 72.4, 137.7 72.4\n",
"Q 138.6 72.4, 139.1 72.9\n",
"Q 139.6 73.5, 139.6 74.5\n",
"Q 139.6 75.6, 139.1 76.2\n",
"Q 138.6 76.7, 137.7 76.7\n",
"Q 136.7 76.7, 136.2 76.2\n",
"Q 135.7 75.6, 135.7 74.5\n",
"M 137.7 76.3\n",
"Q 138.3 76.3, 138.7 75.8\n",
"Q 139.0 75.4, 139.0 74.5\n",
"Q 139.0 73.7, 138.7 73.3\n",
"Q 138.3 72.9, 137.7 72.9\n",
"Q 137.0 72.9, 136.7 73.3\n",
"Q 136.3 73.7, 136.3 74.5\n",
"Q 136.3 75.4, 136.7 75.8\n",
"Q 137.0 76.3, 137.7 76.3\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 140.3 72.4\n",
"L 140.9 72.4\n",
"L 140.9 74.2\n",
"L 143.0 74.2\n",
"L 143.0 72.4\n",
"L 143.6 72.4\n",
"L 143.6 76.7\n",
"L 143.0 76.7\n",
"L 143.0 74.7\n",
"L 140.9 74.7\n",
"L 140.9 76.7\n",
"L 140.3 76.7\n",
"L 140.3 72.4\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-6&#x27; d=&#x27;M 96.5 72.3\n",
"L 97.9 74.5\n",
"Q 98.1 74.7, 98.3 75.1\n",
"Q 98.5 75.5, 98.5 75.6\n",
"L 98.5 72.3\n",
"L 99.1 72.3\n",
"L 99.1 76.5\n",
"L 98.5 76.5\n",
"L 97.0 74.0\n",
"Q 96.8 73.8, 96.6 73.4\n",
"Q 96.5 73.1, 96.4 73.0\n",
"L 96.4 76.5\n",
"L 95.9 76.5\n",
"L 95.9 72.3\n",
"L 96.5 72.3\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-6&#x27; d=&#x27;M 95.8 67.6\n",
"L 96.4 67.6\n",
"L 96.4 69.4\n",
"L 98.5 69.4\n",
"L 98.5 67.6\n",
"L 99.1 67.6\n",
"L 99.1 71.8\n",
"L 98.5 71.8\n",
"L 98.5 69.9\n",
"L 96.4 69.9\n",
"L 96.4 71.8\n",
"L 95.8 71.8\n",
"L 95.8 67.6\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-8&#x27; d=&#x27;M 89.8 83.8\n",
"L 91.2 86.1\n",
"Q 91.3 86.3, 91.5 86.7\n",
"Q 91.8 87.1, 91.8 87.1\n",
"L 91.8 83.8\n",
"L 92.3 83.8\n",
"L 92.3 88.1\n",
"L 91.7 88.1\n",
"L 90.3 85.6\n",
"Q 90.1 85.3, 89.9 85.0\n",
"Q 89.7 84.7, 89.7 84.6\n",
"L 89.7 88.1\n",
"L 89.1 88.1\n",
"L 89.1 83.8\n",
"L 89.8 83.8\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-12&#x27; d=&#x27;M 69.7 72.2\n",
"L 71.1 74.4\n",
"Q 71.2 74.6, 71.5 75.0\n",
"Q 71.7 75.4, 71.7 75.5\n",
"L 71.7 72.2\n",
"L 72.3 72.2\n",
"L 72.3 76.4\n",
"L 71.7 76.4\n",
"L 70.2 74.0\n",
"Q 70.0 73.7, 69.8 73.3\n",
"Q 69.6 73.0, 69.6 72.9\n",
"L 69.6 76.4\n",
"L 69.0 76.4\n",
"L 69.0 72.2\n",
"L 69.7 72.2\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-12&#x27; d=&#x27;M 69.0 67.5\n",
"L 69.6 67.5\n",
"L 69.6 69.3\n",
"L 71.7 69.3\n",
"L 71.7 67.5\n",
"L 72.3 67.5\n",
"L 72.3 71.7\n",
"L 71.7 71.7\n",
"L 71.7 69.8\n",
"L 69.6 69.8\n",
"L 69.6 71.7\n",
"L 69.0 71.7\n",
"L 69.0 67.5\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-16&#x27; d=&#x27;M 42.9 72.1\n",
"L 44.3 74.3\n",
"Q 44.4 74.5, 44.7 74.9\n",
"Q 44.9 75.3, 44.9 75.4\n",
"L 44.9 72.1\n",
"L 45.4 72.1\n",
"L 45.4 76.3\n",
"L 44.9 76.3\n",
"L 43.4 73.9\n",
"Q 43.2 73.6, 43.0 73.2\n",
"Q 42.8 72.9, 42.8 72.8\n",
"L 42.8 76.3\n",
"L 42.2 76.3\n",
"L 42.2 72.1\n",
"L 42.9 72.1\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-16&#x27; d=&#x27;M 42.2 67.4\n",
"L 42.8 67.4\n",
"L 42.8 69.2\n",
"L 44.9 69.2\n",
"L 44.9 67.4\n",
"L 45.5 67.4\n",
"L 45.5 71.6\n",
"L 44.9 71.6\n",
"L 44.9 69.7\n",
"L 42.8 69.7\n",
"L 42.8 71.6\n",
"L 42.2 71.6\n",
"L 42.2 67.4\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-20&#x27; d=&#x27;M 22.7 83.6\n",
"L 24.1 85.9\n",
"Q 24.3 86.1, 24.5 86.5\n",
"Q 24.7 86.9, 24.7 86.9\n",
"L 24.7 83.6\n",
"L 25.3 83.6\n",
"L 25.3 87.9\n",
"L 24.7 87.9\n",
"L 23.2 85.4\n",
"Q 23.0 85.1, 22.9 84.8\n",
"Q 22.7 84.4, 22.6 84.3\n",
"L 22.6 87.9\n",
"L 22.1 87.9\n",
"L 22.1 83.6\n",
"L 22.7 83.6\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-24&#x27; d=&#x27;M 6.4 62.6\n",
"Q 6.4 61.6, 6.9 61.0\n",
"Q 7.4 60.4, 8.3 60.4\n",
"Q 9.2 60.4, 9.7 61.1\n",
"L 9.3 61.4\n",
"Q 8.9 60.9, 8.3 60.9\n",
"Q 7.7 60.9, 7.3 61.4\n",
"Q 7.0 61.8, 7.0 62.6\n",
"Q 7.0 63.4, 7.3 63.9\n",
"Q 7.7 64.3, 8.4 64.3\n",
"Q 8.8 64.3, 9.4 64.0\n",
"L 9.6 64.5\n",
"Q 9.3 64.6, 9.0 64.7\n",
"Q 8.7 64.8, 8.3 64.8\n",
"Q 7.4 64.8, 6.9 64.2\n",
"Q 6.4 63.7, 6.4 62.6\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-24&#x27; d=&#x27;M 10.1 60.2\n",
"L 10.6 60.2\n",
"L 10.6 64.7\n",
"L 10.1 64.7\n",
"L 10.1 60.2\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-28&#x27; d=&#x27;M 83.1 72.2\n",
"L 84.5 74.5\n",
"Q 84.6 74.7, 84.9 75.1\n",
"Q 85.1 75.5, 85.1 75.5\n",
"L 85.1 72.2\n",
"L 85.7 72.2\n",
"L 85.7 76.5\n",
"L 85.1 76.5\n",
"L 83.6 74.0\n",
"Q 83.4 73.7, 83.2 73.4\n",
"Q 83.1 73.1, 83.0 72.9\n",
"L 83.0 76.5\n",
"L 82.4 76.5\n",
"L 82.4 72.2\n",
"L 83.1 72.2\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;/svg&gt;\n",
"&lt;/div&gt;\n",
"&lt;div class=&quot;data copy-me data-mols2grid-id&quot;&gt;6&lt;/div&gt;\n",
"&lt;/div&gt;\n",
"&lt;/td&gt;\n",
"&lt;td class=&quot;col-2 m2g-tooltip&quot; tabindex=&quot;0&quot; data-toggle=&quot;popover&quot; data-content=&quot;&amp;lt;strong&amp;gt;chembl_id&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;CHEMBL3818870&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;canonical_smiles&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;OCCCCCCNc1nccc(NCCCNc2ccnc3cc(Cl)ccc23)n1&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;InChI=1S/C22H29ClN6O/c23-17-6-7-18-19(8-13-25-20(18)16-17)24-11-5-12-26-21-9-14-28-22(29-21)27-10-3-1-2-4-15-30/h6-9,13-14,16,30H,1-5,10-12,15H2,(H,24,25)(H2,26,27,28,29)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi_key&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;DMICPIIRAQPQDK-UHFFFAOYSA-N&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;MW&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;428.9680000000002&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;numpy_fp&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;[0 0 0 ... 0 0 0]&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;cluster&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;478425&amp;lt;/span&amp;gt;&quot;&gt;\n",
"&lt;div class=&quot;m2g-cell-7&quot;&gt;\n",
"&lt;div class=&quot;data data-img&quot;&gt;&lt;?xml version=&#x27;1.0&#x27; encoding=&#x27;iso-8859-1&#x27;?&gt;\n",
"&lt;svg version=&#x27;1.1&#x27; baseProfile=&#x27;full&#x27;\n",
" xmlns=&#x27;http://www.w3.org/2000/svg&#x27;\n",
" xmlns:rdkit=&#x27;http://www.rdkit.org/xml&#x27;\n",
" xmlns:xlink=&#x27;http://www.w3.org/1999/xlink&#x27;\n",
" xml:space=&#x27;preserve&#x27;\n",
"width=&#x27;150px&#x27; height=&#x27;150px&#x27; viewBox=&#x27;0 0 150 150&#x27;&gt;\n",
"&lt;!-- END OF HEADER --&gt;\n",
"&lt;rect style=&#x27;opacity:1.0;fill:#FFFFFF;stroke:none&#x27; width=&#x27;150.0&#x27; height=&#x27;150.0&#x27; x=&#x27;0.0&#x27; y=&#x27;0.0&#x27;&gt; &lt;/rect&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 135.7,77.0 L 133.6,75.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 133.6,75.8 L 131.5,74.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-1 atom-1 atom-2&#x27; d=&#x27;M 131.5,74.6 L 125.1,78.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-2 atom-2 atom-3&#x27; d=&#x27;M 125.1,78.3 L 118.7,74.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-3 atom-3 atom-4&#x27; d=&#x27;M 118.7,74.6 L 112.3,78.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 112.3,78.2 L 105.9,74.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 105.9,74.5 L 99.5,78.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 99.5,78.2 L 97.3,76.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 97.3,76.9 L 95.0,75.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 91.3,75.5 L 89.0,76.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 89.0,76.8 L 86.8,78.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 86.8,78.1 L 86.8,80.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 86.8,80.6 L 86.8,83.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 85.7,78.8 L 85.7,81.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 85.7,81.0 L 85.6,83.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 84.9,86.6 L 82.6,87.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 82.6,87.9 L 80.3,89.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 80.3,89.2 L 74.0,85.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 80.3,87.9 L 75.1,84.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 74.0,85.5 L 74.0,78.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 74.0,78.1 L 71.7,76.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 71.7,76.8 L 69.5,75.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 65.8,75.4 L 63.5,76.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 63.5,76.7 L 61.2,78.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 61.2,78.0 L 54.8,74.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 54.8,74.3 L 48.4,78.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 48.4,78.0 L 46.2,76.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 46.2,76.7 L 43.9,75.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 40.2,75.3 L 37.9,76.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 37.9,76.6 L 35.7,77.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 35.7,77.9 L 35.6,85.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 34.6,78.6 L 34.5,84.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 35.6,85.3 L 29.2,89.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 29.2,89.0 L 27.0,87.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 27.0,87.7 L 24.7,86.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 29.3,87.7 L 27.3,86.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 27.3,86.6 L 25.3,85.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 22.9,82.9 L 22.9,80.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 22.9,80.4 L 22.9,77.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-22 atom-23&#x27; d=&#x27;M 22.9,77.9 L 16.5,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-22 atom-23&#x27; d=&#x27;M 22.9,76.6 L 17.6,73.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-23 atom-24&#x27; d=&#x27;M 16.5,74.2 L 16.6,66.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-24 atom-25&#x27; d=&#x27;M 16.6,66.8 L 13.6,65.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-24 atom-25&#x27; d=&#x27;M 13.6,65.1 L 10.7,63.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-24 atom-26&#x27; d=&#x27;M 16.6,66.8 L 23.0,63.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-24 atom-26&#x27; d=&#x27;M 17.7,67.5 L 23.0,64.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-26 atom-27&#x27; d=&#x27;M 23.0,63.2 L 29.3,66.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-27 atom-28&#x27; d=&#x27;M 29.3,66.9 L 29.3,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-27 atom-28&#x27; d=&#x27;M 28.2,67.5 L 28.2,73.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-12 atom-29&#x27; d=&#x27;M 74.0,78.1 L 76.3,76.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-12 atom-29&#x27; d=&#x27;M 76.3,76.8 L 78.5,75.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-12 atom-29&#x27; d=&#x27;M 75.1,78.7 L 77.1,77.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-12 atom-29&#x27; d=&#x27;M 77.1,77.6 L 79.1,76.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-29 atom-29 atom-8&#x27; d=&#x27;M 82.3,75.5 L 84.5,76.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-29 atom-29 atom-8&#x27; d=&#x27;M 84.5,76.8 L 86.8,78.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-30 atom-28 atom-18&#x27; d=&#x27;M 29.3,74.2 L 35.7,77.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-31 atom-28 atom-22&#x27; d=&#x27;M 29.3,74.2 L 22.9,77.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path d=&#x27;M 131.6,74.7 L 131.5,74.6 L 131.2,74.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 125.4,78.1 L 125.1,78.3 L 124.8,78.1&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 119.0,74.7 L 118.7,74.6 L 118.4,74.7&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 112.6,78.0 L 112.3,78.2 L 112.0,78.0&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 106.3,74.7 L 105.9,74.5 L 105.6,74.7&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 99.9,78.0 L 99.5,78.2 L 99.4,78.1&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 80.5,89.1 L 80.3,89.2 L 80.0,89.0&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 74.3,85.6 L 74.0,85.5 L 74.0,85.1&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 61.3,78.0 L 61.2,78.0 L 60.9,77.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 55.2,74.5 L 54.8,74.3 L 54.5,74.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 48.8,77.8 L 48.4,78.0 L 48.3,77.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 35.7,85.0 L 35.6,85.3 L 35.3,85.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 29.6,88.8 L 29.2,89.0 L 29.1,88.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 16.8,74.4 L 16.5,74.2 L 16.5,73.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 22.6,63.3 L 23.0,63.2 L 23.3,63.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 29.0,66.7 L 29.3,66.9 L 29.3,67.2&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 135.9 78.3\n",
"Q 135.9 77.3, 136.4 76.7\n",
"Q 136.9 76.2, 137.9 76.2\n",
"Q 138.8 76.2, 139.3 76.7\n",
"Q 139.8 77.3, 139.8 78.3\n",
"Q 139.8 79.4, 139.3 79.9\n",
"Q 138.8 80.5, 137.9 80.5\n",
"Q 136.9 80.5, 136.4 79.9\n",
"Q 135.9 79.4, 135.9 78.3\n",
"M 137.9 80.0\n",
"Q 138.5 80.0, 138.9 79.6\n",
"Q 139.2 79.2, 139.2 78.3\n",
"Q 139.2 77.5, 138.9 77.1\n",
"Q 138.5 76.6, 137.9 76.6\n",
"Q 137.2 76.6, 136.9 77.1\n",
"Q 136.5 77.5, 136.5 78.3\n",
"Q 136.5 79.2, 136.9 79.6\n",
"Q 137.2 80.0, 137.9 80.0\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 140.5 76.2\n",
"L 141.1 76.2\n",
"L 141.1 78.0\n",
"L 143.2 78.0\n",
"L 143.2 76.2\n",
"L 143.8 76.2\n",
"L 143.8 80.5\n",
"L 143.2 80.5\n",
"L 143.2 78.5\n",
"L 141.1 78.5\n",
"L 141.1 80.5\n",
"L 140.5 80.5\n",
"L 140.5 76.2\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-7&#x27; d=&#x27;M 92.2 72.3\n",
"L 93.6 74.6\n",
"Q 93.8 74.8, 94.0 75.2\n",
"Q 94.2 75.6, 94.2 75.6\n",
"L 94.2 72.3\n",
"L 94.8 72.3\n",
"L 94.8 76.6\n",
"L 94.2 76.6\n",
"L 92.7 74.1\n",
"Q 92.5 73.8, 92.3 73.5\n",
"Q 92.2 73.2, 92.1 73.1\n",
"L 92.1 76.6\n",
"L 91.6 76.6\n",
"L 91.6 72.3\n",
"L 92.2 72.3\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-7&#x27; d=&#x27;M 91.5 67.7\n",
"L 92.1 67.7\n",
"L 92.1 69.5\n",
"L 94.3 69.5\n",
"L 94.3 67.7\n",
"L 94.8 67.7\n",
"L 94.8 71.9\n",
"L 94.3 71.9\n",
"L 94.3 70.0\n",
"L 92.1 70.0\n",
"L 92.1 71.9\n",
"L 91.5 71.9\n",
"L 91.5 67.7\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-9&#x27; d=&#x27;M 85.8 83.4\n",
"L 87.2 85.6\n",
"Q 87.3 85.9, 87.6 86.3\n",
"Q 87.8 86.7, 87.8 86.7\n",
"L 87.8 83.4\n",
"L 88.4 83.4\n",
"L 88.4 87.6\n",
"L 87.8 87.6\n",
"L 86.3 85.2\n",
"Q 86.1 84.9, 85.9 84.6\n",
"Q 85.7 84.2, 85.7 84.1\n",
"L 85.7 87.6\n",
"L 85.1 87.6\n",
"L 85.1 83.4\n",
"L 85.8 83.4\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-13&#x27; d=&#x27;M 66.7 72.3\n",
"L 68.1 74.5\n",
"Q 68.2 74.7, 68.4 75.1\n",
"Q 68.7 75.5, 68.7 75.6\n",
"L 68.7 72.3\n",
"L 69.2 72.3\n",
"L 69.2 76.5\n",
"L 68.7 76.5\n",
"L 67.2 74.0\n",
"Q 67.0 73.8, 66.8 73.4\n",
"Q 66.6 73.1, 66.6 73.0\n",
"L 66.6 76.5\n",
"L 66.0 76.5\n",
"L 66.0 72.3\n",
"L 66.7 72.3\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-13&#x27; d=&#x27;M 66.0 67.6\n",
"L 66.5 67.6\n",
"L 66.5 69.4\n",
"L 68.7 69.4\n",
"L 68.7 67.6\n",
"L 69.3 67.6\n",
"L 69.3 71.8\n",
"L 68.7 71.8\n",
"L 68.7 69.9\n",
"L 66.5 69.9\n",
"L 66.5 71.8\n",
"L 66.0 71.8\n",
"L 66.0 67.6\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-17&#x27; d=&#x27;M 41.1 72.2\n",
"L 42.5 74.4\n",
"Q 42.7 74.6, 42.9 75.0\n",
"Q 43.1 75.4, 43.1 75.5\n",
"L 43.1 72.2\n",
"L 43.7 72.2\n",
"L 43.7 76.4\n",
"L 43.1 76.4\n",
"L 41.6 73.9\n",
"Q 41.4 73.7, 41.3 73.3\n",
"Q 41.1 73.0, 41.0 72.9\n",
"L 41.0 76.4\n",
"L 40.5 76.4\n",
"L 40.5 72.2\n",
"L 41.1 72.2\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-17&#x27; d=&#x27;M 40.4 67.5\n",
"L 41.0 67.5\n",
"L 41.0 69.3\n",
"L 43.2 69.3\n",
"L 43.2 67.5\n",
"L 43.7 67.5\n",
"L 43.7 71.7\n",
"L 43.2 71.7\n",
"L 43.2 69.8\n",
"L 41.0 69.8\n",
"L 41.0 71.7\n",
"L 40.4 71.7\n",
"L 40.4 67.5\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-21&#x27; d=&#x27;M 21.9 83.2\n",
"L 23.3 85.4\n",
"Q 23.5 85.6, 23.7 86.0\n",
"Q 23.9 86.4, 23.9 86.5\n",
"L 23.9 83.2\n",
"L 24.5 83.2\n",
"L 24.5 87.4\n",
"L 23.9 87.4\n",
"L 22.4 84.9\n",
"Q 22.2 84.7, 22.1 84.3\n",
"Q 21.9 84.0, 21.8 83.9\n",
"L 21.8 87.4\n",
"L 21.3 87.4\n",
"L 21.3 83.2\n",
"L 21.9 83.2\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-25&#x27; d=&#x27;M 6.2 63.3\n",
"Q 6.2 62.2, 6.7 61.6\n",
"Q 7.2 61.1, 8.1 61.1\n",
"Q 9.0 61.1, 9.5 61.7\n",
"L 9.1 62.0\n",
"Q 8.7 61.6, 8.1 61.6\n",
"Q 7.5 61.6, 7.1 62.0\n",
"Q 6.8 62.4, 6.8 63.3\n",
"Q 6.8 64.1, 7.2 64.5\n",
"Q 7.5 65.0, 8.2 65.0\n",
"Q 8.7 65.0, 9.2 64.7\n",
"L 9.4 65.1\n",
"Q 9.2 65.3, 8.8 65.4\n",
"Q 8.5 65.4, 8.1 65.4\n",
"Q 7.2 65.4, 6.7 64.9\n",
"Q 6.2 64.3, 6.2 63.3\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-25&#x27; d=&#x27;M 9.9 60.8\n",
"L 10.5 60.8\n",
"L 10.5 65.4\n",
"L 9.9 65.4\n",
"L 9.9 60.8\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-29&#x27; d=&#x27;M 79.5 72.3\n",
"L 80.9 74.5\n",
"Q 81.0 74.8, 81.2 75.2\n",
"Q 81.4 75.6, 81.4 75.6\n",
"L 81.4 72.3\n",
"L 82.0 72.3\n",
"L 82.0 76.5\n",
"L 81.4 76.5\n",
"L 79.9 74.1\n",
"Q 79.8 73.8, 79.6 73.5\n",
"Q 79.4 73.1, 79.3 73.0\n",
"L 79.3 76.5\n",
"L 78.8 76.5\n",
"L 78.8 72.3\n",
"L 79.5 72.3\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;/svg&gt;\n",
"&lt;/div&gt;\n",
"&lt;div class=&quot;data copy-me data-mols2grid-id&quot;&gt;7&lt;/div&gt;\n",
"&lt;/div&gt;\n",
"&lt;/td&gt;\n",
"&lt;td class=&quot;col-3 m2g-tooltip&quot; tabindex=&quot;0&quot; data-toggle=&quot;popover&quot; data-content=&quot;&amp;lt;strong&amp;gt;chembl_id&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;CHEMBL3819147&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;canonical_smiles&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;OCCCNc1nccc(NCCCCNc2ccnc3cc(Cl)ccc23)n1&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;InChI=1S/C20H25ClN6O/c21-15-4-5-16-17(6-11-23-18(16)14-15)22-8-1-2-9-24-19-7-12-26-20(27-19)25-10-3-13-28/h4-7,11-12,14,28H,1-3,8-10,13H2,(H,22,23)(H2,24,25,26,27)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi_key&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;BQKJOCMAOFTMAY-UHFFFAOYSA-N&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;MW&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;400.9140000000001&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;numpy_fp&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;[0 0 0 ... 0 0 0]&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;cluster&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;478425&amp;lt;/span&amp;gt;&quot;&gt;\n",
"&lt;div class=&quot;m2g-cell-8&quot;&gt;\n",
"&lt;div class=&quot;data data-img&quot;&gt;&lt;?xml version=&#x27;1.0&#x27; encoding=&#x27;iso-8859-1&#x27;?&gt;\n",
"&lt;svg version=&#x27;1.1&#x27; baseProfile=&#x27;full&#x27;\n",
" xmlns=&#x27;http://www.w3.org/2000/svg&#x27;\n",
" xmlns:rdkit=&#x27;http://www.rdkit.org/xml&#x27;\n",
" xmlns:xlink=&#x27;http://www.w3.org/1999/xlink&#x27;\n",
" xml:space=&#x27;preserve&#x27;\n",
"width=&#x27;150px&#x27; height=&#x27;150px&#x27; viewBox=&#x27;0 0 150 150&#x27;&gt;\n",
"&lt;!-- END OF HEADER --&gt;\n",
"&lt;rect style=&#x27;opacity:1.0;fill:#FFFFFF;stroke:none&#x27; width=&#x27;150.0&#x27; height=&#x27;150.0&#x27; x=&#x27;0.0&#x27; y=&#x27;0.0&#x27;&gt; &lt;/rect&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 135.3,72.7 L 132.9,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 132.9,74.1 L 130.4,75.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-1 atom-1 atom-2&#x27; d=&#x27;M 130.4,75.5 L 123.4,71.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-2 atom-2 atom-3&#x27; d=&#x27;M 123.4,71.4 L 116.3,75.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-3 atom-3 atom-4&#x27; d=&#x27;M 116.3,75.5 L 113.7,74.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-3 atom-3 atom-4&#x27; d=&#x27;M 113.7,74.0 L 111.1,72.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 107.4,72.6 L 104.8,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 104.8,74.1 L 102.2,75.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 102.2,75.6 L 102.2,78.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 102.2,78.5 L 102.2,81.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 101.0,76.3 L 101.0,78.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 101.0,78.8 L 101.0,81.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 100.4,84.8 L 97.8,86.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 97.8,86.3 L 95.2,87.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 95.2,87.8 L 88.1,83.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 95.2,86.4 L 89.4,83.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 88.1,83.8 L 88.1,75.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 88.1,75.6 L 85.5,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 85.5,74.1 L 82.9,72.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 79.2,72.7 L 76.6,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 76.6,74.2 L 74.0,75.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 74.0,75.7 L 66.9,71.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 66.9,71.6 L 59.9,75.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 59.9,75.7 L 52.8,71.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 52.8,71.7 L 50.3,73.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 50.3,73.2 L 47.7,74.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 43.9,74.7 L 41.3,73.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 41.3,73.2 L 38.7,71.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 38.7,71.7 L 38.7,63.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 37.5,71.0 L 37.5,64.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 38.7,63.6 L 31.6,59.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 31.6,59.5 L 29.0,61.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 29.0,61.0 L 26.5,62.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 31.6,61.0 L 29.4,62.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 29.4,62.3 L 27.1,63.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 24.6,66.0 L 24.6,68.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 24.6,68.9 L 24.6,71.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 24.6,71.8 L 17.6,75.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 24.6,73.2 L 18.8,76.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 17.6,75.9 L 17.6,84.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-22 atom-23&#x27; d=&#x27;M 17.6,84.0 L 14.4,85.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-22 atom-23&#x27; d=&#x27;M 14.4,85.9 L 11.1,87.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-22 atom-24&#x27; d=&#x27;M 17.6,84.0 L 24.7,88.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-22 atom-24&#x27; d=&#x27;M 18.8,83.3 L 24.7,86.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-24 atom-25&#x27; d=&#x27;M 24.7,88.1 L 31.7,84.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-25 atom-26&#x27; d=&#x27;M 31.7,84.0 L 31.7,75.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-25 atom-26&#x27; d=&#x27;M 30.5,83.3 L 30.5,76.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-9 atom-27&#x27; d=&#x27;M 88.1,75.6 L 90.7,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-9 atom-27&#x27; d=&#x27;M 90.7,74.1 L 93.3,72.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-9 atom-27&#x27; d=&#x27;M 89.3,76.3 L 91.6,75.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-9 atom-27&#x27; d=&#x27;M 91.6,75.0 L 93.9,73.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-27 atom-5&#x27; d=&#x27;M 97.0,72.6 L 99.6,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-27 atom-5&#x27; d=&#x27;M 99.6,74.1 L 102.2,75.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-26 atom-16&#x27; d=&#x27;M 31.7,75.8 L 38.7,71.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-29 atom-26 atom-20&#x27; d=&#x27;M 31.7,75.8 L 24.6,71.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path d=&#x27;M 130.6,75.4 L 130.4,75.5 L 130.1,75.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 123.7,71.6 L 123.4,71.4 L 123.0,71.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 116.7,75.3 L 116.3,75.5 L 116.2,75.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 95.3,87.7 L 95.2,87.8 L 94.9,87.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 88.5,84.0 L 88.1,83.8 L 88.1,83.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 74.1,75.6 L 74.0,75.7 L 73.7,75.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 67.3,71.8 L 66.9,71.6 L 66.6,71.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 60.3,75.5 L 59.9,75.7 L 59.5,75.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 53.2,71.9 L 52.8,71.7 L 52.7,71.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 38.7,64.0 L 38.7,63.6 L 38.3,63.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 32.0,59.7 L 31.6,59.5 L 31.5,59.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 17.9,75.7 L 17.6,75.9 L 17.6,76.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 24.3,87.9 L 24.7,88.1 L 25.0,87.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 31.4,84.2 L 31.7,84.0 L 31.7,83.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 135.5 71.4\n",
"Q 135.5 70.4, 136.0 69.8\n",
"Q 136.5 69.2, 137.5 69.2\n",
"Q 138.4 69.2, 138.9 69.8\n",
"Q 139.4 70.4, 139.4 71.4\n",
"Q 139.4 72.4, 138.9 73.0\n",
"Q 138.4 73.6, 137.5 73.6\n",
"Q 136.5 73.6, 136.0 73.0\n",
"Q 135.5 72.4, 135.5 71.4\n",
"M 137.5 73.1\n",
"Q 138.1 73.1, 138.5 72.7\n",
"Q 138.8 72.2, 138.8 71.4\n",
"Q 138.8 70.6, 138.5 70.1\n",
"Q 138.1 69.7, 137.5 69.7\n",
"Q 136.8 69.7, 136.5 70.1\n",
"Q 136.1 70.6, 136.1 71.4\n",
"Q 136.1 72.3, 136.5 72.7\n",
"Q 136.8 73.1, 137.5 73.1\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 140.1 69.3\n",
"L 140.7 69.3\n",
"L 140.7 71.1\n",
"L 142.8 71.1\n",
"L 142.8 69.3\n",
"L 143.4 69.3\n",
"L 143.4 73.5\n",
"L 142.8 73.5\n",
"L 142.8 71.6\n",
"L 140.7 71.6\n",
"L 140.7 73.5\n",
"L 140.1 73.5\n",
"L 140.1 69.3\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-4&#x27; d=&#x27;M 108.3 69.4\n",
"L 109.7 71.6\n",
"Q 109.9 71.8, 110.1 72.2\n",
"Q 110.3 72.6, 110.3 72.7\n",
"L 110.3 69.4\n",
"L 110.9 69.4\n",
"L 110.9 73.6\n",
"L 110.3 73.6\n",
"L 108.8 71.1\n",
"Q 108.6 70.9, 108.4 70.5\n",
"Q 108.3 70.2, 108.2 70.1\n",
"L 108.2 73.6\n",
"L 107.7 73.6\n",
"L 107.7 69.4\n",
"L 108.3 69.4\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-4&#x27; d=&#x27;M 107.6 64.7\n",
"L 108.2 64.7\n",
"L 108.2 66.5\n",
"L 110.4 66.5\n",
"L 110.4 64.7\n",
"L 110.9 64.7\n",
"L 110.9 68.9\n",
"L 110.4 68.9\n",
"L 110.4 67.0\n",
"L 108.2 67.0\n",
"L 108.2 68.9\n",
"L 107.6 68.9\n",
"L 107.6 64.7\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-6&#x27; d=&#x27;M 101.3 81.6\n",
"L 102.7 83.9\n",
"Q 102.8 84.1, 103.1 84.5\n",
"Q 103.3 84.9, 103.3 84.9\n",
"L 103.3 81.6\n",
"L 103.9 81.6\n",
"L 103.9 85.8\n",
"L 103.3 85.8\n",
"L 101.8 83.4\n",
"Q 101.6 83.1, 101.4 82.8\n",
"Q 101.3 82.4, 101.2 82.3\n",
"L 101.2 85.8\n",
"L 100.6 85.8\n",
"L 100.6 81.6\n",
"L 101.3 81.6\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-10&#x27; d=&#x27;M 80.1 69.5\n",
"L 81.5 71.7\n",
"Q 81.6 71.9, 81.9 72.3\n",
"Q 82.1 72.7, 82.1 72.8\n",
"L 82.1 69.5\n",
"L 82.7 69.5\n",
"L 82.7 73.7\n",
"L 82.1 73.7\n",
"L 80.6 71.2\n",
"Q 80.4 71.0, 80.2 70.6\n",
"Q 80.0 70.3, 80.0 70.2\n",
"L 80.0 73.7\n",
"L 79.4 73.7\n",
"L 79.4 69.5\n",
"L 80.1 69.5\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-10&#x27; d=&#x27;M 79.4 64.8\n",
"L 80.0 64.8\n",
"L 80.0 66.6\n",
"L 82.1 66.6\n",
"L 82.1 64.8\n",
"L 82.7 64.8\n",
"L 82.7 69.0\n",
"L 82.1 69.0\n",
"L 82.1 67.1\n",
"L 80.0 67.1\n",
"L 80.0 69.0\n",
"L 79.4 69.0\n",
"L 79.4 64.8\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-15&#x27; d=&#x27;M 44.9 73.7\n",
"L 46.2 75.9\n",
"Q 46.4 76.1, 46.6 76.5\n",
"Q 46.8 76.9, 46.8 77.0\n",
"L 46.8 73.7\n",
"L 47.4 73.7\n",
"L 47.4 77.9\n",
"L 46.8 77.9\n",
"L 45.3 75.4\n",
"Q 45.2 75.2, 45.0 74.8\n",
"Q 44.8 74.5, 44.7 74.4\n",
"L 44.7 77.9\n",
"L 44.2 77.9\n",
"L 44.2 73.7\n",
"L 44.9 73.7\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-15&#x27; d=&#x27;M 44.1 78.3\n",
"L 44.7 78.3\n",
"L 44.7 80.1\n",
"L 46.9 80.1\n",
"L 46.9 78.3\n",
"L 47.5 78.3\n",
"L 47.5 82.6\n",
"L 46.9 82.6\n",
"L 46.9 80.6\n",
"L 44.7 80.6\n",
"L 44.7 82.6\n",
"L 44.1 82.6\n",
"L 44.1 78.3\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-19&#x27; d=&#x27;M 23.6 61.5\n",
"L 25.0 63.8\n",
"Q 25.2 64.0, 25.4 64.4\n",
"Q 25.6 64.8, 25.6 64.8\n",
"L 25.6 61.5\n",
"L 26.2 61.5\n",
"L 26.2 65.8\n",
"L 25.6 65.8\n",
"L 24.1 63.3\n",
"Q 23.9 63.0, 23.8 62.7\n",
"Q 23.6 62.4, 23.5 62.3\n",
"L 23.5 65.8\n",
"L 23.0 65.8\n",
"L 23.0 61.5\n",
"L 23.6 61.5\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-23&#x27; d=&#x27;M 6.6 88.3\n",
"Q 6.6 87.2, 7.1 86.7\n",
"Q 7.6 86.1, 8.5 86.1\n",
"Q 9.4 86.1, 9.9 86.7\n",
"L 9.5 87.1\n",
"Q 9.1 86.6, 8.5 86.6\n",
"Q 7.9 86.6, 7.5 87.0\n",
"Q 7.2 87.5, 7.2 88.3\n",
"Q 7.2 89.1, 7.5 89.5\n",
"Q 7.9 90.0, 8.6 90.0\n",
"Q 9.0 90.0, 9.6 89.7\n",
"L 9.8 90.1\n",
"Q 9.5 90.3, 9.2 90.4\n",
"Q 8.9 90.5, 8.5 90.5\n",
"Q 7.6 90.5, 7.1 89.9\n",
"Q 6.6 89.3, 6.6 88.3\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-23&#x27; d=&#x27;M 10.3 85.9\n",
"L 10.8 85.9\n",
"L 10.8 90.4\n",
"L 10.3 90.4\n",
"L 10.3 85.9\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-27&#x27; d=&#x27;M 94.2 69.4\n",
"L 95.6 71.7\n",
"Q 95.7 71.9, 96.0 72.3\n",
"Q 96.2 72.7, 96.2 72.7\n",
"L 96.2 69.4\n",
"L 96.8 69.4\n",
"L 96.8 73.7\n",
"L 96.2 73.7\n",
"L 94.7 71.2\n",
"Q 94.5 70.9, 94.3 70.6\n",
"Q 94.2 70.2, 94.1 70.1\n",
"L 94.1 73.7\n",
"L 93.5 73.7\n",
"L 93.5 69.4\n",
"L 94.2 69.4\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;/svg&gt;\n",
"&lt;/div&gt;\n",
"&lt;div class=&quot;data copy-me data-mols2grid-id&quot;&gt;8&lt;/div&gt;\n",
"&lt;/div&gt;\n",
"&lt;/td&gt;\n",
"&lt;td class=&quot;col-4 m2g-tooltip&quot; tabindex=&quot;0&quot; data-toggle=&quot;popover&quot; data-content=&quot;&amp;lt;strong&amp;gt;chembl_id&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;CHEMBL3818317&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;canonical_smiles&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;OCCCCNc1nccc(NCCCCNc2ccnc3cc(Cl)ccc23)n1&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;InChI=1S/C21H27ClN6O/c22-16-5-6-17-18(7-12-24-19(17)15-16)23-9-1-2-10-25-20-8-13-27-21(28-20)26-11-3-4-14-29/h5-8,12-13,15,29H,1-4,9-11,14H2,(H,23,24)(H2,25,26,27,28)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi_key&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;ZDULYBJJDRJAGU-UHFFFAOYSA-N&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;MW&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;414.94100000000003&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;numpy_fp&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;[0 0 0 ... 0 0 0]&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;cluster&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;478425&amp;lt;/span&amp;gt;&quot;&gt;\n",
"&lt;div class=&quot;m2g-cell-9&quot;&gt;\n",
"&lt;div class=&quot;data data-img&quot;&gt;&lt;?xml version=&#x27;1.0&#x27; encoding=&#x27;iso-8859-1&#x27;?&gt;\n",
"&lt;svg version=&#x27;1.1&#x27; baseProfile=&#x27;full&#x27;\n",
" xmlns=&#x27;http://www.w3.org/2000/svg&#x27;\n",
" xmlns:rdkit=&#x27;http://www.rdkit.org/xml&#x27;\n",
" xmlns:xlink=&#x27;http://www.w3.org/1999/xlink&#x27;\n",
" xml:space=&#x27;preserve&#x27;\n",
"width=&#x27;150px&#x27; height=&#x27;150px&#x27; viewBox=&#x27;0 0 150 150&#x27;&gt;\n",
"&lt;!-- END OF HEADER --&gt;\n",
"&lt;rect style=&#x27;opacity:1.0;fill:#FFFFFF;stroke:none&#x27; width=&#x27;150.0&#x27; height=&#x27;150.0&#x27; x=&#x27;0.0&#x27; y=&#x27;0.0&#x27;&gt; &lt;/rect&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 135.5,74.1 L 133.2,72.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 133.2,72.8 L 131.0,71.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-1 atom-1 atom-2&#x27; d=&#x27;M 131.0,71.5 L 124.3,75.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-2 atom-2 atom-3&#x27; d=&#x27;M 124.3,75.4 L 117.6,71.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-3 atom-3 atom-4&#x27; d=&#x27;M 117.6,71.6 L 110.9,75.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 110.9,75.4 L 108.4,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 108.4,74.1 L 106.0,72.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 102.3,72.7 L 99.9,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 99.9,74.1 L 97.5,75.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 97.5,75.5 L 97.5,78.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 97.5,78.2 L 97.5,80.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 96.3,76.2 L 96.3,78.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 96.3,78.5 L 96.3,80.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 95.6,84.3 L 93.2,85.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 93.2,85.7 L 90.8,87.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 90.8,87.1 L 84.1,83.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 90.8,85.8 L 85.2,82.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 84.1,83.3 L 84.1,75.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 84.1,75.5 L 81.6,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 81.6,74.2 L 79.2,72.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 75.5,72.8 L 73.1,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 73.1,74.2 L 70.7,75.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 70.7,75.6 L 63.9,71.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 63.9,71.7 L 57.2,75.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 57.2,75.6 L 50.5,71.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 50.5,71.8 L 48.1,73.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 48.1,73.2 L 45.7,74.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 42.0,74.6 L 39.5,73.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 39.5,73.2 L 37.1,71.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 37.1,71.8 L 37.1,64.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 36.0,71.2 L 35.9,64.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 37.1,64.1 L 30.4,60.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 30.4,60.3 L 28.0,61.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 28.0,61.7 L 25.6,63.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 30.4,61.6 L 28.3,62.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 28.3,62.8 L 26.1,64.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 23.7,66.5 L 23.7,69.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 23.7,69.2 L 23.7,71.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 23.7,71.9 L 17.0,75.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 23.7,73.2 L 18.2,76.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-22 atom-23&#x27; d=&#x27;M 17.0,75.8 L 17.1,83.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-23 atom-24&#x27; d=&#x27;M 17.1,83.5 L 14.0,85.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-23 atom-24&#x27; d=&#x27;M 14.0,85.3 L 10.9,87.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-23 atom-25&#x27; d=&#x27;M 17.1,83.5 L 23.8,87.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-23 atom-25&#x27; d=&#x27;M 18.2,82.8 L 23.8,86.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-25 atom-26&#x27; d=&#x27;M 23.8,87.4 L 30.5,83.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-26 atom-27&#x27; d=&#x27;M 30.5,83.5 L 30.4,75.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-26 atom-27&#x27; d=&#x27;M 29.3,82.8 L 29.3,76.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-10 atom-28&#x27; d=&#x27;M 84.1,75.5 L 86.5,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-10 atom-28&#x27; d=&#x27;M 86.5,74.1 L 88.9,72.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-10 atom-28&#x27; d=&#x27;M 85.2,76.2 L 87.3,75.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-10 atom-28&#x27; d=&#x27;M 87.3,75.0 L 89.5,73.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-28 atom-6&#x27; d=&#x27;M 92.6,72.7 L 95.0,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-28 atom-6&#x27; d=&#x27;M 95.0,74.1 L 97.5,75.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-29 atom-27 atom-17&#x27; d=&#x27;M 30.4,75.7 L 37.1,71.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-30 atom-27 atom-21&#x27; d=&#x27;M 30.4,75.7 L 23.7,71.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path d=&#x27;M 131.1,71.6 L 131.0,71.5 L 130.6,71.7&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 124.6,75.2 L 124.3,75.4 L 123.9,75.2&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 117.9,71.7 L 117.6,71.6 L 117.2,71.7&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 111.2,75.3 L 110.9,75.4 L 110.8,75.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 90.9,87.1 L 90.8,87.1 L 90.5,86.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 84.4,83.5 L 84.1,83.3 L 84.1,82.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 70.8,75.5 L 70.7,75.6 L 70.3,75.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 64.3,71.9 L 63.9,71.7 L 63.6,71.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 57.6,75.4 L 57.2,75.6 L 56.9,75.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 50.9,72.0 L 50.5,71.8 L 50.4,71.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 37.1,64.5 L 37.1,64.1 L 36.8,63.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 30.7,60.4 L 30.4,60.3 L 30.3,60.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 17.4,75.6 L 17.0,75.8 L 17.0,76.2&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 23.4,87.2 L 23.8,87.4 L 24.1,87.2&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 30.1,83.7 L 30.5,83.5 L 30.5,83.1&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 135.7 75.4\n",
"Q 135.7 74.3, 136.2 73.8\n",
"Q 136.7 73.2, 137.7 73.2\n",
"Q 138.6 73.2, 139.1 73.8\n",
"Q 139.6 74.3, 139.6 75.4\n",
"Q 139.6 76.4, 139.1 77.0\n",
"Q 138.6 77.6, 137.7 77.6\n",
"Q 136.7 77.6, 136.2 77.0\n",
"Q 135.7 76.4, 135.7 75.4\n",
"M 137.7 77.1\n",
"Q 138.3 77.1, 138.7 76.7\n",
"Q 139.0 76.2, 139.0 75.4\n",
"Q 139.0 74.5, 138.7 74.1\n",
"Q 138.3 73.7, 137.7 73.7\n",
"Q 137.0 73.7, 136.7 74.1\n",
"Q 136.3 74.5, 136.3 75.4\n",
"Q 136.3 76.2, 136.7 76.7\n",
"Q 137.0 77.1, 137.7 77.1\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 140.3 73.3\n",
"L 140.9 73.3\n",
"L 140.9 75.1\n",
"L 143.0 75.1\n",
"L 143.0 73.3\n",
"L 143.6 73.3\n",
"L 143.6 77.5\n",
"L 143.0 77.5\n",
"L 143.0 75.5\n",
"L 140.9 75.5\n",
"L 140.9 77.5\n",
"L 140.3 77.5\n",
"L 140.3 73.3\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-5&#x27; d=&#x27;M 103.2 69.5\n",
"L 104.6 71.7\n",
"Q 104.7 71.9, 105.0 72.3\n",
"Q 105.2 72.8, 105.2 72.8\n",
"L 105.2 69.5\n",
"L 105.8 69.5\n",
"L 105.8 73.7\n",
"L 105.2 73.7\n",
"L 103.7 71.3\n",
"Q 103.5 71.0, 103.3 70.6\n",
"Q 103.1 70.3, 103.1 70.2\n",
"L 103.1 73.7\n",
"L 102.5 73.7\n",
"L 102.5 69.5\n",
"L 103.2 69.5\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-5&#x27; d=&#x27;M 102.5 64.8\n",
"L 103.1 64.8\n",
"L 103.1 66.6\n",
"L 105.2 66.6\n",
"L 105.2 64.8\n",
"L 105.8 64.8\n",
"L 105.8 69.1\n",
"L 105.2 69.1\n",
"L 105.2 67.1\n",
"L 103.1 67.1\n",
"L 103.1 69.1\n",
"L 102.5 69.1\n",
"L 102.5 64.8\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-7&#x27; d=&#x27;M 96.6 81.1\n",
"L 97.9 83.4\n",
"Q 98.1 83.6, 98.3 84.0\n",
"Q 98.5 84.4, 98.5 84.4\n",
"L 98.5 81.1\n",
"L 99.1 81.1\n",
"L 99.1 85.4\n",
"L 98.5 85.4\n",
"L 97.0 82.9\n",
"Q 96.9 82.6, 96.7 82.3\n",
"Q 96.5 81.9, 96.4 81.8\n",
"L 96.4 85.4\n",
"L 95.9 85.4\n",
"L 95.9 81.1\n",
"L 96.6 81.1\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-11&#x27; d=&#x27;M 76.4 69.6\n",
"L 77.8 71.8\n",
"Q 77.9 72.0, 78.2 72.4\n",
"Q 78.4 72.8, 78.4 72.9\n",
"L 78.4 69.6\n",
"L 79.0 69.6\n",
"L 79.0 73.8\n",
"L 78.4 73.8\n",
"L 76.9 71.4\n",
"Q 76.7 71.1, 76.5 70.7\n",
"Q 76.3 70.4, 76.3 70.3\n",
"L 76.3 73.8\n",
"L 75.7 73.8\n",
"L 75.7 69.6\n",
"L 76.4 69.6\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-11&#x27; d=&#x27;M 75.7 64.9\n",
"L 76.3 64.9\n",
"L 76.3 66.7\n",
"L 78.4 66.7\n",
"L 78.4 64.9\n",
"L 79.0 64.9\n",
"L 79.0 69.1\n",
"L 78.4 69.1\n",
"L 78.4 67.2\n",
"L 76.3 67.2\n",
"L 76.3 69.1\n",
"L 75.7 69.1\n",
"L 75.7 64.9\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-16&#x27; d=&#x27;M 42.9 73.6\n",
"L 44.3 75.8\n",
"Q 44.4 76.0, 44.7 76.4\n",
"Q 44.9 76.8, 44.9 76.9\n",
"L 44.9 73.6\n",
"L 45.4 73.6\n",
"L 45.4 77.8\n",
"L 44.9 77.8\n",
"L 43.4 75.4\n",
"Q 43.2 75.1, 43.0 74.7\n",
"Q 42.8 74.4, 42.8 74.3\n",
"L 42.8 77.8\n",
"L 42.2 77.8\n",
"L 42.2 73.6\n",
"L 42.9 73.6\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-16&#x27; d=&#x27;M 42.2 78.2\n",
"L 42.8 78.2\n",
"L 42.8 80.0\n",
"L 44.9 80.0\n",
"L 44.9 78.2\n",
"L 45.5 78.2\n",
"L 45.5 82.5\n",
"L 44.9 82.5\n",
"L 44.9 80.5\n",
"L 42.8 80.5\n",
"L 42.8 82.5\n",
"L 42.2 82.5\n",
"L 42.2 78.2\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-20&#x27; d=&#x27;M 22.7 62.0\n",
"L 24.1 64.3\n",
"Q 24.3 64.5, 24.5 64.9\n",
"Q 24.7 65.3, 24.7 65.3\n",
"L 24.7 62.0\n",
"L 25.3 62.0\n",
"L 25.3 66.3\n",
"L 24.7 66.3\n",
"L 23.2 63.8\n",
"Q 23.0 63.5, 22.9 63.2\n",
"Q 22.7 62.9, 22.6 62.8\n",
"L 22.6 66.3\n",
"L 22.1 66.3\n",
"L 22.1 62.0\n",
"L 22.7 62.0\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-24&#x27; d=&#x27;M 6.4 87.6\n",
"Q 6.4 86.5, 6.9 86.0\n",
"Q 7.4 85.4, 8.3 85.4\n",
"Q 9.2 85.4, 9.7 86.0\n",
"L 9.3 86.3\n",
"Q 8.9 85.9, 8.3 85.9\n",
"Q 7.7 85.9, 7.3 86.3\n",
"Q 7.0 86.7, 7.0 87.6\n",
"Q 7.0 88.4, 7.3 88.8\n",
"Q 7.7 89.3, 8.4 89.3\n",
"Q 8.8 89.3, 9.4 89.0\n",
"L 9.6 89.4\n",
"Q 9.3 89.6, 9.0 89.7\n",
"Q 8.7 89.7, 8.3 89.7\n",
"Q 7.4 89.7, 6.9 89.2\n",
"Q 6.4 88.6, 6.4 87.6\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-24&#x27; d=&#x27;M 10.1 85.1\n",
"L 10.6 85.1\n",
"L 10.6 89.7\n",
"L 10.1 89.7\n",
"L 10.1 85.1\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-28&#x27; d=&#x27;M 89.8 69.5\n",
"L 91.2 71.8\n",
"Q 91.3 72.0, 91.6 72.4\n",
"Q 91.8 72.8, 91.8 72.8\n",
"L 91.8 69.5\n",
"L 92.4 69.5\n",
"L 92.4 73.8\n",
"L 91.8 73.8\n",
"L 90.3 71.3\n",
"Q 90.1 71.0, 89.9 70.7\n",
"Q 89.7 70.4, 89.7 70.3\n",
"L 89.7 73.8\n",
"L 89.1 73.8\n",
"L 89.1 69.5\n",
"L 89.8 69.5\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;/svg&gt;\n",
"&lt;/div&gt;\n",
"&lt;div class=&quot;data copy-me data-mols2grid-id&quot;&gt;9&lt;/div&gt;\n",
"&lt;/div&gt;\n",
"&lt;/td&gt;\n",
"&lt;/tr&gt;\n",
"&lt;tr class=&quot;row-2&quot;&gt;\n",
"&lt;td class=&quot;col-0 m2g-tooltip&quot; tabindex=&quot;0&quot; data-toggle=&quot;popover&quot; data-content=&quot;&amp;lt;strong&amp;gt;chembl_id&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;CHEMBL3818376&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;canonical_smiles&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;OCCCCCNc1nccc(NCCCCNc2ccnc3cc(Cl)ccc23)n1&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;InChI=1S/C22H29ClN6O/c23-17-6-7-18-19(8-13-25-20(18)16-17)24-10-3-4-11-26-21-9-14-28-22(29-21)27-12-2-1-5-15-30/h6-9,13-14,16,30H,1-5,10-12,15H2,(H,24,25)(H2,26,27,28,29)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi_key&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;AGGWATLMUAYLGF-UHFFFAOYSA-N&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;MW&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;428.9680000000001&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;numpy_fp&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;[0 0 0 ... 0 0 0]&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;cluster&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;478425&amp;lt;/span&amp;gt;&quot;&gt;\n",
"&lt;div class=&quot;m2g-cell-10&quot;&gt;\n",
"&lt;div class=&quot;data data-img&quot;&gt;&lt;?xml version=&#x27;1.0&#x27; encoding=&#x27;iso-8859-1&#x27;?&gt;\n",
"&lt;svg version=&#x27;1.1&#x27; baseProfile=&#x27;full&#x27;\n",
" xmlns=&#x27;http://www.w3.org/2000/svg&#x27;\n",
" xmlns:rdkit=&#x27;http://www.rdkit.org/xml&#x27;\n",
" xmlns:xlink=&#x27;http://www.w3.org/1999/xlink&#x27;\n",
" xml:space=&#x27;preserve&#x27;\n",
"width=&#x27;150px&#x27; height=&#x27;150px&#x27; viewBox=&#x27;0 0 150 150&#x27;&gt;\n",
"&lt;!-- END OF HEADER --&gt;\n",
"&lt;rect style=&#x27;opacity:1.0;fill:#FFFFFF;stroke:none&#x27; width=&#x27;150.0&#x27; height=&#x27;150.0&#x27; x=&#x27;0.0&#x27; y=&#x27;0.0&#x27;&gt; &lt;/rect&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 135.7,72.8 L 133.6,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 133.6,74.1 L 131.5,75.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-1 atom-1 atom-2&#x27; d=&#x27;M 131.5,75.3 L 125.1,71.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-2 atom-2 atom-3&#x27; d=&#x27;M 125.1,71.6 L 118.7,75.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-3 atom-3 atom-4&#x27; d=&#x27;M 118.7,75.3 L 112.3,71.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 112.3,71.7 L 105.9,75.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 105.9,75.4 L 103.7,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 103.7,74.1 L 101.4,72.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 97.7,72.8 L 95.4,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 95.4,74.1 L 93.2,75.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 93.2,75.4 L 93.2,77.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 93.2,77.9 L 93.2,80.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 92.1,76.1 L 92.1,78.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 92.1,78.2 L 92.1,80.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 91.3,83.9 L 89.1,85.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 89.1,85.2 L 86.8,86.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 86.8,86.5 L 80.4,82.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 86.8,85.2 L 81.5,82.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 80.4,82.8 L 80.4,75.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 80.4,75.5 L 78.1,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 78.1,74.2 L 75.9,72.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 72.1,72.9 L 69.9,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 69.9,74.2 L 67.6,75.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 67.6,75.5 L 61.2,71.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 61.2,71.8 L 54.9,75.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 54.9,75.6 L 48.5,71.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 48.5,71.9 L 46.2,73.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 46.2,73.2 L 43.9,74.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 40.2,74.5 L 37.9,73.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 37.9,73.2 L 35.7,71.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 35.7,71.9 L 35.7,64.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 34.6,71.3 L 34.5,65.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 35.7,64.6 L 29.2,60.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 29.2,60.9 L 27.0,62.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 27.0,62.2 L 24.7,63.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 29.3,62.2 L 27.3,63.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 27.3,63.3 L 25.3,64.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 22.9,67.0 L 22.9,69.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 22.9,69.5 L 22.9,72.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-22 atom-23&#x27; d=&#x27;M 22.9,72.0 L 16.5,75.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-22 atom-23&#x27; d=&#x27;M 22.9,73.3 L 17.6,76.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-23 atom-24&#x27; d=&#x27;M 16.5,75.7 L 16.6,83.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-24 atom-25&#x27; d=&#x27;M 16.6,83.1 L 13.6,84.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-24 atom-25&#x27; d=&#x27;M 13.6,84.8 L 10.7,86.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-24 atom-26&#x27; d=&#x27;M 16.6,83.1 L 23.0,86.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-24 atom-26&#x27; d=&#x27;M 17.7,82.4 L 23.0,85.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-26 atom-27&#x27; d=&#x27;M 23.0,86.7 L 29.3,83.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-27 atom-28&#x27; d=&#x27;M 29.3,83.0 L 29.3,75.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-27 atom-28&#x27; d=&#x27;M 28.2,82.4 L 28.2,76.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-11 atom-29&#x27; d=&#x27;M 80.4,75.5 L 82.7,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-11 atom-29&#x27; d=&#x27;M 82.7,74.1 L 84.9,72.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-11 atom-29&#x27; d=&#x27;M 81.5,76.1 L 83.5,74.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-11 atom-29&#x27; d=&#x27;M 83.5,74.9 L 85.5,73.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-29 atom-29 atom-7&#x27; d=&#x27;M 88.6,72.8 L 90.9,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-29 atom-29 atom-7&#x27; d=&#x27;M 90.9,74.1 L 93.2,75.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-30 atom-28 atom-18&#x27; d=&#x27;M 29.3,75.6 L 35.7,71.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-31 atom-28 atom-22&#x27; d=&#x27;M 29.3,75.6 L 22.9,72.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path d=&#x27;M 131.6,75.2 L 131.5,75.3 L 131.2,75.1&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 125.4,71.8 L 125.1,71.6 L 124.8,71.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 119.0,75.1 L 118.7,75.3 L 118.4,75.1&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 112.6,71.8 L 112.3,71.7 L 112.0,71.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 106.3,75.2 L 105.9,75.4 L 105.8,75.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 86.9,86.4 L 86.8,86.5 L 86.5,86.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 80.7,83.0 L 80.4,82.8 L 80.4,82.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 67.7,75.4 L 67.6,75.5 L 67.3,75.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 61.5,72.0 L 61.2,71.8 L 60.9,72.0&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 55.2,75.4 L 54.9,75.6 L 54.5,75.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 48.8,72.1 L 48.5,71.9 L 48.3,72.0&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 35.7,64.9 L 35.7,64.6 L 35.3,64.4&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 29.6,61.1 L 29.2,60.9 L 29.1,61.0&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 16.8,75.5 L 16.5,75.7 L 16.5,76.1&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 22.6,86.5 L 23.0,86.7 L 23.3,86.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 29.0,83.2 L 29.3,83.0 L 29.3,82.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 135.9 71.6\n",
"Q 135.9 70.6, 136.4 70.0\n",
"Q 136.9 69.4, 137.9 69.4\n",
"Q 138.8 69.4, 139.3 70.0\n",
"Q 139.8 70.6, 139.8 71.6\n",
"Q 139.8 72.6, 139.3 73.2\n",
"Q 138.8 73.8, 137.9 73.8\n",
"Q 136.9 73.8, 136.4 73.2\n",
"Q 135.9 72.6, 135.9 71.6\n",
"M 137.9 73.3\n",
"Q 138.5 73.3, 138.9 72.9\n",
"Q 139.2 72.4, 139.2 71.6\n",
"Q 139.2 70.7, 138.9 70.3\n",
"Q 138.5 69.9, 137.9 69.9\n",
"Q 137.2 69.9, 136.9 70.3\n",
"Q 136.5 70.7, 136.5 71.6\n",
"Q 136.5 72.4, 136.9 72.9\n",
"Q 137.2 73.3, 137.9 73.3\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 140.5 69.5\n",
"L 141.1 69.5\n",
"L 141.1 71.3\n",
"L 143.2 71.3\n",
"L 143.2 69.5\n",
"L 143.8 69.5\n",
"L 143.8 73.7\n",
"L 143.2 73.7\n",
"L 143.2 71.8\n",
"L 141.1 71.8\n",
"L 141.1 73.7\n",
"L 140.5 73.7\n",
"L 140.5 69.5\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-6&#x27; d=&#x27;M 98.6 69.6\n",
"L 100.0 71.8\n",
"Q 100.1 72.1, 100.4 72.5\n",
"Q 100.6 72.9, 100.6 72.9\n",
"L 100.6 69.6\n",
"L 101.2 69.6\n",
"L 101.2 73.8\n",
"L 100.6 73.8\n",
"L 99.1 71.4\n",
"Q 98.9 71.1, 98.7 70.8\n",
"Q 98.5 70.4, 98.5 70.3\n",
"L 98.5 73.8\n",
"L 97.9 73.8\n",
"L 97.9 69.6\n",
"L 98.6 69.6\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-6&#x27; d=&#x27;M 97.9 64.9\n",
"L 98.5 64.9\n",
"L 98.5 66.7\n",
"L 100.6 66.7\n",
"L 100.6 64.9\n",
"L 101.2 64.9\n",
"L 101.2 69.2\n",
"L 100.6 69.2\n",
"L 100.6 67.2\n",
"L 98.5 67.2\n",
"L 98.5 69.2\n",
"L 97.9 69.2\n",
"L 97.9 64.9\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-8&#x27; d=&#x27;M 92.3 80.7\n",
"L 93.7 82.9\n",
"Q 93.8 83.1, 94.0 83.5\n",
"Q 94.2 83.9, 94.2 84.0\n",
"L 94.2 80.7\n",
"L 94.8 80.7\n",
"L 94.8 84.9\n",
"L 94.2 84.9\n",
"L 92.7 82.5\n",
"Q 92.6 82.2, 92.4 81.8\n",
"Q 92.2 81.5, 92.1 81.4\n",
"L 92.1 84.9\n",
"L 91.6 84.9\n",
"L 91.6 80.7\n",
"L 92.3 80.7\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-12&#x27; d=&#x27;M 73.1 69.7\n",
"L 74.5 71.9\n",
"Q 74.6 72.1, 74.8 72.5\n",
"Q 75.0 72.9, 75.0 73.0\n",
"L 75.0 69.7\n",
"L 75.6 69.7\n",
"L 75.6 73.9\n",
"L 75.0 73.9\n",
"L 73.5 71.5\n",
"Q 73.4 71.2, 73.2 70.8\n",
"Q 73.0 70.5, 72.9 70.4\n",
"L 72.9 73.9\n",
"L 72.4 73.9\n",
"L 72.4 69.7\n",
"L 73.1 69.7\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-12&#x27; d=&#x27;M 72.3 65.0\n",
"L 72.9 65.0\n",
"L 72.9 66.8\n",
"L 75.1 66.8\n",
"L 75.1 65.0\n",
"L 75.7 65.0\n",
"L 75.7 69.2\n",
"L 75.1 69.2\n",
"L 75.1 67.3\n",
"L 72.9 67.3\n",
"L 72.9 69.2\n",
"L 72.3 69.2\n",
"L 72.3 65.0\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-17&#x27; d=&#x27;M 41.1 73.5\n",
"L 42.5 75.7\n",
"Q 42.7 75.9, 42.9 76.3\n",
"Q 43.1 76.7, 43.1 76.8\n",
"L 43.1 73.5\n",
"L 43.7 73.5\n",
"L 43.7 77.7\n",
"L 43.1 77.7\n",
"L 41.6 75.3\n",
"Q 41.4 75.0, 41.3 74.6\n",
"Q 41.1 74.3, 41.0 74.2\n",
"L 41.0 77.7\n",
"L 40.5 77.7\n",
"L 40.5 73.5\n",
"L 41.1 73.5\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-17&#x27; d=&#x27;M 40.4 78.1\n",
"L 41.0 78.1\n",
"L 41.0 80.0\n",
"L 43.2 80.0\n",
"L 43.2 78.1\n",
"L 43.7 78.1\n",
"L 43.7 82.4\n",
"L 43.2 82.4\n",
"L 43.2 80.4\n",
"L 41.0 80.4\n",
"L 41.0 82.4\n",
"L 40.4 82.4\n",
"L 40.4 78.1\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-21&#x27; d=&#x27;M 21.9 62.5\n",
"L 23.3 64.7\n",
"Q 23.5 65.0, 23.7 65.4\n",
"Q 23.9 65.8, 23.9 65.8\n",
"L 23.9 62.5\n",
"L 24.5 62.5\n",
"L 24.5 66.7\n",
"L 23.9 66.7\n",
"L 22.4 64.3\n",
"Q 22.2 64.0, 22.1 63.7\n",
"Q 21.9 63.3, 21.8 63.2\n",
"L 21.8 66.7\n",
"L 21.3 66.7\n",
"L 21.3 62.5\n",
"L 21.9 62.5\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-25&#x27; d=&#x27;M 6.2 86.9\n",
"Q 6.2 85.9, 6.7 85.3\n",
"Q 7.2 84.8, 8.1 84.8\n",
"Q 9.0 84.8, 9.5 85.4\n",
"L 9.1 85.7\n",
"Q 8.7 85.2, 8.1 85.2\n",
"Q 7.5 85.2, 7.1 85.7\n",
"Q 6.8 86.1, 6.8 86.9\n",
"Q 6.8 87.8, 7.2 88.2\n",
"Q 7.5 88.6, 8.2 88.6\n",
"Q 8.7 88.6, 9.2 88.3\n",
"L 9.4 88.8\n",
"Q 9.2 88.9, 8.8 89.0\n",
"Q 8.5 89.1, 8.1 89.1\n",
"Q 7.2 89.1, 6.7 88.5\n",
"Q 6.2 88.0, 6.2 86.9\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-25&#x27; d=&#x27;M 9.9 84.5\n",
"L 10.5 84.5\n",
"L 10.5 89.1\n",
"L 9.9 89.1\n",
"L 9.9 84.5\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-29&#x27; d=&#x27;M 85.8 69.6\n",
"L 87.2 71.9\n",
"Q 87.4 72.1, 87.6 72.5\n",
"Q 87.8 72.9, 87.8 72.9\n",
"L 87.8 69.6\n",
"L 88.4 69.6\n",
"L 88.4 73.9\n",
"L 87.8 73.9\n",
"L 86.3 71.4\n",
"Q 86.1 71.1, 85.9 70.8\n",
"Q 85.8 70.5, 85.7 70.4\n",
"L 85.7 73.9\n",
"L 85.2 73.9\n",
"L 85.2 69.6\n",
"L 85.8 69.6\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;/svg&gt;\n",
"&lt;/div&gt;\n",
"&lt;div class=&quot;data copy-me data-mols2grid-id&quot;&gt;10&lt;/div&gt;\n",
"&lt;/div&gt;\n",
"&lt;/td&gt;\n",
"&lt;td class=&quot;col-1 m2g-tooltip&quot; tabindex=&quot;0&quot; data-toggle=&quot;popover&quot; data-content=&quot;&amp;lt;strong&amp;gt;chembl_id&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;CHEMBL3819177&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;canonical_smiles&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;OCCCCCCNc1nccc(NCCCCNc2ccnc3cc(Cl)ccc23)n1&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;InChI=1S/C23H31ClN6O/c24-18-7-8-19-20(9-14-26-21(19)17-18)25-11-4-5-12-27-22-10-15-29-23(30-22)28-13-3-1-2-6-16-31/h7-10,14-15,17,31H,1-6,11-13,16H2,(H,25,26)(H2,27,28,29,30)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi_key&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;MPQUUEBZFSEJLV-UHFFFAOYSA-N&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;MW&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;442.9950000000001&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;numpy_fp&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;[0 0 0 ... 0 0 0]&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;cluster&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;478425&amp;lt;/span&amp;gt;&quot;&gt;\n",
"&lt;div class=&quot;m2g-cell-11&quot;&gt;\n",
"&lt;div class=&quot;data data-img&quot;&gt;&lt;?xml version=&#x27;1.0&#x27; encoding=&#x27;iso-8859-1&#x27;?&gt;\n",
"&lt;svg version=&#x27;1.1&#x27; baseProfile=&#x27;full&#x27;\n",
" xmlns=&#x27;http://www.w3.org/2000/svg&#x27;\n",
" xmlns:rdkit=&#x27;http://www.rdkit.org/xml&#x27;\n",
" xmlns:xlink=&#x27;http://www.w3.org/1999/xlink&#x27;\n",
" xml:space=&#x27;preserve&#x27;\n",
"width=&#x27;150px&#x27; height=&#x27;150px&#x27; viewBox=&#x27;0 0 150 150&#x27;&gt;\n",
"&lt;!-- END OF HEADER --&gt;\n",
"&lt;rect style=&#x27;opacity:1.0;fill:#FFFFFF;stroke:none&#x27; width=&#x27;150.0&#x27; height=&#x27;150.0&#x27; x=&#x27;0.0&#x27; y=&#x27;0.0&#x27;&gt; &lt;/rect&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 135.8,73.9 L 133.9,72.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 133.9,72.8 L 131.9,71.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-1 atom-1 atom-2&#x27; d=&#x27;M 131.9,71.7 L 125.8,75.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-2 atom-2 atom-3&#x27; d=&#x27;M 125.8,75.2 L 119.7,71.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-3 atom-3 atom-4&#x27; d=&#x27;M 119.7,71.7 L 113.6,75.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 113.6,75.3 L 107.5,71.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 107.5,71.8 L 101.4,75.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 101.4,75.3 L 99.3,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 99.3,74.1 L 97.2,72.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 93.5,72.9 L 91.4,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 91.4,74.1 L 89.2,75.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 89.2,75.3 L 89.3,77.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 89.3,77.7 L 89.3,80.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 88.2,76.0 L 88.2,78.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 88.2,78.0 L 88.2,80.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 87.4,83.5 L 85.3,84.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 85.3,84.7 L 83.2,85.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 83.2,85.9 L 77.1,82.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 83.2,84.7 L 78.1,81.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 77.1,82.4 L 77.1,75.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 77.1,75.4 L 74.9,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 74.9,74.2 L 72.8,72.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 69.1,73.0 L 67.0,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 67.0,74.2 L 64.9,75.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 64.9,75.4 L 58.7,71.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 58.7,71.9 L 52.7,75.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 52.7,75.5 L 46.6,72.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 46.6,72.0 L 44.4,73.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 44.4,73.2 L 42.3,74.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 38.6,74.5 L 36.5,73.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 36.5,73.2 L 34.4,72.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 34.4,72.0 L 34.3,65.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 33.3,71.4 L 33.3,65.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 34.3,65.0 L 28.2,61.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 28.2,61.5 L 26.1,62.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 26.1,62.7 L 24.0,63.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 28.2,62.7 L 26.4,63.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 26.4,63.8 L 24.5,64.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-22 atom-23&#x27; d=&#x27;M 22.1,67.4 L 22.2,69.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-22 atom-23&#x27; d=&#x27;M 22.2,69.7 L 22.2,72.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-23 atom-24&#x27; d=&#x27;M 22.2,72.1 L 16.1,75.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-23 atom-24&#x27; d=&#x27;M 22.2,73.3 L 17.1,76.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-24 atom-25&#x27; d=&#x27;M 16.1,75.6 L 16.1,82.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-25 atom-26&#x27; d=&#x27;M 16.1,82.6 L 13.3,84.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-25 atom-26&#x27; d=&#x27;M 13.3,84.3 L 10.5,85.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-25 atom-27&#x27; d=&#x27;M 16.1,82.6 L 22.2,86.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-25 atom-27&#x27; d=&#x27;M 17.2,82.0 L 22.2,84.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-27 atom-28&#x27; d=&#x27;M 22.2,86.1 L 28.3,82.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-28 atom-29&#x27; d=&#x27;M 28.3,82.6 L 28.3,75.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-28 atom-29&#x27; d=&#x27;M 27.2,82.0 L 27.2,76.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-29 atom-12 atom-30&#x27; d=&#x27;M 77.1,75.4 L 79.2,74.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-29 atom-12 atom-30&#x27; d=&#x27;M 79.2,74.2 L 81.3,72.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-29 atom-12 atom-30&#x27; d=&#x27;M 78.1,76.0 L 80.0,74.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-29 atom-12 atom-30&#x27; d=&#x27;M 80.0,74.9 L 81.8,73.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-30 atom-30 atom-8&#x27; d=&#x27;M 85.0,72.9 L 87.1,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-30 atom-30 atom-8&#x27; d=&#x27;M 87.1,74.1 L 89.2,75.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-31 atom-29 atom-19&#x27; d=&#x27;M 28.3,75.6 L 34.4,72.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-32 atom-29 atom-23&#x27; d=&#x27;M 28.3,75.6 L 22.2,72.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path d=&#x27;M 132.0,71.7 L 131.9,71.7 L 131.6,71.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 126.1,75.0 L 125.8,75.2 L 125.5,75.0&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 120.0,71.9 L 119.7,71.7 L 119.4,71.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 113.9,75.1 L 113.6,75.3 L 113.3,75.1&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 107.8,71.9 L 107.5,71.8 L 107.2,71.9&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 101.7,75.1 L 101.4,75.3 L 101.3,75.2&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 83.3,85.9 L 83.2,85.9 L 82.9,85.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 77.4,82.6 L 77.1,82.4 L 77.1,82.1&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 65.0,75.4 L 64.9,75.4 L 64.6,75.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 59.1,72.1 L 58.7,71.9 L 58.4,72.1&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 53.0,75.3 L 52.7,75.5 L 52.4,75.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 46.9,72.2 L 46.6,72.0 L 46.4,72.0&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 34.3,65.3 L 34.3,65.0 L 34.0,64.8&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 28.5,61.7 L 28.2,61.5 L 28.1,61.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 16.4,75.4 L 16.1,75.6 L 16.1,76.0&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 21.9,86.0 L 22.2,86.1 L 22.5,86.0&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 28.0,82.8 L 28.3,82.6 L 28.3,82.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 136.1 75.2\n",
"Q 136.1 74.2, 136.6 73.6\n",
"Q 137.1 73.0, 138.0 73.0\n",
"Q 139.0 73.0, 139.5 73.6\n",
"Q 140.0 74.2, 140.0 75.2\n",
"Q 140.0 76.2, 139.5 76.8\n",
"Q 139.0 77.4, 138.0 77.4\n",
"Q 137.1 77.4, 136.6 76.8\n",
"Q 136.1 76.2, 136.1 75.2\n",
"M 138.0 76.9\n",
"Q 138.7 76.9, 139.0 76.5\n",
"Q 139.4 76.0, 139.4 75.2\n",
"Q 139.4 74.3, 139.0 73.9\n",
"Q 138.7 73.5, 138.0 73.5\n",
"Q 137.4 73.5, 137.0 73.9\n",
"Q 136.7 74.3, 136.7 75.2\n",
"Q 136.7 76.0, 137.0 76.5\n",
"Q 137.4 76.9, 138.0 76.9\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 140.6 73.1\n",
"L 141.2 73.1\n",
"L 141.2 74.9\n",
"L 143.4 74.9\n",
"L 143.4 73.1\n",
"L 144.0 73.1\n",
"L 144.0 77.3\n",
"L 143.4 77.3\n",
"L 143.4 75.4\n",
"L 141.2 75.4\n",
"L 141.2 77.3\n",
"L 140.6 77.3\n",
"L 140.6 73.1\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-7&#x27; d=&#x27;M 94.4 69.7\n",
"L 95.8 71.9\n",
"Q 95.9 72.1, 96.1 72.6\n",
"Q 96.4 73.0, 96.4 73.0\n",
"L 96.4 69.7\n",
"L 96.9 69.7\n",
"L 96.9 73.9\n",
"L 96.4 73.9\n",
"L 94.9 71.5\n",
"Q 94.7 71.2, 94.5 70.8\n",
"Q 94.3 70.5, 94.3 70.4\n",
"L 94.3 73.9\n",
"L 93.7 73.9\n",
"L 93.7 69.7\n",
"L 94.4 69.7\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-7&#x27; d=&#x27;M 93.7 65.0\n",
"L 94.2 65.0\n",
"L 94.2 66.8\n",
"L 96.4 66.8\n",
"L 96.4 65.0\n",
"L 97.0 65.0\n",
"L 97.0 69.3\n",
"L 96.4 69.3\n",
"L 96.4 67.3\n",
"L 94.2 67.3\n",
"L 94.2 69.3\n",
"L 93.7 69.3\n",
"L 93.7 65.0\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-9&#x27; d=&#x27;M 88.3 80.3\n",
"L 89.7 82.5\n",
"Q 89.9 82.7, 90.1 83.1\n",
"Q 90.3 83.5, 90.3 83.6\n",
"L 90.3 80.3\n",
"L 90.9 80.3\n",
"L 90.9 84.5\n",
"L 90.3 84.5\n",
"L 88.8 82.0\n",
"Q 88.6 81.8, 88.4 81.4\n",
"Q 88.3 81.1, 88.2 81.0\n",
"L 88.2 84.5\n",
"L 87.7 84.5\n",
"L 87.7 80.3\n",
"L 88.3 80.3\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-13&#x27; d=&#x27;M 70.0 69.8\n",
"L 71.4 72.0\n",
"Q 71.5 72.2, 71.8 72.6\n",
"Q 72.0 73.0, 72.0 73.1\n",
"L 72.0 69.8\n",
"L 72.6 69.8\n",
"L 72.6 74.0\n",
"L 72.0 74.0\n",
"L 70.5 71.6\n",
"Q 70.3 71.3, 70.1 70.9\n",
"Q 69.9 70.6, 69.9 70.5\n",
"L 69.9 74.0\n",
"L 69.3 74.0\n",
"L 69.3 69.8\n",
"L 70.0 69.8\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-13&#x27; d=&#x27;M 69.3 65.1\n",
"L 69.9 65.1\n",
"L 69.9 66.9\n",
"L 72.0 66.9\n",
"L 72.0 65.1\n",
"L 72.6 65.1\n",
"L 72.6 69.3\n",
"L 72.0 69.3\n",
"L 72.0 67.4\n",
"L 69.9 67.4\n",
"L 69.9 69.3\n",
"L 69.3 69.3\n",
"L 69.3 65.1\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-18&#x27; d=&#x27;M 39.5 73.4\n",
"L 40.9 75.6\n",
"Q 41.1 75.9, 41.3 76.3\n",
"Q 41.5 76.7, 41.5 76.7\n",
"L 41.5 73.4\n",
"L 42.1 73.4\n",
"L 42.1 77.6\n",
"L 41.5 77.6\n",
"L 40.0 75.2\n",
"Q 39.8 74.9, 39.6 74.6\n",
"Q 39.5 74.2, 39.4 74.1\n",
"L 39.4 77.6\n",
"L 38.9 77.6\n",
"L 38.9 73.4\n",
"L 39.5 73.4\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-18&#x27; d=&#x27;M 38.8 78.1\n",
"L 39.4 78.1\n",
"L 39.4 79.9\n",
"L 41.6 79.9\n",
"L 41.6 78.1\n",
"L 42.1 78.1\n",
"L 42.1 82.3\n",
"L 41.6 82.3\n",
"L 41.6 80.4\n",
"L 39.4 80.4\n",
"L 39.4 82.3\n",
"L 38.8 82.3\n",
"L 38.8 78.1\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-22&#x27; d=&#x27;M 21.2 62.9\n",
"L 22.6 65.1\n",
"Q 22.7 65.4, 22.9 65.8\n",
"Q 23.2 66.2, 23.2 66.2\n",
"L 23.2 62.9\n",
"L 23.7 62.9\n",
"L 23.7 67.1\n",
"L 23.2 67.1\n",
"L 21.7 64.7\n",
"Q 21.5 64.4, 21.3 64.1\n",
"Q 21.1 63.7, 21.1 63.6\n",
"L 21.1 67.1\n",
"L 20.5 67.1\n",
"L 20.5 62.9\n",
"L 21.2 62.9\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-26&#x27; d=&#x27;M 6.0 86.3\n",
"Q 6.0 85.3, 6.5 84.7\n",
"Q 7.0 84.2, 8.0 84.2\n",
"Q 8.8 84.2, 9.3 84.8\n",
"L 8.9 85.1\n",
"Q 8.6 84.7, 8.0 84.7\n",
"Q 7.3 84.7, 7.0 85.1\n",
"Q 6.6 85.5, 6.6 86.3\n",
"Q 6.6 87.2, 7.0 87.6\n",
"Q 7.3 88.0, 8.0 88.0\n",
"Q 8.5 88.0, 9.0 87.8\n",
"L 9.2 88.2\n",
"Q 9.0 88.4, 8.7 88.4\n",
"Q 8.3 88.5, 7.9 88.5\n",
"Q 7.0 88.5, 6.5 88.0\n",
"Q 6.0 87.4, 6.0 86.3\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-26&#x27; d=&#x27;M 9.7 83.9\n",
"L 10.3 83.9\n",
"L 10.3 88.5\n",
"L 9.7 88.5\n",
"L 9.7 83.9\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-30&#x27; d=&#x27;M 82.2 69.7\n",
"L 83.6 72.0\n",
"Q 83.7 72.2, 84.0 72.6\n",
"Q 84.2 73.0, 84.2 73.0\n",
"L 84.2 69.7\n",
"L 84.7 69.7\n",
"L 84.7 74.0\n",
"L 84.2 74.0\n",
"L 82.7 71.5\n",
"Q 82.5 71.2, 82.3 70.9\n",
"Q 82.1 70.6, 82.1 70.5\n",
"L 82.1 74.0\n",
"L 81.5 74.0\n",
"L 81.5 69.7\n",
"L 82.2 69.7\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;/svg&gt;\n",
"&lt;/div&gt;\n",
"&lt;div class=&quot;data copy-me data-mols2grid-id&quot;&gt;11&lt;/div&gt;\n",
"&lt;/div&gt;\n",
"&lt;/td&gt;\n",
"&lt;td class=&quot;col-2 m2g-tooltip&quot; tabindex=&quot;0&quot; data-toggle=&quot;popover&quot; data-content=&quot;&amp;lt;strong&amp;gt;chembl_id&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;CHEMBL3819562&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;canonical_smiles&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;OCCCCNc1nccc(NCCCNc2ccnc3cc(Cl)ccc23)n1&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;InChI=1S/C20H25ClN6O/c21-15-4-5-16-17(6-11-23-18(16)14-15)22-9-3-10-24-19-7-12-26-20(27-19)25-8-1-2-13-28/h4-7,11-12,14,28H,1-3,8-10,13H2,(H,22,23)(H2,24,25,26,27)&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;standard_inchi_key&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;DUIJAMFTFQXZBA-UHFFFAOYSA-N&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;MW&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;400.9140000000001&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;numpy_fp&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;[0 0 0 ... 0 0 0]&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;cluster&amp;lt;/strong&amp;gt;: &amp;lt;span class=&amp;quot;copy-me&amp;quot;&amp;gt;478425&amp;lt;/span&amp;gt;&quot;&gt;\n",
"&lt;div class=&quot;m2g-cell-12&quot;&gt;\n",
"&lt;div class=&quot;data data-img&quot;&gt;&lt;?xml version=&#x27;1.0&#x27; encoding=&#x27;iso-8859-1&#x27;?&gt;\n",
"&lt;svg version=&#x27;1.1&#x27; baseProfile=&#x27;full&#x27;\n",
" xmlns=&#x27;http://www.w3.org/2000/svg&#x27;\n",
" xmlns:rdkit=&#x27;http://www.rdkit.org/xml&#x27;\n",
" xmlns:xlink=&#x27;http://www.w3.org/1999/xlink&#x27;\n",
" xml:space=&#x27;preserve&#x27;\n",
"width=&#x27;150px&#x27; height=&#x27;150px&#x27; viewBox=&#x27;0 0 150 150&#x27;&gt;\n",
"&lt;!-- END OF HEADER --&gt;\n",
"&lt;rect style=&#x27;opacity:1.0;fill:#FFFFFF;stroke:none&#x27; width=&#x27;150.0&#x27; height=&#x27;150.0&#x27; x=&#x27;0.0&#x27; y=&#x27;0.0&#x27;&gt; &lt;/rect&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 135.3,77.2 L 132.9,75.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#FF0000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-0 atom-0 atom-1&#x27; d=&#x27;M 132.9,75.8 L 130.4,74.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-1 atom-1 atom-2&#x27; d=&#x27;M 130.4,74.4 L 123.4,78.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-2 atom-2 atom-3&#x27; d=&#x27;M 123.4,78.4 L 116.3,74.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-3 atom-3 atom-4&#x27; d=&#x27;M 116.3,74.3 L 109.3,78.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 109.3,78.4 L 106.7,76.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-4 atom-4 atom-5&#x27; d=&#x27;M 106.7,76.9 L 104.1,75.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 100.3,75.4 L 97.8,76.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-5 atom-5 atom-6&#x27; d=&#x27;M 97.8,76.9 L 95.2,78.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 95.2,78.3 L 95.1,81.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 95.1,81.2 L 95.1,84.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 93.9,79.0 L 93.9,81.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-6 atom-6 atom-7&#x27; d=&#x27;M 93.9,81.6 L 93.9,84.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 93.2,87.6 L 90.7,89.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-7 atom-7 atom-8&#x27; d=&#x27;M 90.7,89.0 L 88.1,90.5&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 88.1,90.5 L 81.0,86.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-8 atom-8 atom-9&#x27; d=&#x27;M 88.1,89.1 L 82.2,85.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-9 atom-9 atom-10&#x27; d=&#x27;M 81.0,86.4 L 81.0,78.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 81.0,78.3 L 78.5,76.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-10 atom-10 atom-11&#x27; d=&#x27;M 78.5,76.8 L 75.9,75.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 72.1,75.3 L 69.5,76.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-11 atom-11 atom-12&#x27; d=&#x27;M 69.5,76.8 L 66.9,78.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-12 atom-12 atom-13&#x27; d=&#x27;M 66.9,78.2 L 59.9,74.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-13 atom-13 atom-14&#x27; d=&#x27;M 59.9,74.1 L 52.8,78.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 52.8,78.2 L 50.3,76.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-14 atom-14 atom-15&#x27; d=&#x27;M 50.3,76.7 L 47.7,75.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 43.9,75.2 L 41.3,76.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-15 atom-15 atom-16&#x27; d=&#x27;M 41.3,76.7 L 38.7,78.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 38.7,78.1 L 38.7,86.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-16 atom-16 atom-17&#x27; d=&#x27;M 37.5,78.8 L 37.5,85.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-17 atom-17 atom-18&#x27; d=&#x27;M 38.7,86.3 L 31.6,90.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 31.6,90.3 L 29.0,88.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 29.0,88.8 L 26.5,87.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 31.6,88.9 L 29.4,87.6&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-18 atom-18 atom-19&#x27; d=&#x27;M 29.4,87.6 L 27.1,86.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 24.6,83.8 L 24.6,81.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-19 atom-19 atom-20&#x27; d=&#x27;M 24.6,81.0 L 24.6,78.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 24.6,78.1 L 17.6,74.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-20 atom-20 atom-21&#x27; d=&#x27;M 24.6,76.7 L 18.8,73.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-21 atom-21 atom-22&#x27; d=&#x27;M 17.6,74.0 L 17.6,65.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-22 atom-23&#x27; d=&#x27;M 17.6,65.8 L 14.4,64.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-22 atom-22 atom-23&#x27; d=&#x27;M 14.4,64.0 L 11.1,62.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#00CC00;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-22 atom-24&#x27; d=&#x27;M 17.6,65.8 L 24.7,61.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-23 atom-22 atom-24&#x27; d=&#x27;M 18.8,66.6 L 24.7,63.2&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-24 atom-24 atom-25&#x27; d=&#x27;M 24.7,61.8 L 31.7,65.9&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-25 atom-26&#x27; d=&#x27;M 31.7,65.9 L 31.7,74.0&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-25 atom-25 atom-26&#x27; d=&#x27;M 30.5,66.6 L 30.5,73.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-10 atom-27&#x27; d=&#x27;M 81.0,78.3 L 83.6,76.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-10 atom-27&#x27; d=&#x27;M 83.6,76.8 L 86.2,75.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-10 atom-27&#x27; d=&#x27;M 82.3,79.0 L 84.6,77.7&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-26 atom-10 atom-27&#x27; d=&#x27;M 84.6,77.7 L 86.8,76.4&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-27 atom-6&#x27; d=&#x27;M 90.0,75.3 L 92.6,76.8&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#0000FF;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-27 atom-27 atom-6&#x27; d=&#x27;M 92.6,76.8 L 95.2,78.3&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-28 atom-26 atom-16&#x27; d=&#x27;M 31.7,74.0 L 38.7,78.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path class=&#x27;bond-29 atom-26 atom-20&#x27; d=&#x27;M 31.7,74.0 L 24.6,78.1&#x27; style=&#x27;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1&#x27; /&gt;\n",
"&lt;path d=&#x27;M 130.6,74.5 L 130.4,74.4 L 130.1,74.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 123.7,78.2 L 123.4,78.4 L 123.0,78.2&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 116.7,74.5 L 116.3,74.3 L 116.0,74.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 109.6,78.2 L 109.3,78.4 L 109.1,78.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 88.2,90.5 L 88.1,90.5 L 87.7,90.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 81.4,86.6 L 81.0,86.4 L 81.0,86.0&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 67.1,78.2 L 66.9,78.2 L 66.6,78.0&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 60.3,74.3 L 59.9,74.1 L 59.5,74.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 53.2,78.0 L 52.8,78.2 L 52.7,78.1&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 38.7,85.9 L 38.7,86.3 L 38.3,86.5&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 32.0,90.1 L 31.6,90.3 L 31.5,90.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 17.9,74.2 L 17.6,74.0 L 17.6,73.6&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 24.3,62.0 L 24.7,61.8 L 25.0,62.0&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path d=&#x27;M 31.4,65.7 L 31.7,65.9 L 31.7,66.3&#x27; style=&#x27;fill:none;stroke:#000000;stroke-width:2.0px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;&#x27; /&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 135.5 78.5\n",
"Q 135.5 77.5, 136.0 76.9\n",
"Q 136.5 76.3, 137.5 76.3\n",
"Q 138.4 76.3, 138.9 76.9\n",
"Q 139.4 77.5, 139.4 78.5\n",
"Q 139.4 79.5, 138.9 80.1\n",
"Q 138.4 80.7, 137.5 80.7\n",
"Q 136.5 80.7, 136.0 80.1\n",
"Q 135.5 79.5, 135.5 78.5\n",
"M 137.5 80.2\n",
"Q 138.1 80.2, 138.5 79.8\n",
"Q 138.8 79.4, 138.8 78.5\n",
"Q 138.8 77.7, 138.5 77.2\n",
"Q 138.1 76.8, 137.5 76.8\n",
"Q 136.8 76.8, 136.5 77.2\n",
"Q 136.1 77.7, 136.1 78.5\n",
"Q 136.1 79.4, 136.5 79.8\n",
"Q 136.8 80.2, 137.5 80.2\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-0&#x27; d=&#x27;M 140.1 76.4\n",
"L 140.7 76.4\n",
"L 140.7 78.2\n",
"L 142.8 78.2\n",
"L 142.8 76.4\n",
"L 143.4 76.4\n",
"L 143.4 80.6\n",
"L 142.8 80.6\n",
"L 142.8 78.7\n",
"L 140.7 78.7\n",
"L 140.7 80.6\n",
"L 140.1 80.6\n",
"L 140.1 76.4\n",
"&#x27; fill=&#x27;#FF0000&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-5&#x27; d=&#x27;M 101.3 72.2\n",
"L 102.7 74.4\n",
"Q 102.8 74.6, 103.0 75.0\n",
"Q 103.3 75.4, 103.3 75.5\n",
"L 103.3 72.2\n",
"L 103.8 72.2\n",
"L 103.8 76.4\n",
"L 103.3 76.4\n",
"L 101.8 74.0\n",
"Q 101.6 73.7, 101.4 73.3\n",
"Q 101.2 73.0, 101.2 72.9\n",
"L 101.2 76.4\n",
"L 100.6 76.4\n",
"L 100.6 72.2\n",
"L 101.3 72.2\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-5&#x27; d=&#x27;M 100.6 67.5\n",
"L 101.1 67.5\n",
"L 101.1 69.3\n",
"L 103.3 69.3\n",
"L 103.3 67.5\n",
"L 103.9 67.5\n",
"L 103.9 71.7\n",
"L 103.3 71.7\n",
"L 103.3 69.8\n",
"L 101.1 69.8\n",
"L 101.1 71.7\n",
"L 100.6 71.7\n",
"L 100.6 67.5\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-7&#x27; d=&#x27;M 94.2 84.4\n",
"L 95.6 86.6\n",
"Q 95.7 86.8, 95.9 87.2\n",
"Q 96.2 87.6, 96.2 87.7\n",
"L 96.2 84.4\n",
"L 96.7 84.4\n",
"L 96.7 88.6\n",
"L 96.2 88.6\n",
"L 94.7 86.1\n",
"Q 94.5 85.9, 94.3 85.5\n",
"Q 94.1 85.2, 94.1 85.1\n",
"L 94.1 88.6\n",
"L 93.5 88.6\n",
"L 93.5 84.4\n",
"L 94.2 84.4\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-11&#x27; d=&#x27;M 73.1 72.1\n",
"L 74.5 74.3\n",
"Q 74.6 74.5, 74.8 74.9\n",
"Q 75.0 75.3, 75.1 75.4\n",
"L 75.1 72.1\n",
"L 75.6 72.1\n",
"L 75.6 76.3\n",
"L 75.0 76.3\n",
"L 73.5 73.9\n",
"Q 73.4 73.6, 73.2 73.2\n",
"Q 73.0 72.9, 72.9 72.8\n",
"L 72.9 76.3\n",
"L 72.4 76.3\n",
"L 72.4 72.1\n",
"L 73.1 72.1\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-11&#x27; d=&#x27;M 72.3 67.4\n",
"L 72.9 67.4\n",
"L 72.9 69.2\n",
"L 75.1 69.2\n",
"L 75.1 67.4\n",
"L 75.7 67.4\n",
"L 75.7 71.6\n",
"L 75.1 71.6\n",
"L 75.1 69.7\n",
"L 72.9 69.7\n",
"L 72.9 71.6\n",
"L 72.3 71.6\n",
"L 72.3 67.4\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-15&#x27; d=&#x27;M 44.9 72.0\n",
"L 46.2 74.2\n",
"Q 46.4 74.4, 46.6 74.8\n",
"Q 46.8 75.2, 46.8 75.3\n",
"L 46.8 72.0\n",
"L 47.4 72.0\n",
"L 47.4 76.2\n",
"L 46.8 76.2\n",
"L 45.3 73.8\n",
"Q 45.2 73.5, 45.0 73.1\n",
"Q 44.8 72.8, 44.7 72.7\n",
"L 44.7 76.2\n",
"L 44.2 76.2\n",
"L 44.2 72.0\n",
"L 44.9 72.0\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-15&#x27; d=&#x27;M 44.1 67.3\n",
"L 44.7 67.3\n",
"L 44.7 69.1\n",
"L 46.9 69.1\n",
"L 46.9 67.3\n",
"L 47.5 67.3\n",
"L 47.5 71.5\n",
"L 46.9 71.5\n",
"L 46.9 69.6\n",
"L 44.7 69.6\n",
"L 44.7 71.5\n",
"L 44.1 71.5\n",
"L 44.1 67.3\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-19&#x27; d=&#x27;M 23.6 84.1\n",
"L 25.0 86.4\n",
"Q 25.2 86.6, 25.4 87.0\n",
"Q 25.6 87.4, 25.6 87.4\n",
"L 25.6 84.1\n",
"L 26.2 84.1\n",
"L 26.2 88.4\n",
"L 25.6 88.4\n",
"L 24.1 85.9\n",
"Q 23.9 85.6, 23.8 85.3\n",
"Q 23.6 84.9, 23.5 84.8\n",
"L 23.5 88.4\n",
"L 23.0 88.4\n",
"L 23.0 84.1\n",
"L 23.6 84.1\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-23&#x27; d=&#x27;M 6.6 61.9\n",
"Q 6.6 60.8, 7.1 60.3\n",
"Q 7.6 59.7, 8.5 59.7\n",
"Q 9.4 59.7, 9.9 60.3\n",
"L 9.5 60.7\n",
"Q 9.1 60.2, 8.5 60.2\n",
"Q 7.9 60.2, 7.5 60.6\n",
"Q 7.2 61.1, 7.2 61.9\n",
"Q 7.2 62.7, 7.5 63.2\n",
"Q 7.9 63.6, 8.6 63.6\n",
"Q 9.0 63.6, 9.6 63.3\n",
"L 9.8 63.8\n",
"Q 9.5 63.9, 9.2 64.0\n",
"Q 8.9 64.1, 8.5 64.1\n",
"Q 7.6 64.1, 7.1 63.5\n",
"Q 6.6 62.9, 6.6 61.9\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-23&#x27; d=&#x27;M 10.3 59.5\n",
"L 10.8 59.5\n",
"L 10.8 64.0\n",
"L 10.3 64.0\n",
"L 10.3 59.5\n",
"&#x27; fill=&#x27;#00CC00&#x27;/&gt;\n",
"&lt;path class=&#x27;atom-27&#x27; d=&#x27;M 87.2 72.1\n",
"L 88.6 74.4\n",
"Q 88.7 74.6, 88.9 75.0\n",
"Q 89.2 75.4, 89.2 75.4\n",
"L 89.2 72.1\n",
"L 89.7 72.1\n",
"L 89.7 76.4\n",
"L 89.1 76.4\n",
"L 87.7 73.9\n",
"Q 87.5 73.6, 87.3 73.3\n",
"Q 87.1 73.0, 87.1 72.9\n",
"L 87.1 76.4\n",
"L 86.5 76.4\n",
"L 86.5 72.1\n",
"L 87.2 72.1\n",
"&#x27; fill=&#x27;#0000FF&#x27;/&gt;\n",
"&lt;/svg&gt;\n",
"&lt;/div&gt;\n",
"&lt;div class=&quot;data copy-me data-mols2grid-id&quot;&gt;12&lt;/div&gt;\n",
"&lt;/div&gt;\n",
"&lt;/td&gt;\n",
"&lt;/tr&gt;\n",
" &lt;/tbody&gt;\n",
" &lt;/table&gt;\n",
"\n",
" &lt;script&gt;\n",
" \n",
" // Tooltips\n",
" $.fn.tooltip.Constructor.Default.whiteList.span = [&#x27;style&#x27;]\n",
" $(&#x27;.m2g-tooltip[data-toggle=&quot;popover&quot;]&#x27;).popover({\n",
" placement: &#x27;auto&#x27;,\n",
" trigger: &#x27;focus&#x27;,\n",
" html: true,\n",
" })\n",
" \n",
"\n",
" // Set iframe height to fit content.\n",
" fitIframe(window.frameElement);\n",
" &lt;/script&gt;\n",
"\n",
"\n",
"\n",
" &lt;/body&gt;\n",
"&lt;/html&gt;\n",
"\">\n",
"</iframe>"
],
"text/plain": [
"<IPython.core.display.HTML object>"
]
},
"execution_count": 61,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"cluster_idx = 0\n",
"cluster_num = count_df.cluster.values[cluster_idx]\n",
"cluster_df = df.query(\"cluster == @cluster_num\")\n",
"mols2grid.display(cluster_df,size=(150,150),template=\"static\",smiles_col=\"canonical_smiles\",prerender=True)"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "0f71573b",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.3"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment